diff --git a/sdk/netapp/azure-mgmt-netapp/CHANGELOG.md b/sdk/netapp/azure-mgmt-netapp/CHANGELOG.md
index fdee8d06bc55..ae0a49d33071 100644
--- a/sdk/netapp/azure-mgmt-netapp/CHANGELOG.md
+++ b/sdk/netapp/azure-mgmt-netapp/CHANGELOG.md
@@ -1,5 +1,16 @@
# Release History
+## 8.1.0 (2022-08-02)
+
+**Features**
+
+ - Added operation VolumesOperations.begin_reestablish_replication
+ - Model CapacityPoolPatch has a new parameter cool_access
+ - Model Volume has a new parameter key_vault_private_endpoint_resource_id
+ - Model VolumeGroupVolumeProperties has a new parameter key_vault_private_endpoint_resource_id
+ - Model VolumePatch has a new parameter cool_access
+ - Model VolumePatch has a new parameter coolness_period
+
## 8.0.0 (2022-06-13)
**Features**
diff --git a/sdk/netapp/azure-mgmt-netapp/MANIFEST.in b/sdk/netapp/azure-mgmt-netapp/MANIFEST.in
index 4257299b7d65..8b952d624ea3 100644
--- a/sdk/netapp/azure-mgmt-netapp/MANIFEST.in
+++ b/sdk/netapp/azure-mgmt-netapp/MANIFEST.in
@@ -1,5 +1,5 @@
include _meta.json
-recursive-include tests *.py *.yaml
+recursive-include tests *.py *.json
include *.md
include azure/__init__.py
include azure/mgmt/__init__.py
diff --git a/sdk/netapp/azure-mgmt-netapp/_meta.json b/sdk/netapp/azure-mgmt-netapp/_meta.json
index 59cc7018d0fc..5c96d23bc799 100644
--- a/sdk/netapp/azure-mgmt-netapp/_meta.json
+++ b/sdk/netapp/azure-mgmt-netapp/_meta.json
@@ -1,11 +1,11 @@
{
"autorest": "3.7.2",
"use": [
- "@autorest/python@5.13.0",
+ "@autorest/python@5.16.0",
"@autorest/modelerfour@4.19.3"
],
- "commit": "9a6b5748f6ba9eeb2684497551226036c9d1da6b",
+ "commit": "c350a26aa5bd64ccc7a768f2cb5464a1cbe825e5",
"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 --python3-only --use=@autorest/python@5.13.0 --use=@autorest/modelerfour@4.19.3 --version=3.7.2",
+ "autorest_command": "autorest specification/netapp/resource-manager/readme.md --python --python-sdks-folder=/home/vsts/work/1/azure-sdk-for-python/sdk --python3-only --use=@autorest/python@5.16.0 --use=@autorest/modelerfour@4.19.3 --version=3.7.2",
"readme": "specification/netapp/resource-manager/readme.md"
}
\ No newline at end of file
diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/__init__.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/__init__.py
index b9f5b3f19232..e33fd988f395 100644
--- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/__init__.py
+++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/__init__.py
@@ -10,9 +10,14 @@
from ._version import VERSION
__version__ = VERSION
+
+try:
+ from ._patch import __all__ as _patch_all
+ from ._patch import * # type: ignore # pylint: disable=unused-wildcard-import
+except ImportError:
+ _patch_all = []
+from ._patch import patch_sdk as _patch_sdk
__all__ = ['NetAppManagementClient']
+__all__.extend([p for p in _patch_all if p not in __all__])
-# `._patch.py` is used for handwritten extensions to the generated code
-# Example: https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/customize_code/how-to-patch-sdk-code.md
-from ._patch import patch_sdk
-patch_sdk()
+_patch_sdk()
diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/_configuration.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/_configuration.py
index ec9713173f34..cd65ef9e18d2 100644
--- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/_configuration.py
+++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/_configuration.py
@@ -30,7 +30,7 @@ class NetAppManagementClientConfiguration(Configuration): # pylint: disable=too
:param subscription_id: Subscription credentials which uniquely identify Microsoft Azure
subscription. The subscription ID forms part of the URI for every service call.
:type subscription_id: str
- :keyword api_version: Api Version. Default value is "2022-01-01". Note that overriding this
+ :keyword api_version: Api Version. Default value is "2022-03-01". Note that overriding this
default value may result in unsupported behavior.
:paramtype api_version: str
"""
@@ -42,7 +42,7 @@ def __init__(
**kwargs: Any
) -> None:
super(NetAppManagementClientConfiguration, self).__init__(**kwargs)
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', "2022-03-01") # type: str
if credential is None:
raise ValueError("Parameter 'credential' must not be None.")
diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/_net_app_management_client.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/_net_app_management_client.py
index f91a1fdaf8c9..789b7b26532b 100644
--- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/_net_app_management_client.py
+++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/_net_app_management_client.py
@@ -63,7 +63,7 @@ class NetAppManagementClient: # pylint: disable=too-many-instance-attributes
:type subscription_id: str
:param base_url: Service URL. Default value is "https://management.azure.com".
:type base_url: str
- :keyword api_version: Api Version. Default value is "2022-01-01". Note that overriding this
+ :keyword api_version: Api Version. Default value is "2022-03-01". Note that overriding this
default value may result in unsupported behavior.
:paramtype api_version: str
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
@@ -84,21 +84,51 @@ def __init__(
self._serialize = Serializer(client_models)
self._deserialize = Deserializer(client_models)
self._serialize.client_side_validation = False
- self.operations = Operations(self._client, self._config, self._serialize, self._deserialize)
- self.net_app_resource = NetAppResourceOperations(self._client, self._config, self._serialize, self._deserialize)
- self.net_app_resource_quota_limits = NetAppResourceQuotaLimitsOperations(self._client, self._config, self._serialize, self._deserialize)
- self.accounts = AccountsOperations(self._client, self._config, self._serialize, self._deserialize)
- self.pools = PoolsOperations(self._client, self._config, self._serialize, self._deserialize)
- self.volumes = VolumesOperations(self._client, self._config, self._serialize, self._deserialize)
- self.snapshots = SnapshotsOperations(self._client, self._config, self._serialize, self._deserialize)
- self.snapshot_policies = SnapshotPoliciesOperations(self._client, self._config, self._serialize, self._deserialize)
- self.backups = BackupsOperations(self._client, self._config, self._serialize, self._deserialize)
- self.account_backups = AccountBackupsOperations(self._client, self._config, self._serialize, self._deserialize)
- self.backup_policies = BackupPoliciesOperations(self._client, self._config, self._serialize, self._deserialize)
- self.volume_quota_rules = VolumeQuotaRulesOperations(self._client, self._config, self._serialize, self._deserialize)
- self.vaults = VaultsOperations(self._client, self._config, self._serialize, self._deserialize)
- self.volume_groups = VolumeGroupsOperations(self._client, self._config, self._serialize, self._deserialize)
- self.subvolumes = SubvolumesOperations(self._client, self._config, self._serialize, self._deserialize)
+ self.operations = Operations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.net_app_resource = NetAppResourceOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.net_app_resource_quota_limits = NetAppResourceQuotaLimitsOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.accounts = AccountsOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.pools = PoolsOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.volumes = VolumesOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.snapshots = SnapshotsOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.snapshot_policies = SnapshotPoliciesOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.backups = BackupsOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.account_backups = AccountBackupsOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.backup_policies = BackupPoliciesOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.volume_quota_rules = VolumeQuotaRulesOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.vaults = VaultsOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.volume_groups = VolumeGroupsOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.subvolumes = SubvolumesOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
def _send_request(
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 142a0420b39b..920456322fa1 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 = "8.0.0"
+VERSION = "8.1.0"
diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/__init__.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/__init__.py
index c1ce68ce405c..48fe5810bb5a 100644
--- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/__init__.py
+++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/__init__.py
@@ -7,9 +7,14 @@
# --------------------------------------------------------------------------
from ._net_app_management_client import NetAppManagementClient
+
+try:
+ from ._patch import __all__ as _patch_all
+ from ._patch import * # type: ignore # pylint: disable=unused-wildcard-import
+except ImportError:
+ _patch_all = []
+from ._patch import patch_sdk as _patch_sdk
__all__ = ['NetAppManagementClient']
+__all__.extend([p for p in _patch_all if p not in __all__])
-# `._patch.py` is used for handwritten extensions to the generated code
-# Example: https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/customize_code/how-to-patch-sdk-code.md
-from ._patch import patch_sdk
-patch_sdk()
+_patch_sdk()
diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/_configuration.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/_configuration.py
index 9636b410a50f..fe48a4509f26 100644
--- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/_configuration.py
+++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/_configuration.py
@@ -30,7 +30,7 @@ class NetAppManagementClientConfiguration(Configuration): # pylint: disable=too
:param subscription_id: Subscription credentials which uniquely identify Microsoft Azure
subscription. The subscription ID forms part of the URI for every service call.
:type subscription_id: str
- :keyword api_version: Api Version. Default value is "2022-01-01". Note that overriding this
+ :keyword api_version: Api Version. Default value is "2022-03-01". Note that overriding this
default value may result in unsupported behavior.
:paramtype api_version: str
"""
@@ -42,7 +42,7 @@ def __init__(
**kwargs: Any
) -> None:
super(NetAppManagementClientConfiguration, self).__init__(**kwargs)
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', "2022-03-01") # type: str
if credential is None:
raise ValueError("Parameter 'credential' must not be None.")
diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/_net_app_management_client.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/_net_app_management_client.py
index 01d9a3079116..db743e030ede 100644
--- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/_net_app_management_client.py
+++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/_net_app_management_client.py
@@ -63,7 +63,7 @@ class NetAppManagementClient: # pylint: disable=too-many-instance-attributes
:type subscription_id: str
:param base_url: Service URL. Default value is "https://management.azure.com".
:type base_url: str
- :keyword api_version: Api Version. Default value is "2022-01-01". Note that overriding this
+ :keyword api_version: Api Version. Default value is "2022-03-01". Note that overriding this
default value may result in unsupported behavior.
:paramtype api_version: str
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
@@ -84,21 +84,51 @@ def __init__(
self._serialize = Serializer(client_models)
self._deserialize = Deserializer(client_models)
self._serialize.client_side_validation = False
- self.operations = Operations(self._client, self._config, self._serialize, self._deserialize)
- self.net_app_resource = NetAppResourceOperations(self._client, self._config, self._serialize, self._deserialize)
- self.net_app_resource_quota_limits = NetAppResourceQuotaLimitsOperations(self._client, self._config, self._serialize, self._deserialize)
- self.accounts = AccountsOperations(self._client, self._config, self._serialize, self._deserialize)
- self.pools = PoolsOperations(self._client, self._config, self._serialize, self._deserialize)
- self.volumes = VolumesOperations(self._client, self._config, self._serialize, self._deserialize)
- self.snapshots = SnapshotsOperations(self._client, self._config, self._serialize, self._deserialize)
- self.snapshot_policies = SnapshotPoliciesOperations(self._client, self._config, self._serialize, self._deserialize)
- self.backups = BackupsOperations(self._client, self._config, self._serialize, self._deserialize)
- self.account_backups = AccountBackupsOperations(self._client, self._config, self._serialize, self._deserialize)
- self.backup_policies = BackupPoliciesOperations(self._client, self._config, self._serialize, self._deserialize)
- self.volume_quota_rules = VolumeQuotaRulesOperations(self._client, self._config, self._serialize, self._deserialize)
- self.vaults = VaultsOperations(self._client, self._config, self._serialize, self._deserialize)
- self.volume_groups = VolumeGroupsOperations(self._client, self._config, self._serialize, self._deserialize)
- self.subvolumes = SubvolumesOperations(self._client, self._config, self._serialize, self._deserialize)
+ self.operations = Operations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.net_app_resource = NetAppResourceOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.net_app_resource_quota_limits = NetAppResourceQuotaLimitsOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.accounts = AccountsOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.pools = PoolsOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.volumes = VolumesOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.snapshots = SnapshotsOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.snapshot_policies = SnapshotPoliciesOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.backups = BackupsOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.account_backups = AccountBackupsOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.backup_policies = BackupPoliciesOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.volume_quota_rules = VolumeQuotaRulesOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.vaults = VaultsOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.volume_groups = VolumeGroupsOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
+ self.subvolumes = SubvolumesOperations(
+ self._client, self._config, self._serialize, self._deserialize
+ )
def _send_request(
diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/__init__.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/__init__.py
index 7b804194eeb5..86c8adf317b2 100644
--- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/__init__.py
+++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/__init__.py
@@ -22,6 +22,9 @@
from ._volume_groups_operations import VolumeGroupsOperations
from ._subvolumes_operations import SubvolumesOperations
+from ._patch import __all__ as _patch_all
+from ._patch import * # type: ignore # pylint: disable=unused-wildcard-import
+from ._patch import patch_sdk as _patch_sdk
__all__ = [
'Operations',
'NetAppResourceOperations',
@@ -39,3 +42,5 @@
'VolumeGroupsOperations',
'SubvolumesOperations',
]
+__all__.extend([p for p in _patch_all if p not in __all__])
+_patch_sdk()
\ No newline at end of file
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 9fd4a19b645e..9fc67ba2046c 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
@@ -6,7 +6,7 @@
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
-from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union
+from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union, cast
from azure.core.async_paging import AsyncItemPaged, AsyncList
from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error
@@ -16,6 +16,7 @@
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
from azure.core.tracing.decorator_async import distributed_trace_async
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling
@@ -26,26 +27,24 @@
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]]
class AccountBackupsOperations:
- """AccountBackupsOperations async operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.aio.NetAppManagementClient`'s
+ :attr:`account_backups` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer) -> None:
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs) -> None:
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def list(
@@ -53,7 +52,7 @@ def list(
resource_group_name: str,
account_name: str,
**kwargs: Any
- ) -> AsyncIterable["_models.BackupsList"]:
+ ) -> AsyncIterable[_models.BackupsList]:
"""List Backups for a Netapp Account.
List all Backups for a Netapp Account.
@@ -67,13 +66,16 @@ def list(
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.netapp.models.BackupsList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.BackupsList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.BackupsList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -83,9 +85,11 @@ def prepare_request(next_link=None):
account_name=account_name,
api_version=api_version,
template_url=self.list.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -95,9 +99,11 @@ def prepare_request(next_link=None):
account_name=account_name,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -137,7 +143,7 @@ async def get(
account_name: str,
backup_name: str,
**kwargs: Any
- ) -> "_models.Backup":
+ ) -> _models.Backup:
"""Get Backup for a Netapp Account.
Gets the specified backup for a Netapp Account.
@@ -153,13 +159,16 @@ async def get(
:rtype: ~azure.mgmt.netapp.models.Backup
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.Backup"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.Backup]
request = build_get_request(
@@ -169,11 +178,13 @@ async def get(
backup_name=backup_name,
api_version=api_version,
template_url=self.get.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -201,13 +212,16 @@ async def _delete_initial( # pylint: disable=inconsistent-return-statements
backup_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_delete_request_initial(
@@ -217,11 +231,13 @@ async def _delete_initial( # pylint: disable=inconsistent-return-statements
backup_name=backup_name,
api_version=api_version,
template_url=self._delete_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -268,21 +284,26 @@ async def begin_delete( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.AsyncLROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._delete_initial(
+ raw_result = await self._delete_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
backup_name=backup_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -292,8 +313,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
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 826d7b803bcb..ec208893f4d7 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
@@ -6,7 +6,7 @@
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
-from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union
+from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union, cast
from azure.core.async_paging import AsyncItemPaged, AsyncList
from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error
@@ -16,6 +16,7 @@
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
from azure.core.tracing.decorator_async import distributed_trace_async
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling
@@ -26,32 +27,30 @@
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]]
class AccountsOperations:
- """AccountsOperations async operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.aio.NetAppManagementClient`'s
+ :attr:`accounts` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer) -> None:
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs) -> None:
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def list_by_subscription(
self,
**kwargs: Any
- ) -> AsyncIterable["_models.NetAppAccountList"]:
+ ) -> AsyncIterable[_models.NetAppAccountList]:
"""Describe all NetApp Accounts in a subscription.
List and describe all NetApp accounts in the subscription.
@@ -61,13 +60,16 @@ def list_by_subscription(
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.netapp.models.NetAppAccountList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.NetAppAccountList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.NetAppAccountList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -75,9 +77,11 @@ def prepare_request(next_link=None):
subscription_id=self._config.subscription_id,
api_version=api_version,
template_url=self.list_by_subscription.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -85,9 +89,11 @@ def prepare_request(next_link=None):
subscription_id=self._config.subscription_id,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -125,7 +131,7 @@ def list(
self,
resource_group_name: str,
**kwargs: Any
- ) -> AsyncIterable["_models.NetAppAccountList"]:
+ ) -> AsyncIterable[_models.NetAppAccountList]:
"""Describe all NetApp Accounts in a resource group.
List and describe all NetApp accounts in the resource group.
@@ -137,13 +143,16 @@ def list(
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.netapp.models.NetAppAccountList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.NetAppAccountList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.NetAppAccountList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -152,9 +161,11 @@ def prepare_request(next_link=None):
resource_group_name=resource_group_name,
api_version=api_version,
template_url=self.list.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -163,9 +174,11 @@ def prepare_request(next_link=None):
resource_group_name=resource_group_name,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -204,7 +217,7 @@ async def get(
resource_group_name: str,
account_name: str,
**kwargs: Any
- ) -> "_models.NetAppAccount":
+ ) -> _models.NetAppAccount:
"""Describe a NetApp Account.
Get the NetApp account.
@@ -218,13 +231,16 @@ async def get(
:rtype: ~azure.mgmt.netapp.models.NetAppAccount
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.NetAppAccount"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.NetAppAccount]
request = build_get_request(
@@ -233,11 +249,13 @@ async def get(
account_name=account_name,
api_version=api_version,
template_url=self.get.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -262,17 +280,20 @@ async def _create_or_update_initial(
self,
resource_group_name: str,
account_name: str,
- body: "_models.NetAppAccount",
+ body: _models.NetAppAccount,
**kwargs: Any
- ) -> "_models.NetAppAccount":
- cls = kwargs.pop('cls', None) # type: ClsType["_models.NetAppAccount"]
+ ) -> _models.NetAppAccount:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.NetAppAccount]
_json = self._serialize.body(body, 'NetAppAccount')
@@ -284,11 +305,13 @@ async def _create_or_update_initial(
content_type=content_type,
json=_json,
template_url=self._create_or_update_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -318,9 +341,9 @@ async def begin_create_or_update(
self,
resource_group_name: str,
account_name: str,
- body: "_models.NetAppAccount",
+ body: _models.NetAppAccount,
**kwargs: Any
- ) -> AsyncLROPoller["_models.NetAppAccount"]:
+ ) -> AsyncLROPoller[_models.NetAppAccount]:
"""Create or update a NetApp account.
Create or update the specified NetApp account within the resource group.
@@ -344,37 +367,47 @@ async def begin_create_or_update(
:rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.netapp.models.NetAppAccount]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.NetAppAccount]
polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.NetAppAccount"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._create_or_update_initial(
+ raw_result = await self._create_or_update_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
body=body,
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('NetAppAccount', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'azure-async-operation'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -393,13 +426,16 @@ async def _delete_initial( # pylint: disable=inconsistent-return-statements
account_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_delete_request_initial(
@@ -408,11 +444,13 @@ async def _delete_initial( # pylint: disable=inconsistent-return-statements
account_name=account_name,
api_version=api_version,
template_url=self._delete_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -456,20 +494,25 @@ async def begin_delete( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.AsyncLROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._delete_initial(
+ raw_result = await self._delete_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,
**kwargs
)
kwargs.pop('error_map', None)
@@ -479,8 +522,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -497,17 +546,20 @@ async def _update_initial(
self,
resource_group_name: str,
account_name: str,
- body: "_models.NetAppAccountPatch",
+ body: _models.NetAppAccountPatch,
**kwargs: Any
- ) -> "_models.NetAppAccount":
- cls = kwargs.pop('cls', None) # type: ClsType["_models.NetAppAccount"]
+ ) -> _models.NetAppAccount:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.NetAppAccount]
_json = self._serialize.body(body, 'NetAppAccountPatch')
@@ -519,11 +571,13 @@ async def _update_initial(
content_type=content_type,
json=_json,
template_url=self._update_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -553,9 +607,9 @@ async def begin_update(
self,
resource_group_name: str,
account_name: str,
- body: "_models.NetAppAccountPatch",
+ body: _models.NetAppAccountPatch,
**kwargs: Any
- ) -> AsyncLROPoller["_models.NetAppAccount"]:
+ ) -> AsyncLROPoller[_models.NetAppAccount]:
"""Update a NetApp account.
Patch the specified NetApp account.
@@ -579,37 +633,47 @@ async def begin_update(
:rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.netapp.models.NetAppAccount]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.NetAppAccount]
polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.NetAppAccount"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._update_initial(
+ raw_result = await self._update_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
body=body,
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('NetAppAccount', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
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 385759ce6688..6aeb7ff6e738 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
@@ -6,7 +6,7 @@
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
-from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union
+from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union, cast
from azure.core.async_paging import AsyncItemPaged, AsyncList
from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error
@@ -16,6 +16,7 @@
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
from azure.core.tracing.decorator_async import distributed_trace_async
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling
@@ -26,26 +27,24 @@
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]]
class BackupPoliciesOperations:
- """BackupPoliciesOperations async operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.aio.NetAppManagementClient`'s
+ :attr:`backup_policies` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer) -> None:
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs) -> None:
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def list(
@@ -53,7 +52,7 @@ def list(
resource_group_name: str,
account_name: str,
**kwargs: Any
- ) -> AsyncIterable["_models.BackupPoliciesList"]:
+ ) -> AsyncIterable[_models.BackupPoliciesList]:
"""List backup policies.
List backup policies for Netapp Account.
@@ -67,13 +66,16 @@ def list(
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.netapp.models.BackupPoliciesList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.BackupPoliciesList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.BackupPoliciesList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -83,9 +85,11 @@ def prepare_request(next_link=None):
account_name=account_name,
api_version=api_version,
template_url=self.list.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -95,9 +99,11 @@ def prepare_request(next_link=None):
account_name=account_name,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -137,7 +143,7 @@ async def get(
account_name: str,
backup_policy_name: str,
**kwargs: Any
- ) -> "_models.BackupPolicy":
+ ) -> _models.BackupPolicy:
"""Get a backup Policy.
Get a particular backup Policy.
@@ -153,13 +159,16 @@ async def get(
:rtype: ~azure.mgmt.netapp.models.BackupPolicy
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.BackupPolicy"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.BackupPolicy]
request = build_get_request(
@@ -169,11 +178,13 @@ async def get(
backup_policy_name=backup_policy_name,
api_version=api_version,
template_url=self.get.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -199,17 +210,20 @@ async def _create_initial(
resource_group_name: str,
account_name: str,
backup_policy_name: str,
- body: "_models.BackupPolicy",
+ body: _models.BackupPolicy,
**kwargs: Any
- ) -> Optional["_models.BackupPolicy"]:
- cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.BackupPolicy"]]
+ ) -> Optional[_models.BackupPolicy]:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[Optional[_models.BackupPolicy]]
_json = self._serialize.body(body, 'BackupPolicy')
@@ -222,11 +236,13 @@ async def _create_initial(
content_type=content_type,
json=_json,
template_url=self._create_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -258,9 +274,9 @@ async def begin_create(
resource_group_name: str,
account_name: str,
backup_policy_name: str,
- body: "_models.BackupPolicy",
+ body: _models.BackupPolicy,
**kwargs: Any
- ) -> AsyncLROPoller["_models.BackupPolicy"]:
+ ) -> AsyncLROPoller[_models.BackupPolicy]:
"""Create a backup policy.
Create a backup policy for Netapp Account.
@@ -286,17 +302,20 @@ async def begin_create(
:rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.netapp.models.BackupPolicy]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.BackupPolicy]
polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.BackupPolicy"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._create_initial(
+ raw_result = await self._create_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
backup_policy_name=backup_policy_name,
@@ -304,20 +323,27 @@ async def begin_create(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('BackupPolicy', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'azure-async-operation'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -335,17 +361,20 @@ async def _update_initial(
resource_group_name: str,
account_name: str,
backup_policy_name: str,
- body: "_models.BackupPolicyPatch",
+ body: _models.BackupPolicyPatch,
**kwargs: Any
- ) -> "_models.BackupPolicy":
- cls = kwargs.pop('cls', None) # type: ClsType["_models.BackupPolicy"]
+ ) -> _models.BackupPolicy:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.BackupPolicy]
_json = self._serialize.body(body, 'BackupPolicyPatch')
@@ -358,11 +387,13 @@ async def _update_initial(
content_type=content_type,
json=_json,
template_url=self._update_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -393,9 +424,9 @@ async def begin_update(
resource_group_name: str,
account_name: str,
backup_policy_name: str,
- body: "_models.BackupPolicyPatch",
+ body: _models.BackupPolicyPatch,
**kwargs: Any
- ) -> AsyncLROPoller["_models.BackupPolicy"]:
+ ) -> AsyncLROPoller[_models.BackupPolicy]:
"""Patch a backup policy.
Patch a backup policy for Netapp Account.
@@ -421,17 +452,20 @@ async def begin_update(
:rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.netapp.models.BackupPolicy]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.BackupPolicy]
polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.BackupPolicy"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._update_initial(
+ raw_result = await self._update_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
backup_policy_name=backup_policy_name,
@@ -439,20 +473,27 @@ async def begin_update(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('BackupPolicy', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'azure-async-operation'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -472,13 +513,16 @@ async def _delete_initial( # pylint: disable=inconsistent-return-statements
backup_policy_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_delete_request_initial(
@@ -488,11 +532,13 @@ async def _delete_initial( # pylint: disable=inconsistent-return-statements
backup_policy_name=backup_policy_name,
api_version=api_version,
template_url=self._delete_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -539,21 +585,26 @@ async def begin_delete( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.AsyncLROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._delete_initial(
+ raw_result = await self._delete_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
backup_policy_name=backup_policy_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -563,8 +614,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
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 5204b6bee8eb..5fec8cc934d9 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
@@ -6,7 +6,7 @@
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
-from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union
+from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union, cast
from azure.core.async_paging import AsyncItemPaged, AsyncList
from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error
@@ -16,6 +16,7 @@
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
from azure.core.tracing.decorator_async import distributed_trace_async
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling
@@ -26,26 +27,24 @@
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]]
class BackupsOperations:
- """BackupsOperations async operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.aio.NetAppManagementClient`'s
+ :attr:`backups` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer) -> None:
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs) -> None:
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace_async
async def get_status(
@@ -55,7 +54,7 @@ async def get_status(
pool_name: str,
volume_name: str,
**kwargs: Any
- ) -> "_models.BackupStatus":
+ ) -> _models.BackupStatus:
"""Get volume's backup status.
Get the status of the backup for a volume.
@@ -73,13 +72,16 @@ async def get_status(
:rtype: ~azure.mgmt.netapp.models.BackupStatus
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.BackupStatus"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.BackupStatus]
request = build_get_status_request(
@@ -90,11 +92,13 @@ async def get_status(
volume_name=volume_name,
api_version=api_version,
template_url=self.get_status.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -123,7 +127,7 @@ async def get_volume_restore_status(
pool_name: str,
volume_name: str,
**kwargs: Any
- ) -> "_models.RestoreStatus":
+ ) -> _models.RestoreStatus:
"""Get volume's restore status.
Get the status of the restore for a volume.
@@ -141,13 +145,16 @@ async def get_volume_restore_status(
:rtype: ~azure.mgmt.netapp.models.RestoreStatus
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.RestoreStatus"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.RestoreStatus]
request = build_get_volume_restore_status_request(
@@ -158,11 +165,13 @@ async def get_volume_restore_status(
volume_name=volume_name,
api_version=api_version,
template_url=self.get_volume_restore_status.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -191,7 +200,7 @@ def list(
pool_name: str,
volume_name: str,
**kwargs: Any
- ) -> AsyncIterable["_models.BackupsList"]:
+ ) -> AsyncIterable[_models.BackupsList]:
"""List Backups.
List all backups for a volume.
@@ -209,13 +218,16 @@ def list(
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.netapp.models.BackupsList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.BackupsList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.BackupsList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -227,9 +239,11 @@ def prepare_request(next_link=None):
volume_name=volume_name,
api_version=api_version,
template_url=self.list.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -241,9 +255,11 @@ def prepare_request(next_link=None):
volume_name=volume_name,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -285,7 +301,7 @@ async def get(
volume_name: str,
backup_name: str,
**kwargs: Any
- ) -> "_models.Backup":
+ ) -> _models.Backup:
"""Get a backup.
Gets the specified backup of the volume.
@@ -305,13 +321,16 @@ async def get(
:rtype: ~azure.mgmt.netapp.models.Backup
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.Backup"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.Backup]
request = build_get_request(
@@ -323,11 +342,13 @@ async def get(
backup_name=backup_name,
api_version=api_version,
template_url=self.get.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -355,17 +376,20 @@ async def _create_initial(
pool_name: str,
volume_name: str,
backup_name: str,
- body: "_models.Backup",
+ body: _models.Backup,
**kwargs: Any
- ) -> Optional["_models.Backup"]:
- cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.Backup"]]
+ ) -> Optional[_models.Backup]:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[Optional[_models.Backup]]
_json = self._serialize.body(body, 'Backup')
@@ -380,11 +404,13 @@ async def _create_initial(
content_type=content_type,
json=_json,
template_url=self._create_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -418,9 +444,9 @@ async def begin_create(
pool_name: str,
volume_name: str,
backup_name: str,
- body: "_models.Backup",
+ body: _models.Backup,
**kwargs: Any
- ) -> AsyncLROPoller["_models.Backup"]:
+ ) -> AsyncLROPoller[_models.Backup]:
"""Create a backup.
Create a backup for the volume.
@@ -450,17 +476,20 @@ async def begin_create(
:rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.netapp.models.Backup]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.Backup]
polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.Backup"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._create_initial(
+ raw_result = await self._create_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -470,20 +499,27 @@ async def begin_create(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('Backup', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -503,17 +539,20 @@ async def _update_initial(
pool_name: str,
volume_name: str,
backup_name: str,
- body: Optional["_models.BackupPatch"] = None,
+ body: Optional[_models.BackupPatch] = None,
**kwargs: Any
- ) -> "_models.Backup":
- cls = kwargs.pop('cls', None) # type: ClsType["_models.Backup"]
+ ) -> _models.Backup:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.Backup]
if body is not None:
_json = self._serialize.body(body, 'BackupPatch')
@@ -531,11 +570,13 @@ async def _update_initial(
content_type=content_type,
json=_json,
template_url=self._update_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -568,9 +609,9 @@ async def begin_update(
pool_name: str,
volume_name: str,
backup_name: str,
- body: Optional["_models.BackupPatch"] = None,
+ body: Optional[_models.BackupPatch] = None,
**kwargs: Any
- ) -> AsyncLROPoller["_models.Backup"]:
+ ) -> AsyncLROPoller[_models.Backup]:
"""Patch a backup.
Patch a backup for the volume.
@@ -600,17 +641,20 @@ async def begin_update(
:rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.netapp.models.Backup]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.Backup]
polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.Backup"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._update_initial(
+ raw_result = await self._update_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -620,20 +664,27 @@ async def begin_update(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('Backup', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -655,13 +706,16 @@ async def _delete_initial( # pylint: disable=inconsistent-return-statements
backup_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_delete_request_initial(
@@ -673,11 +727,13 @@ async def _delete_initial( # pylint: disable=inconsistent-return-statements
backup_name=backup_name,
api_version=api_version,
template_url=self._delete_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -730,16 +786,19 @@ async def begin_delete( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.AsyncLROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._delete_initial(
+ raw_result = await self._delete_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -747,6 +806,8 @@ async def begin_delete( # pylint: disable=inconsistent-return-statements
backup_name=backup_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -756,8 +817,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
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 46db59160dcd..4cd1b8b3de1d 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
@@ -13,6 +13,7 @@
from azure.core.pipeline.transport import AsyncHttpResponse
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator_async import distributed_trace_async
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from ... import models as _models
@@ -22,26 +23,24 @@
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]]
class NetAppResourceOperations:
- """NetAppResourceOperations async operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.aio.NetAppManagementClient`'s
+ :attr:`net_app_resource` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer) -> None:
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs) -> None:
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace_async
async def check_name_availability(
@@ -51,7 +50,7 @@ async def check_name_availability(
type: Union[str, "_models.CheckNameResourceTypes"],
resource_group: str,
**kwargs: Any
- ) -> "_models.CheckAvailabilityResponse":
+ ) -> _models.CheckAvailabilityResponse:
"""Check resource name availability.
Check if a resource name is available.
@@ -69,14 +68,17 @@ async def check_name_availability(
:rtype: ~azure.mgmt.netapp.models.CheckAvailabilityResponse
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.CheckAvailabilityResponse"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.CheckAvailabilityResponse]
_body = _models.ResourceNameAvailabilityRequest(name=name, type=type, resource_group=resource_group)
_json = self._serialize.body(_body, 'ResourceNameAvailabilityRequest')
@@ -88,11 +90,13 @@ async def check_name_availability(
content_type=content_type,
json=_json,
template_url=self.check_name_availability.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -120,7 +124,7 @@ async def check_file_path_availability(
name: str,
subnet_id: str,
**kwargs: Any
- ) -> "_models.CheckAvailabilityResponse":
+ ) -> _models.CheckAvailabilityResponse:
"""Check file path availability.
Check if a file path is available.
@@ -137,14 +141,17 @@ async def check_file_path_availability(
:rtype: ~azure.mgmt.netapp.models.CheckAvailabilityResponse
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.CheckAvailabilityResponse"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.CheckAvailabilityResponse]
_body = _models.FilePathAvailabilityRequest(name=name, subnet_id=subnet_id)
_json = self._serialize.body(_body, 'FilePathAvailabilityRequest')
@@ -156,11 +163,13 @@ async def check_file_path_availability(
content_type=content_type,
json=_json,
template_url=self.check_file_path_availability.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -189,7 +198,7 @@ async def check_quota_availability(
type: Union[str, "_models.CheckQuotaNameResourceTypes"],
resource_group: str,
**kwargs: Any
- ) -> "_models.CheckAvailabilityResponse":
+ ) -> _models.CheckAvailabilityResponse:
"""Check quota availability.
Check if a quota is available.
@@ -207,14 +216,17 @@ async def check_quota_availability(
:rtype: ~azure.mgmt.netapp.models.CheckAvailabilityResponse
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.CheckAvailabilityResponse"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.CheckAvailabilityResponse]
_body = _models.QuotaAvailabilityRequest(name=name, type=type, resource_group=resource_group)
_json = self._serialize.body(_body, 'QuotaAvailabilityRequest')
@@ -226,11 +238,13 @@ async def check_quota_availability(
content_type=content_type,
json=_json,
template_url=self.check_quota_availability.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
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 a7b2efaaaaab..632f5ec0a17c 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
@@ -15,6 +15,7 @@
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
from azure.core.tracing.decorator_async import distributed_trace_async
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from ... import models as _models
@@ -24,33 +25,31 @@
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]]
class NetAppResourceQuotaLimitsOperations:
- """NetAppResourceQuotaLimitsOperations async operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.aio.NetAppManagementClient`'s
+ :attr:`net_app_resource_quota_limits` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer) -> None:
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs) -> None:
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def list(
self,
location: str,
**kwargs: Any
- ) -> AsyncIterable["_models.SubscriptionQuotaItemList"]:
+ ) -> AsyncIterable[_models.SubscriptionQuotaItemList]:
"""Get quota limits.
Get the default and current limits for quotas.
@@ -64,13 +63,16 @@ def list(
~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.netapp.models.SubscriptionQuotaItemList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SubscriptionQuotaItemList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SubscriptionQuotaItemList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -79,9 +81,11 @@ def prepare_request(next_link=None):
location=location,
api_version=api_version,
template_url=self.list.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -90,9 +94,11 @@ def prepare_request(next_link=None):
location=location,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -131,7 +137,7 @@ async def get(
location: str,
quota_limit_name: str,
**kwargs: Any
- ) -> "_models.SubscriptionQuotaItem":
+ ) -> _models.SubscriptionQuotaItem:
"""Get quota limits.
Get the default and current subscription quota limit.
@@ -145,13 +151,16 @@ async def get(
:rtype: ~azure.mgmt.netapp.models.SubscriptionQuotaItem
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SubscriptionQuotaItem"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SubscriptionQuotaItem]
request = build_get_request(
@@ -160,11 +169,13 @@ async def get(
quota_limit_name=quota_limit_name,
api_version=api_version,
template_url=self.get.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
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 86a2e738b2e9..5aa257ad647d 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
@@ -14,6 +14,7 @@
from azure.core.pipeline.transport import AsyncHttpResponse
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from ... import models as _models
@@ -23,32 +24,30 @@
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]]
class Operations:
- """Operations async operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.aio.NetAppManagementClient`'s
+ :attr:`operations` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer) -> None:
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs) -> None:
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def list(
self,
**kwargs: Any
- ) -> AsyncIterable["_models.OperationListResult"]:
+ ) -> AsyncIterable[_models.OperationListResult]:
"""Describes the Resource Provider.
Lists all of the available Microsoft.NetApp Rest API operations.
@@ -58,31 +57,38 @@ def list(
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.netapp.models.OperationListResult]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.OperationListResult]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.OperationListResult"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
request = build_list_request(
api_version=api_version,
template_url=self.list.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
request = build_list_request(
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_patch.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_patch.py
new file mode 100644
index 000000000000..0ad201a8c586
--- /dev/null
+++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_patch.py
@@ -0,0 +1,19 @@
+# ------------------------------------
+# Copyright (c) Microsoft Corporation.
+# Licensed under the MIT License.
+# ------------------------------------
+"""Customize generated code here.
+
+Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize
+"""
+from typing import List
+
+__all__: List[str] = [] # Add all objects you want publicly available to users at this package level
+
+def patch_sdk():
+ """Do not remove from this file.
+
+ `patch_sdk` is a last resort escape hatch that allows you to do customizations
+ you can't accomplish using the techniques described in
+ https://aka.ms/azsdk/python/dpcodegen/python/customize
+ """
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 69571cbb5326..e9064d093011 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
@@ -6,7 +6,7 @@
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
-from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union
+from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union, cast
from azure.core.async_paging import AsyncItemPaged, AsyncList
from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error
@@ -16,6 +16,7 @@
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
from azure.core.tracing.decorator_async import distributed_trace_async
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling
@@ -26,26 +27,24 @@
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]]
class PoolsOperations:
- """PoolsOperations async operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.aio.NetAppManagementClient`'s
+ :attr:`pools` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer) -> None:
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs) -> None:
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def list(
@@ -53,7 +52,7 @@ def list(
resource_group_name: str,
account_name: str,
**kwargs: Any
- ) -> AsyncIterable["_models.CapacityPoolList"]:
+ ) -> AsyncIterable[_models.CapacityPoolList]:
"""Describe all Capacity Pools.
List all capacity pools in the NetApp Account.
@@ -67,13 +66,16 @@ def list(
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.netapp.models.CapacityPoolList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.CapacityPoolList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.CapacityPoolList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -83,9 +85,11 @@ def prepare_request(next_link=None):
account_name=account_name,
api_version=api_version,
template_url=self.list.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -95,9 +99,11 @@ def prepare_request(next_link=None):
account_name=account_name,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -137,7 +143,7 @@ async def get(
account_name: str,
pool_name: str,
**kwargs: Any
- ) -> "_models.CapacityPool":
+ ) -> _models.CapacityPool:
"""Describe a Capacity Pool.
Get details of the specified capacity pool.
@@ -153,13 +159,16 @@ async def get(
:rtype: ~azure.mgmt.netapp.models.CapacityPool
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.CapacityPool"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.CapacityPool]
request = build_get_request(
@@ -169,11 +178,13 @@ async def get(
pool_name=pool_name,
api_version=api_version,
template_url=self.get.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -199,17 +210,20 @@ async def _create_or_update_initial(
resource_group_name: str,
account_name: str,
pool_name: str,
- body: "_models.CapacityPool",
+ body: _models.CapacityPool,
**kwargs: Any
- ) -> "_models.CapacityPool":
- cls = kwargs.pop('cls', None) # type: ClsType["_models.CapacityPool"]
+ ) -> _models.CapacityPool:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.CapacityPool]
_json = self._serialize.body(body, 'CapacityPool')
@@ -222,11 +236,13 @@ async def _create_or_update_initial(
content_type=content_type,
json=_json,
template_url=self._create_or_update_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -257,9 +273,9 @@ async def begin_create_or_update(
resource_group_name: str,
account_name: str,
pool_name: str,
- body: "_models.CapacityPool",
+ body: _models.CapacityPool,
**kwargs: Any
- ) -> AsyncLROPoller["_models.CapacityPool"]:
+ ) -> AsyncLROPoller[_models.CapacityPool]:
"""Create or Update the specified capacity pool within the resource group.
Create or Update a capacity pool.
@@ -285,17 +301,20 @@ async def begin_create_or_update(
:rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.netapp.models.CapacityPool]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.CapacityPool]
polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.CapacityPool"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._create_or_update_initial(
+ raw_result = await self._create_or_update_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -303,20 +322,27 @@ async def begin_create_or_update(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('CapacityPool', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -334,17 +360,20 @@ async def _update_initial(
resource_group_name: str,
account_name: str,
pool_name: str,
- body: "_models.CapacityPoolPatch",
+ body: _models.CapacityPoolPatch,
**kwargs: Any
- ) -> Optional["_models.CapacityPool"]:
- cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.CapacityPool"]]
+ ) -> Optional[_models.CapacityPool]:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[Optional[_models.CapacityPool]]
_json = self._serialize.body(body, 'CapacityPoolPatch')
@@ -357,11 +386,13 @@ async def _update_initial(
content_type=content_type,
json=_json,
template_url=self._update_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -390,9 +421,9 @@ async def begin_update(
resource_group_name: str,
account_name: str,
pool_name: str,
- body: "_models.CapacityPoolPatch",
+ body: _models.CapacityPoolPatch,
**kwargs: Any
- ) -> AsyncLROPoller["_models.CapacityPool"]:
+ ) -> AsyncLROPoller[_models.CapacityPool]:
"""Update a capacity pool.
Patch the specified capacity pool.
@@ -418,17 +449,20 @@ async def begin_update(
:rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.netapp.models.CapacityPool]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.CapacityPool]
polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.CapacityPool"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._update_initial(
+ raw_result = await self._update_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -436,20 +470,27 @@ async def begin_update(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('CapacityPool', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -469,13 +510,16 @@ async def _delete_initial( # pylint: disable=inconsistent-return-statements
pool_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_delete_request_initial(
@@ -485,11 +529,13 @@ async def _delete_initial( # pylint: disable=inconsistent-return-statements
pool_name=pool_name,
api_version=api_version,
template_url=self._delete_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -536,21 +582,26 @@ async def begin_delete( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.AsyncLROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._delete_initial(
+ raw_result = await self._delete_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -560,8 +611,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
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 db7fbd12008c..9f47758a2e2d 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
@@ -6,7 +6,7 @@
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
-from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union
+from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union, cast
from azure.core.async_paging import AsyncItemPaged, AsyncList
from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error
@@ -16,6 +16,7 @@
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
from azure.core.tracing.decorator_async import distributed_trace_async
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling
@@ -26,26 +27,24 @@
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]]
class SnapshotPoliciesOperations:
- """SnapshotPoliciesOperations async operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.aio.NetAppManagementClient`'s
+ :attr:`snapshot_policies` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer) -> None:
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs) -> None:
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def list(
@@ -53,7 +52,7 @@ def list(
resource_group_name: str,
account_name: str,
**kwargs: Any
- ) -> AsyncIterable["_models.SnapshotPoliciesList"]:
+ ) -> AsyncIterable[_models.SnapshotPoliciesList]:
"""List snapshot policy.
:param resource_group_name: The name of the resource group.
@@ -66,13 +65,16 @@ def list(
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.netapp.models.SnapshotPoliciesList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SnapshotPoliciesList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SnapshotPoliciesList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -82,9 +84,11 @@ def prepare_request(next_link=None):
account_name=account_name,
api_version=api_version,
template_url=self.list.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -94,9 +98,11 @@ def prepare_request(next_link=None):
account_name=account_name,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -136,7 +142,7 @@ async def get(
account_name: str,
snapshot_policy_name: str,
**kwargs: Any
- ) -> "_models.SnapshotPolicy":
+ ) -> _models.SnapshotPolicy:
"""Get a snapshot Policy.
:param resource_group_name: The name of the resource group.
@@ -150,13 +156,16 @@ async def get(
:rtype: ~azure.mgmt.netapp.models.SnapshotPolicy
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SnapshotPolicy"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SnapshotPolicy]
request = build_get_request(
@@ -166,11 +175,13 @@ async def get(
snapshot_policy_name=snapshot_policy_name,
api_version=api_version,
template_url=self.get.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -197,9 +208,9 @@ async def create(
resource_group_name: str,
account_name: str,
snapshot_policy_name: str,
- body: "_models.SnapshotPolicy",
+ body: _models.SnapshotPolicy,
**kwargs: Any
- ) -> "_models.SnapshotPolicy":
+ ) -> _models.SnapshotPolicy:
"""Create a snapshot policy.
:param resource_group_name: The name of the resource group.
@@ -215,14 +226,17 @@ async def create(
:rtype: ~azure.mgmt.netapp.models.SnapshotPolicy
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SnapshotPolicy"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SnapshotPolicy]
_json = self._serialize.body(body, 'SnapshotPolicy')
@@ -235,11 +249,13 @@ async def create(
content_type=content_type,
json=_json,
template_url=self.create.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -269,17 +285,20 @@ async def _update_initial(
resource_group_name: str,
account_name: str,
snapshot_policy_name: str,
- body: "_models.SnapshotPolicyPatch",
+ body: _models.SnapshotPolicyPatch,
**kwargs: Any
- ) -> "_models.SnapshotPolicy":
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SnapshotPolicy"]
+ ) -> _models.SnapshotPolicy:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SnapshotPolicy]
_json = self._serialize.body(body, 'SnapshotPolicyPatch')
@@ -292,11 +311,13 @@ async def _update_initial(
content_type=content_type,
json=_json,
template_url=self._update_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -327,9 +348,9 @@ async def begin_update(
resource_group_name: str,
account_name: str,
snapshot_policy_name: str,
- body: "_models.SnapshotPolicyPatch",
+ body: _models.SnapshotPolicyPatch,
**kwargs: Any
- ) -> AsyncLROPoller["_models.SnapshotPolicy"]:
+ ) -> AsyncLROPoller[_models.SnapshotPolicy]:
"""Patch a snapshot policy.
:param resource_group_name: The name of the resource group.
@@ -353,17 +374,20 @@ async def begin_update(
:rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.netapp.models.SnapshotPolicy]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SnapshotPolicy]
polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SnapshotPolicy"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._update_initial(
+ raw_result = await self._update_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
snapshot_policy_name=snapshot_policy_name,
@@ -371,20 +395,27 @@ async def begin_update(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('SnapshotPolicy', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -404,13 +435,16 @@ async def _delete_initial( # pylint: disable=inconsistent-return-statements
snapshot_policy_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_delete_request_initial(
@@ -420,11 +454,13 @@ async def _delete_initial( # pylint: disable=inconsistent-return-statements
snapshot_policy_name=snapshot_policy_name,
api_version=api_version,
template_url=self._delete_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -469,21 +505,26 @@ async def begin_delete( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.AsyncLROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._delete_initial(
+ raw_result = await self._delete_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
snapshot_policy_name=snapshot_policy_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -493,8 +534,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -514,7 +561,7 @@ async def list_volumes(
account_name: str,
snapshot_policy_name: str,
**kwargs: Any
- ) -> "_models.SnapshotPolicyVolumeList":
+ ) -> _models.SnapshotPolicyVolumeList:
"""Get volumes for snapshot policy.
Get volumes associated with snapshot policy.
@@ -530,13 +577,16 @@ async def list_volumes(
:rtype: ~azure.mgmt.netapp.models.SnapshotPolicyVolumeList
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SnapshotPolicyVolumeList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SnapshotPolicyVolumeList]
request = build_list_volumes_request(
@@ -546,11 +596,13 @@ async def list_volumes(
snapshot_policy_name=snapshot_policy_name,
api_version=api_version,
template_url=self.list_volumes.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
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 feaec4e741d3..3c7d6c065049 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
@@ -6,7 +6,7 @@
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
-from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union
+from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union, cast
from azure.core.async_paging import AsyncItemPaged, AsyncList
from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error
@@ -16,6 +16,7 @@
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
from azure.core.tracing.decorator_async import distributed_trace_async
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling
@@ -26,26 +27,24 @@
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]]
class SnapshotsOperations:
- """SnapshotsOperations async operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.aio.NetAppManagementClient`'s
+ :attr:`snapshots` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer) -> None:
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs) -> None:
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def list(
@@ -55,7 +54,7 @@ def list(
pool_name: str,
volume_name: str,
**kwargs: Any
- ) -> AsyncIterable["_models.SnapshotsList"]:
+ ) -> AsyncIterable[_models.SnapshotsList]:
"""Describe all snapshots.
List all snapshots associated with the volume.
@@ -73,13 +72,16 @@ def list(
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.netapp.models.SnapshotsList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SnapshotsList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SnapshotsList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -91,9 +93,11 @@ def prepare_request(next_link=None):
volume_name=volume_name,
api_version=api_version,
template_url=self.list.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -105,9 +109,11 @@ def prepare_request(next_link=None):
volume_name=volume_name,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -149,7 +155,7 @@ async def get(
volume_name: str,
snapshot_name: str,
**kwargs: Any
- ) -> "_models.Snapshot":
+ ) -> _models.Snapshot:
"""Describe a snapshot.
Get details of the specified snapshot.
@@ -169,13 +175,16 @@ async def get(
:rtype: ~azure.mgmt.netapp.models.Snapshot
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.Snapshot"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.Snapshot]
request = build_get_request(
@@ -187,11 +196,13 @@ async def get(
snapshot_name=snapshot_name,
api_version=api_version,
template_url=self.get.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -219,17 +230,20 @@ async def _create_initial(
pool_name: str,
volume_name: str,
snapshot_name: str,
- body: "_models.Snapshot",
+ body: _models.Snapshot,
**kwargs: Any
- ) -> Optional["_models.Snapshot"]:
- cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.Snapshot"]]
+ ) -> Optional[_models.Snapshot]:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[Optional[_models.Snapshot]]
_json = self._serialize.body(body, 'Snapshot')
@@ -244,11 +258,13 @@ async def _create_initial(
content_type=content_type,
json=_json,
template_url=self._create_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -279,9 +295,9 @@ async def begin_create(
pool_name: str,
volume_name: str,
snapshot_name: str,
- body: "_models.Snapshot",
+ body: _models.Snapshot,
**kwargs: Any
- ) -> AsyncLROPoller["_models.Snapshot"]:
+ ) -> AsyncLROPoller[_models.Snapshot]:
"""Create a snapshot.
Create the specified snapshot within the given volume.
@@ -311,17 +327,20 @@ async def begin_create(
:rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.netapp.models.Snapshot]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.Snapshot]
polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.Snapshot"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._create_initial(
+ raw_result = await self._create_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -331,20 +350,27 @@ async def begin_create(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('Snapshot', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -366,15 +392,18 @@ async def _update_initial(
snapshot_name: str,
body: Any,
**kwargs: Any
- ) -> Optional["_models.Snapshot"]:
- cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.Snapshot"]]
+ ) -> Optional[_models.Snapshot]:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[Optional[_models.Snapshot]]
_json = self._serialize.body(body, 'object')
@@ -389,11 +418,13 @@ async def _update_initial(
content_type=content_type,
json=_json,
template_url=self._update_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -426,7 +457,7 @@ async def begin_update(
snapshot_name: str,
body: Any,
**kwargs: Any
- ) -> AsyncLROPoller["_models.Snapshot"]:
+ ) -> AsyncLROPoller[_models.Snapshot]:
"""Update a snapshot.
Patch a snapshot.
@@ -456,17 +487,20 @@ async def begin_update(
:rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.netapp.models.Snapshot]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.Snapshot]
polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.Snapshot"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._update_initial(
+ raw_result = await self._update_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -476,20 +510,27 @@ async def begin_update(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('Snapshot', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -511,13 +552,16 @@ async def _delete_initial( # pylint: disable=inconsistent-return-statements
snapshot_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_delete_request_initial(
@@ -529,11 +573,13 @@ async def _delete_initial( # pylint: disable=inconsistent-return-statements
snapshot_name=snapshot_name,
api_version=api_version,
template_url=self._delete_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -586,16 +632,19 @@ async def begin_delete( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.AsyncLROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._delete_initial(
+ raw_result = await self._delete_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -603,6 +652,8 @@ async def begin_delete( # pylint: disable=inconsistent-return-statements
snapshot_name=snapshot_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -612,8 +663,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -633,17 +690,20 @@ async def _restore_files_initial( # pylint: disable=inconsistent-return-stateme
pool_name: str,
volume_name: str,
snapshot_name: str,
- body: "_models.SnapshotRestoreFiles",
+ body: _models.SnapshotRestoreFiles,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
_json = self._serialize.body(body, 'SnapshotRestoreFiles')
@@ -658,11 +718,13 @@ async def _restore_files_initial( # pylint: disable=inconsistent-return-stateme
content_type=content_type,
json=_json,
template_url=self._restore_files_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -687,7 +749,7 @@ async def begin_restore_files( # pylint: disable=inconsistent-return-statements
pool_name: str,
volume_name: str,
snapshot_name: str,
- body: "_models.SnapshotRestoreFiles",
+ body: _models.SnapshotRestoreFiles,
**kwargs: Any
) -> AsyncLROPoller[None]:
"""Create a new Snapshot Restore Files request.
@@ -718,17 +780,20 @@ async def begin_restore_files( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.AsyncLROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
- polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._restore_files_initial(
+ raw_result = await self._restore_files_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -738,6 +803,8 @@ async def begin_restore_files( # pylint: disable=inconsistent-return-statements
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -747,8 +814,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = AsyncARMPolling(lro_delay, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
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 69a43906ad00..d140b51af245 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
@@ -6,7 +6,7 @@
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
-from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union
+from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union, cast
from azure.core.async_paging import AsyncItemPaged, AsyncList
from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error
@@ -16,6 +16,7 @@
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
from azure.core.tracing.decorator_async import distributed_trace_async
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling
@@ -26,26 +27,24 @@
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]]
class SubvolumesOperations:
- """SubvolumesOperations async operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.aio.NetAppManagementClient`'s
+ :attr:`subvolumes` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer) -> None:
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs) -> None:
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def list_by_volume(
@@ -55,7 +54,7 @@ def list_by_volume(
pool_name: str,
volume_name: str,
**kwargs: Any
- ) -> AsyncIterable["_models.SubvolumesList"]:
+ ) -> AsyncIterable[_models.SubvolumesList]:
"""List of all the subvolumes.
Returns a list of the subvolumes in the volume.
@@ -73,13 +72,16 @@ def list_by_volume(
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.netapp.models.SubvolumesList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SubvolumesList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SubvolumesList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -91,9 +93,11 @@ def prepare_request(next_link=None):
volume_name=volume_name,
api_version=api_version,
template_url=self.list_by_volume.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -105,9 +109,11 @@ def prepare_request(next_link=None):
volume_name=volume_name,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -149,7 +155,7 @@ async def get(
volume_name: str,
subvolume_name: str,
**kwargs: Any
- ) -> "_models.SubvolumeInfo":
+ ) -> _models.SubvolumeInfo:
"""Get the path associated with the subvolumeName.
Returns the path associated with the subvolumeName provided.
@@ -169,13 +175,16 @@ async def get(
:rtype: ~azure.mgmt.netapp.models.SubvolumeInfo
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SubvolumeInfo"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SubvolumeInfo]
request = build_get_request(
@@ -187,11 +196,13 @@ async def get(
subvolume_name=subvolume_name,
api_version=api_version,
template_url=self.get.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -219,17 +230,20 @@ async def _create_initial(
pool_name: str,
volume_name: str,
subvolume_name: str,
- body: "_models.SubvolumeInfo",
+ body: _models.SubvolumeInfo,
**kwargs: Any
- ) -> Optional["_models.SubvolumeInfo"]:
- cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.SubvolumeInfo"]]
+ ) -> Optional[_models.SubvolumeInfo]:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[Optional[_models.SubvolumeInfo]]
_json = self._serialize.body(body, 'SubvolumeInfo')
@@ -244,11 +258,13 @@ async def _create_initial(
content_type=content_type,
json=_json,
template_url=self._create_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -282,9 +298,9 @@ async def begin_create(
pool_name: str,
volume_name: str,
subvolume_name: str,
- body: "_models.SubvolumeInfo",
+ body: _models.SubvolumeInfo,
**kwargs: Any
- ) -> AsyncLROPoller["_models.SubvolumeInfo"]:
+ ) -> AsyncLROPoller[_models.SubvolumeInfo]:
"""Create or clone a new subvolume.
Creates a subvolume in the path or clones the subvolume mentioned in the parentPath.
@@ -314,17 +330,20 @@ async def begin_create(
:rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.netapp.models.SubvolumeInfo]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SubvolumeInfo]
polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SubvolumeInfo"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._create_initial(
+ raw_result = await self._create_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -334,20 +353,27 @@ async def begin_create(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('SubvolumeInfo', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'azure-async-operation'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -367,17 +393,20 @@ async def _update_initial(
pool_name: str,
volume_name: str,
subvolume_name: str,
- body: "_models.SubvolumePatchRequest",
+ body: _models.SubvolumePatchRequest,
**kwargs: Any
- ) -> Optional["_models.SubvolumeInfo"]:
- cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.SubvolumeInfo"]]
+ ) -> Optional[_models.SubvolumeInfo]:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[Optional[_models.SubvolumeInfo]]
_json = self._serialize.body(body, 'SubvolumePatchRequest')
@@ -392,11 +421,13 @@ async def _update_initial(
content_type=content_type,
json=_json,
template_url=self._update_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -427,9 +458,9 @@ async def begin_update(
pool_name: str,
volume_name: str,
subvolume_name: str,
- body: "_models.SubvolumePatchRequest",
+ body: _models.SubvolumePatchRequest,
**kwargs: Any
- ) -> AsyncLROPoller["_models.SubvolumeInfo"]:
+ ) -> AsyncLROPoller[_models.SubvolumeInfo]:
"""Update a subvolume.
Patch a subvolume.
@@ -459,17 +490,20 @@ async def begin_update(
:rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.netapp.models.SubvolumeInfo]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SubvolumeInfo]
polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SubvolumeInfo"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._update_initial(
+ raw_result = await self._update_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -479,20 +513,27 @@ async def begin_update(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('SubvolumeInfo', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'azure-async-operation'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -514,13 +555,16 @@ async def _delete_initial( # pylint: disable=inconsistent-return-statements
subvolume_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_delete_request_initial(
@@ -532,11 +576,13 @@ async def _delete_initial( # pylint: disable=inconsistent-return-statements
subvolume_name=subvolume_name,
api_version=api_version,
template_url=self._delete_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -589,16 +635,19 @@ async def begin_delete( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.AsyncLROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._delete_initial(
+ raw_result = await self._delete_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -606,6 +655,8 @@ async def begin_delete( # pylint: disable=inconsistent-return-statements
subvolume_name=subvolume_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -615,8 +666,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'azure-async-operation'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -637,14 +694,17 @@ async def _get_metadata_initial(
volume_name: str,
subvolume_name: str,
**kwargs: Any
- ) -> Optional["_models.SubvolumeModel"]:
- cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.SubvolumeModel"]]
+ ) -> Optional[_models.SubvolumeModel]:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[Optional[_models.SubvolumeModel]]
request = build_get_metadata_request_initial(
@@ -656,11 +716,13 @@ async def _get_metadata_initial(
subvolume_name=subvolume_name,
api_version=api_version,
template_url=self._get_metadata_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -692,7 +754,7 @@ async def begin_get_metadata(
volume_name: str,
subvolume_name: str,
**kwargs: Any
- ) -> AsyncLROPoller["_models.SubvolumeModel"]:
+ ) -> AsyncLROPoller[_models.SubvolumeModel]:
"""Describe a subvolume.
Get details of the specified subvolume.
@@ -720,16 +782,19 @@ async def begin_get_metadata(
:rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.netapp.models.SubvolumeModel]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SubvolumeModel]
polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SubvolumeModel"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._get_metadata_initial(
+ raw_result = await self._get_metadata_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -737,20 +802,27 @@ async def begin_get_metadata(
subvolume_name=subvolume_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('SubvolumeModel', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'azure-async-operation'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
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 bab2770dbd8a..821a2356c8c2 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
@@ -14,6 +14,7 @@
from azure.core.pipeline.transport import AsyncHttpResponse
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from ... import models as _models
@@ -23,26 +24,24 @@
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]]
class VaultsOperations:
- """VaultsOperations async operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.aio.NetAppManagementClient`'s
+ :attr:`vaults` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer) -> None:
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs) -> None:
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def list(
@@ -50,7 +49,7 @@ def list(
resource_group_name: str,
account_name: str,
**kwargs: Any
- ) -> AsyncIterable["_models.VaultList"]:
+ ) -> AsyncIterable[_models.VaultList]:
"""List vaults.
List vaults for a Netapp Account.
@@ -64,13 +63,16 @@ def list(
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.netapp.models.VaultList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.VaultList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.VaultList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -80,9 +82,11 @@ def prepare_request(next_link=None):
account_name=account_name,
api_version=api_version,
template_url=self.list.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -92,9 +96,11 @@ def prepare_request(next_link=None):
account_name=account_name,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
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 f761019d2fda..9e37895670f0 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
@@ -6,7 +6,7 @@
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
-from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union
+from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union, cast
from azure.core.async_paging import AsyncItemPaged, AsyncList
from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error
@@ -16,6 +16,7 @@
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
from azure.core.tracing.decorator_async import distributed_trace_async
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling
@@ -26,26 +27,24 @@
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]]
class VolumeGroupsOperations:
- """VolumeGroupsOperations async operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.aio.NetAppManagementClient`'s
+ :attr:`volume_groups` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer) -> None:
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs) -> None:
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def list_by_net_app_account(
@@ -53,7 +52,7 @@ def list_by_net_app_account(
resource_group_name: str,
account_name: str,
**kwargs: Any
- ) -> AsyncIterable["_models.VolumeGroupList"]:
+ ) -> AsyncIterable[_models.VolumeGroupList]:
"""Describe all volume groups.
List all volume groups for given account.
@@ -67,13 +66,16 @@ def list_by_net_app_account(
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.netapp.models.VolumeGroupList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.VolumeGroupList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.VolumeGroupList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -83,9 +85,11 @@ def prepare_request(next_link=None):
account_name=account_name,
api_version=api_version,
template_url=self.list_by_net_app_account.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -95,9 +99,11 @@ def prepare_request(next_link=None):
account_name=account_name,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -137,7 +143,7 @@ async def get(
account_name: str,
volume_group_name: str,
**kwargs: Any
- ) -> "_models.VolumeGroupDetails":
+ ) -> _models.VolumeGroupDetails:
"""Describe a Volume Group.
Get details of the specified volume group.
@@ -153,13 +159,16 @@ async def get(
:rtype: ~azure.mgmt.netapp.models.VolumeGroupDetails
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.VolumeGroupDetails"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.VolumeGroupDetails]
request = build_get_request(
@@ -169,11 +178,13 @@ async def get(
volume_group_name=volume_group_name,
api_version=api_version,
template_url=self.get.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -199,17 +210,20 @@ async def _create_initial(
resource_group_name: str,
account_name: str,
volume_group_name: str,
- body: "_models.VolumeGroupDetails",
+ body: _models.VolumeGroupDetails,
**kwargs: Any
- ) -> "_models.VolumeGroupDetails":
- cls = kwargs.pop('cls', None) # type: ClsType["_models.VolumeGroupDetails"]
+ ) -> _models.VolumeGroupDetails:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.VolumeGroupDetails]
_json = self._serialize.body(body, 'VolumeGroupDetails')
@@ -222,11 +236,13 @@ async def _create_initial(
content_type=content_type,
json=_json,
template_url=self._create_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -253,9 +269,9 @@ async def begin_create(
resource_group_name: str,
account_name: str,
volume_group_name: str,
- body: "_models.VolumeGroupDetails",
+ body: _models.VolumeGroupDetails,
**kwargs: Any
- ) -> AsyncLROPoller["_models.VolumeGroupDetails"]:
+ ) -> AsyncLROPoller[_models.VolumeGroupDetails]:
"""Create the specified volume group and volumes. Creating volume group will create all the
volumes specified in request body implicitly. Once volumes are created using volume group,
those will be treated as regular volumes thereafter.
@@ -283,17 +299,20 @@ async def begin_create(
:rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.netapp.models.VolumeGroupDetails]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.VolumeGroupDetails]
polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.VolumeGroupDetails"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._create_initial(
+ raw_result = await self._create_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
volume_group_name=volume_group_name,
@@ -301,20 +320,27 @@ async def begin_create(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('VolumeGroupDetails', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = AsyncARMPolling(lro_delay, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -334,13 +360,16 @@ async def _delete_initial( # pylint: disable=inconsistent-return-statements
volume_group_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_delete_request_initial(
@@ -350,11 +379,13 @@ async def _delete_initial( # pylint: disable=inconsistent-return-statements
volume_group_name=volume_group_name,
api_version=api_version,
template_url=self._delete_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -401,21 +432,26 @@ async def begin_delete( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.AsyncLROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._delete_initial(
+ raw_result = await self._delete_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
volume_group_name=volume_group_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -425,8 +461,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = AsyncARMPolling(lro_delay, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
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 14e799013ad8..77233b898b5d 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
@@ -6,7 +6,7 @@
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
-from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union
+from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union, cast
from azure.core.async_paging import AsyncItemPaged, AsyncList
from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error
@@ -16,6 +16,7 @@
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
from azure.core.tracing.decorator_async import distributed_trace_async
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling
@@ -26,26 +27,24 @@
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]]
class VolumeQuotaRulesOperations:
- """VolumeQuotaRulesOperations async operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.aio.NetAppManagementClient`'s
+ :attr:`volume_quota_rules` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer) -> None:
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs) -> None:
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def list_by_volume(
@@ -55,7 +54,7 @@ def list_by_volume(
pool_name: str,
volume_name: str,
**kwargs: Any
- ) -> AsyncIterable["_models.VolumeQuotaRulesList"]:
+ ) -> AsyncIterable[_models.VolumeQuotaRulesList]:
"""Get all quota rules for a volume.
List all quota rules associated with the volume.
@@ -74,13 +73,16 @@ def list_by_volume(
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.netapp.models.VolumeQuotaRulesList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.VolumeQuotaRulesList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.VolumeQuotaRulesList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -92,9 +94,11 @@ def prepare_request(next_link=None):
volume_name=volume_name,
api_version=api_version,
template_url=self.list_by_volume.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -106,9 +110,11 @@ def prepare_request(next_link=None):
volume_name=volume_name,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -150,7 +156,7 @@ async def get(
volume_name: str,
volume_quota_rule_name: str,
**kwargs: Any
- ) -> "_models.VolumeQuotaRule":
+ ) -> _models.VolumeQuotaRule:
"""Describe a quota rule.
Get details of the specified quota rule.
@@ -170,13 +176,16 @@ async def get(
:rtype: ~azure.mgmt.netapp.models.VolumeQuotaRule
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.VolumeQuotaRule"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.VolumeQuotaRule]
request = build_get_request(
@@ -188,11 +197,13 @@ async def get(
volume_quota_rule_name=volume_quota_rule_name,
api_version=api_version,
template_url=self.get.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -220,17 +231,20 @@ async def _create_initial(
pool_name: str,
volume_name: str,
volume_quota_rule_name: str,
- body: "_models.VolumeQuotaRule",
+ body: _models.VolumeQuotaRule,
**kwargs: Any
- ) -> "_models.VolumeQuotaRule":
- cls = kwargs.pop('cls', None) # type: ClsType["_models.VolumeQuotaRule"]
+ ) -> _models.VolumeQuotaRule:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.VolumeQuotaRule]
_json = self._serialize.body(body, 'VolumeQuotaRule')
@@ -245,11 +259,13 @@ async def _create_initial(
content_type=content_type,
json=_json,
template_url=self._create_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -282,9 +298,9 @@ async def begin_create(
pool_name: str,
volume_name: str,
volume_quota_rule_name: str,
- body: "_models.VolumeQuotaRule",
+ body: _models.VolumeQuotaRule,
**kwargs: Any
- ) -> AsyncLROPoller["_models.VolumeQuotaRule"]:
+ ) -> AsyncLROPoller[_models.VolumeQuotaRule]:
"""Create a quota rule.
Create the specified quota rule within the given volume.
@@ -314,17 +330,20 @@ async def begin_create(
:rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.netapp.models.VolumeQuotaRule]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.VolumeQuotaRule]
polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.VolumeQuotaRule"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._create_initial(
+ raw_result = await self._create_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -334,20 +353,27 @@ async def begin_create(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('VolumeQuotaRule', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -367,17 +393,20 @@ async def _update_initial(
pool_name: str,
volume_name: str,
volume_quota_rule_name: str,
- body: "_models.VolumeQuotaRulePatch",
+ body: _models.VolumeQuotaRulePatch,
**kwargs: Any
- ) -> Optional["_models.VolumeQuotaRule"]:
- cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.VolumeQuotaRule"]]
+ ) -> Optional[_models.VolumeQuotaRule]:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[Optional[_models.VolumeQuotaRule]]
_json = self._serialize.body(body, 'VolumeQuotaRulePatch')
@@ -392,11 +421,13 @@ async def _update_initial(
content_type=content_type,
json=_json,
template_url=self._update_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -427,9 +458,9 @@ async def begin_update(
pool_name: str,
volume_name: str,
volume_quota_rule_name: str,
- body: "_models.VolumeQuotaRulePatch",
+ body: _models.VolumeQuotaRulePatch,
**kwargs: Any
- ) -> AsyncLROPoller["_models.VolumeQuotaRule"]:
+ ) -> AsyncLROPoller[_models.VolumeQuotaRule]:
"""Update a quota rule.
Patch a quota rule.
@@ -459,17 +490,20 @@ async def begin_update(
:rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.netapp.models.VolumeQuotaRule]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.VolumeQuotaRule]
polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.VolumeQuotaRule"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._update_initial(
+ raw_result = await self._update_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -479,20 +513,27 @@ async def begin_update(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('VolumeQuotaRule', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -514,13 +555,16 @@ async def _delete_initial( # pylint: disable=inconsistent-return-statements
volume_quota_rule_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_delete_request_initial(
@@ -532,11 +576,13 @@ async def _delete_initial( # pylint: disable=inconsistent-return-statements
volume_quota_rule_name=volume_quota_rule_name,
api_version=api_version,
template_url=self._delete_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -589,16 +635,19 @@ async def begin_delete( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.AsyncLROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._delete_initial(
+ raw_result = await self._delete_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -606,6 +655,8 @@ async def begin_delete( # pylint: disable=inconsistent-return-statements
volume_quota_rule_name=volume_quota_rule_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -615,8 +666,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
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 25b6da9bcd13..5d0728ba97a8 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
@@ -6,7 +6,7 @@
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
-from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union
+from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union, cast
from azure.core.async_paging import AsyncItemPaged, AsyncList
from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error
@@ -16,36 +16,35 @@
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
from azure.core.tracing.decorator_async import distributed_trace_async
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling
from ... import models as _models
from ..._vendor import _convert_request
-from ...operations._volumes_operations import build_authorize_replication_request_initial, build_break_replication_request_initial, build_create_or_update_request_initial, build_delete_replication_request_initial, build_delete_request_initial, build_finalize_relocation_request_initial, build_get_request, build_list_replications_request, build_list_request, build_pool_change_request_initial, build_re_initialize_replication_request_initial, build_relocate_request_initial, build_replication_status_request, build_reset_cifs_password_request_initial, build_resync_replication_request_initial, build_revert_relocation_request_initial, build_revert_request_initial, build_update_request_initial
+from ...operations._volumes_operations import build_authorize_replication_request_initial, build_break_replication_request_initial, build_create_or_update_request_initial, build_delete_replication_request_initial, build_delete_request_initial, build_finalize_relocation_request_initial, build_get_request, build_list_replications_request, build_list_request, build_pool_change_request_initial, build_re_initialize_replication_request_initial, build_reestablish_replication_request_initial, build_relocate_request_initial, build_replication_status_request, build_reset_cifs_password_request_initial, build_resync_replication_request_initial, build_revert_relocation_request_initial, build_revert_request_initial, build_update_request_initial
T = TypeVar('T')
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]]
class VolumesOperations: # pylint: disable=too-many-public-methods
- """VolumesOperations async operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.aio.NetAppManagementClient`'s
+ :attr:`volumes` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer) -> None:
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs) -> None:
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def list(
@@ -54,7 +53,7 @@ def list(
account_name: str,
pool_name: str,
**kwargs: Any
- ) -> AsyncIterable["_models.VolumeList"]:
+ ) -> AsyncIterable[_models.VolumeList]:
"""Describe all volumes.
List all volumes within the capacity pool.
@@ -70,13 +69,16 @@ def list(
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.netapp.models.VolumeList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.VolumeList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.VolumeList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -87,9 +89,11 @@ def prepare_request(next_link=None):
pool_name=pool_name,
api_version=api_version,
template_url=self.list.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -100,9 +104,11 @@ def prepare_request(next_link=None):
pool_name=pool_name,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -143,7 +149,7 @@ async def get(
pool_name: str,
volume_name: str,
**kwargs: Any
- ) -> "_models.Volume":
+ ) -> _models.Volume:
"""Describe a volume.
Get the details of the specified volume.
@@ -161,13 +167,16 @@ async def get(
:rtype: ~azure.mgmt.netapp.models.Volume
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.Volume"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.Volume]
request = build_get_request(
@@ -178,11 +187,13 @@ async def get(
volume_name=volume_name,
api_version=api_version,
template_url=self.get.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -209,17 +220,20 @@ async def _create_or_update_initial(
account_name: str,
pool_name: str,
volume_name: str,
- body: "_models.Volume",
+ body: _models.Volume,
**kwargs: Any
- ) -> Optional["_models.Volume"]:
- cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.Volume"]]
+ ) -> Optional[_models.Volume]:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[Optional[_models.Volume]]
_json = self._serialize.body(body, 'Volume')
@@ -233,11 +247,13 @@ async def _create_or_update_initial(
content_type=content_type,
json=_json,
template_url=self._create_or_update_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -270,9 +286,9 @@ async def begin_create_or_update(
account_name: str,
pool_name: str,
volume_name: str,
- body: "_models.Volume",
+ body: _models.Volume,
**kwargs: Any
- ) -> AsyncLROPoller["_models.Volume"]:
+ ) -> AsyncLROPoller[_models.Volume]:
"""Create or Update a volume.
Create or update the specified volume within the capacity pool.
@@ -300,17 +316,20 @@ async def begin_create_or_update(
:rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.netapp.models.Volume]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.Volume]
polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.Volume"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._create_or_update_initial(
+ raw_result = await self._create_or_update_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -319,20 +338,27 @@ async def begin_create_or_update(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('Volume', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'azure-async-operation'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -351,17 +377,20 @@ async def _update_initial(
account_name: str,
pool_name: str,
volume_name: str,
- body: "_models.VolumePatch",
+ body: _models.VolumePatch,
**kwargs: Any
- ) -> Optional["_models.Volume"]:
- cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.Volume"]]
+ ) -> Optional[_models.Volume]:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[Optional[_models.Volume]]
_json = self._serialize.body(body, 'VolumePatch')
@@ -375,11 +404,13 @@ async def _update_initial(
content_type=content_type,
json=_json,
template_url=self._update_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -409,9 +440,9 @@ async def begin_update(
account_name: str,
pool_name: str,
volume_name: str,
- body: "_models.VolumePatch",
+ body: _models.VolumePatch,
**kwargs: Any
- ) -> AsyncLROPoller["_models.Volume"]:
+ ) -> AsyncLROPoller[_models.Volume]:
"""Update a volume.
Patch the specified volume.
@@ -439,17 +470,20 @@ async def begin_update(
:rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.netapp.models.Volume]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.Volume]
polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.Volume"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._update_initial(
+ raw_result = await self._update_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -458,20 +492,27 @@ async def begin_update(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('Volume', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -493,13 +534,16 @@ async def _delete_initial( # pylint: disable=inconsistent-return-statements
force_delete: Optional[bool] = None,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_delete_request_initial(
@@ -511,11 +555,13 @@ async def _delete_initial( # pylint: disable=inconsistent-return-statements
api_version=api_version,
force_delete=force_delete,
template_url=self._delete_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -569,16 +615,19 @@ async def begin_delete( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.AsyncLROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._delete_initial(
+ raw_result = await self._delete_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -586,6 +635,8 @@ async def begin_delete( # pylint: disable=inconsistent-return-statements
force_delete=force_delete,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -595,8 +646,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -615,17 +672,20 @@ async def _revert_initial( # pylint: disable=inconsistent-return-statements
account_name: str,
pool_name: str,
volume_name: str,
- body: "_models.VolumeRevert",
+ body: _models.VolumeRevert,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
_json = self._serialize.body(body, 'VolumeRevert')
@@ -639,11 +699,13 @@ async def _revert_initial( # pylint: disable=inconsistent-return-statements
content_type=content_type,
json=_json,
template_url=self._revert_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -667,7 +729,7 @@ async def begin_revert( # pylint: disable=inconsistent-return-statements
account_name: str,
pool_name: str,
volume_name: str,
- body: "_models.VolumeRevert",
+ body: _models.VolumeRevert,
**kwargs: Any
) -> AsyncLROPoller[None]:
"""Revert a volume to one of its snapshots.
@@ -696,17 +758,20 @@ async def begin_revert( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.AsyncLROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
- polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._revert_initial(
+ raw_result = await self._revert_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -715,6 +780,8 @@ async def begin_revert( # pylint: disable=inconsistent-return-statements
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -724,8 +791,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -746,13 +819,16 @@ async def _reset_cifs_password_initial( # pylint: disable=inconsistent-return-s
volume_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_reset_cifs_password_request_initial(
@@ -763,11 +839,13 @@ async def _reset_cifs_password_initial( # pylint: disable=inconsistent-return-s
volume_name=volume_name,
api_version=api_version,
template_url=self._reset_cifs_password_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -817,22 +895,27 @@ async def begin_reset_cifs_password( # pylint: disable=inconsistent-return-stat
:rtype: ~azure.core.polling.AsyncLROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._reset_cifs_password_initial(
+ raw_result = await self._reset_cifs_password_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
volume_name=volume_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -842,8 +925,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = AsyncARMPolling(lro_delay, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -862,17 +951,20 @@ async def _break_replication_initial( # pylint: disable=inconsistent-return-sta
account_name: str,
pool_name: str,
volume_name: str,
- body: Optional["_models.BreakReplicationRequest"] = None,
+ body: Optional[_models.BreakReplicationRequest] = None,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
if body is not None:
_json = self._serialize.body(body, 'BreakReplicationRequest')
@@ -889,11 +981,13 @@ async def _break_replication_initial( # pylint: disable=inconsistent-return-sta
content_type=content_type,
json=_json,
template_url=self._break_replication_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -917,7 +1011,7 @@ async def begin_break_replication( # pylint: disable=inconsistent-return-statem
account_name: str,
pool_name: str,
volume_name: str,
- body: Optional["_models.BreakReplicationRequest"] = None,
+ body: Optional[_models.BreakReplicationRequest] = None,
**kwargs: Any
) -> AsyncLROPoller[None]:
"""Break volume replication.
@@ -946,17 +1040,20 @@ async def begin_break_replication( # pylint: disable=inconsistent-return-statem
:rtype: ~azure.core.polling.AsyncLROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
- polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._break_replication_initial(
+ raw_result = await self._break_replication_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -965,6 +1062,8 @@ async def begin_break_replication( # pylint: disable=inconsistent-return-statem
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -974,8 +1073,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -988,6 +1093,152 @@ def get_long_running_output(pipeline_response):
begin_break_replication.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/breakReplication"} # type: ignore
+ async def _reestablish_replication_initial( # pylint: disable=inconsistent-return-statements
+ self,
+ resource_group_name: str,
+ account_name: str,
+ pool_name: str,
+ volume_name: str,
+ body: _models.ReestablishReplicationRequest,
+ **kwargs: Any
+ ) -> None:
+ error_map = {
+ 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
+ }
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
+
+ _json = self._serialize.body(body, 'ReestablishReplicationRequest')
+
+ request = build_reestablish_replication_request_initial(
+ subscription_id=self._config.subscription_id,
+ resource_group_name=resource_group_name,
+ account_name=account_name,
+ pool_name=pool_name,
+ volume_name=volume_name,
+ api_version=api_version,
+ content_type=content_type,
+ json=_json,
+ template_url=self._reestablish_replication_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
+ )
+ request = _convert_request(request)
+ request.url = self._client.format_url(request.url) # type: ignore
+
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
+ request,
+ stream=False,
+ **kwargs
+ )
+ response = pipeline_response.http_response
+
+ if response.status_code not in [202]:
+ map_error(status_code=response.status_code, response=response, error_map=error_map)
+ raise HttpResponseError(response=response, error_format=ARMErrorFormat)
+
+ if cls:
+ return cls(pipeline_response, None, {})
+
+ _reestablish_replication_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/reestablishReplication"} # type: ignore
+
+
+ @distributed_trace_async
+ async def begin_reestablish_replication( # pylint: disable=inconsistent-return-statements
+ self,
+ resource_group_name: str,
+ account_name: str,
+ pool_name: str,
+ volume_name: str,
+ body: _models.ReestablishReplicationRequest,
+ **kwargs: Any
+ ) -> AsyncLROPoller[None]:
+ """Re-establish volume replication.
+
+ Re-establish a previously deleted replication between 2 volumes that have a common ad-hoc or
+ policy-based snapshots.
+
+ :param resource_group_name: The name of the resource group.
+ :type resource_group_name: str
+ :param account_name: The name of the NetApp account.
+ :type account_name: str
+ :param pool_name: The name of the capacity pool.
+ :type pool_name: str
+ :param volume_name: The name of the volume.
+ :type volume_name: str
+ :param body: body for the id of the source volume.
+ :type body: ~azure.mgmt.netapp.models.ReestablishReplicationRequest
+ :keyword callable cls: A custom type or function that will be passed the direct response
+ :keyword str continuation_token: A continuation token to restart a poller from a saved state.
+ :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
+ this operation to not poll, or pass in your own initialized polling object for a personal
+ polling strategy.
+ :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
+ :keyword int polling_interval: Default waiting time between two polls for LRO operations if no
+ Retry-After header is present.
+ :return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
+ :rtype: ~azure.core.polling.AsyncLROPoller[None]
+ :raises: ~azure.core.exceptions.HttpResponseError
+ """
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[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
+ )
+ cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
+ if cont_token is None:
+ raw_result = await self._reestablish_replication_initial( # type: ignore
+ resource_group_name=resource_group_name,
+ account_name=account_name,
+ pool_name=pool_name,
+ volume_name=volume_name,
+ body=body,
+ api_version=api_version,
+ content_type=content_type,
+ cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
+ **kwargs
+ )
+ kwargs.pop('error_map', None)
+
+ def get_long_running_output(pipeline_response):
+ if cls:
+ return cls(pipeline_response, None, {})
+
+
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
+ else: polling_method = polling
+ if cont_token:
+ return AsyncLROPoller.from_continuation_token(
+ polling_method=polling_method,
+ continuation_token=cont_token,
+ client=self._client,
+ deserialization_callback=get_long_running_output
+ )
+ return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method)
+
+ begin_reestablish_replication.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/reestablishReplication"} # type: ignore
+
@distributed_trace_async
async def replication_status(
self,
@@ -996,7 +1247,7 @@ async def replication_status(
pool_name: str,
volume_name: str,
**kwargs: Any
- ) -> "_models.ReplicationStatus":
+ ) -> _models.ReplicationStatus:
"""Get volume replication status.
Get the status of the replication.
@@ -1014,13 +1265,16 @@ async def replication_status(
:rtype: ~azure.mgmt.netapp.models.ReplicationStatus
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.ReplicationStatus"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.ReplicationStatus]
request = build_replication_status_request(
@@ -1031,11 +1285,13 @@ async def replication_status(
volume_name=volume_name,
api_version=api_version,
template_url=self.replication_status.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -1064,7 +1320,7 @@ def list_replications(
pool_name: str,
volume_name: str,
**kwargs: Any
- ) -> AsyncIterable["_models.ListReplications"]:
+ ) -> AsyncIterable[_models.ListReplications]:
"""List replications for volume.
List all replications for a specified volume.
@@ -1082,13 +1338,16 @@ def list_replications(
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.netapp.models.ListReplications]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.ListReplications]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.ListReplications"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -1100,9 +1359,11 @@ def prepare_request(next_link=None):
volume_name=volume_name,
api_version=api_version,
template_url=self.list_replications.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -1114,9 +1375,11 @@ def prepare_request(next_link=None):
volume_name=volume_name,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -1157,13 +1420,16 @@ async def _resync_replication_initial( # pylint: disable=inconsistent-return-st
volume_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_resync_replication_request_initial(
@@ -1174,11 +1440,13 @@ async def _resync_replication_initial( # pylint: disable=inconsistent-return-st
volume_name=volume_name,
api_version=api_version,
template_url=self._resync_replication_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -1229,22 +1497,27 @@ async def begin_resync_replication( # pylint: disable=inconsistent-return-state
:rtype: ~azure.core.polling.AsyncLROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._resync_replication_initial(
+ raw_result = await self._resync_replication_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
volume_name=volume_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -1254,8 +1527,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -1276,13 +1555,16 @@ async def _delete_replication_initial( # pylint: disable=inconsistent-return-st
volume_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_delete_replication_request_initial(
@@ -1293,11 +1575,13 @@ async def _delete_replication_initial( # pylint: disable=inconsistent-return-st
volume_name=volume_name,
api_version=api_version,
template_url=self._delete_replication_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -1348,22 +1632,27 @@ async def begin_delete_replication( # pylint: disable=inconsistent-return-state
:rtype: ~azure.core.polling.AsyncLROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._delete_replication_initial(
+ raw_result = await self._delete_replication_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
volume_name=volume_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -1373,8 +1662,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -1393,17 +1688,20 @@ async def _authorize_replication_initial( # pylint: disable=inconsistent-return
account_name: str,
pool_name: str,
volume_name: str,
- body: "_models.AuthorizeRequest",
+ body: _models.AuthorizeRequest,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
_json = self._serialize.body(body, 'AuthorizeRequest')
@@ -1417,11 +1715,13 @@ async def _authorize_replication_initial( # pylint: disable=inconsistent-return
content_type=content_type,
json=_json,
template_url=self._authorize_replication_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -1445,7 +1745,7 @@ async def begin_authorize_replication( # pylint: disable=inconsistent-return-st
account_name: str,
pool_name: str,
volume_name: str,
- body: "_models.AuthorizeRequest",
+ body: _models.AuthorizeRequest,
**kwargs: Any
) -> AsyncLROPoller[None]:
"""Authorize source volume replication.
@@ -1474,17 +1774,20 @@ async def begin_authorize_replication( # pylint: disable=inconsistent-return-st
:rtype: ~azure.core.polling.AsyncLROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
- polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._authorize_replication_initial(
+ raw_result = await self._authorize_replication_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -1493,6 +1796,8 @@ async def begin_authorize_replication( # pylint: disable=inconsistent-return-st
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -1502,8 +1807,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -1524,13 +1835,16 @@ async def _re_initialize_replication_initial( # pylint: disable=inconsistent-re
volume_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_re_initialize_replication_request_initial(
@@ -1541,11 +1855,13 @@ async def _re_initialize_replication_initial( # pylint: disable=inconsistent-re
volume_name=volume_name,
api_version=api_version,
template_url=self._re_initialize_replication_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -1595,22 +1911,27 @@ async def begin_re_initialize_replication( # pylint: disable=inconsistent-retur
:rtype: ~azure.core.polling.AsyncLROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._re_initialize_replication_initial(
+ raw_result = await self._re_initialize_replication_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
volume_name=volume_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -1620,8 +1941,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -1640,17 +1967,20 @@ async def _pool_change_initial( # pylint: disable=inconsistent-return-statement
account_name: str,
pool_name: str,
volume_name: str,
- body: "_models.PoolChangeRequest",
+ body: _models.PoolChangeRequest,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
_json = self._serialize.body(body, 'PoolChangeRequest')
@@ -1664,11 +1994,13 @@ async def _pool_change_initial( # pylint: disable=inconsistent-return-statement
content_type=content_type,
json=_json,
template_url=self._pool_change_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -1692,7 +2024,7 @@ async def begin_pool_change( # pylint: disable=inconsistent-return-statements
account_name: str,
pool_name: str,
volume_name: str,
- body: "_models.PoolChangeRequest",
+ body: _models.PoolChangeRequest,
**kwargs: Any
) -> AsyncLROPoller[None]:
"""Change pool for volume.
@@ -1721,17 +2053,20 @@ async def begin_pool_change( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.AsyncLROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
- polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._pool_change_initial(
+ raw_result = await self._pool_change_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -1740,6 +2075,8 @@ async def begin_pool_change( # pylint: disable=inconsistent-return-statements
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -1749,8 +2086,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -1771,13 +2114,16 @@ async def _relocate_initial( # pylint: disable=inconsistent-return-statements
volume_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_relocate_request_initial(
@@ -1788,11 +2134,13 @@ async def _relocate_initial( # pylint: disable=inconsistent-return-statements
volume_name=volume_name,
api_version=api_version,
template_url=self._relocate_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -1842,22 +2190,27 @@ async def begin_relocate( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.AsyncLROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._relocate_initial(
+ raw_result = await self._relocate_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
volume_name=volume_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -1867,8 +2220,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = AsyncARMPolling(lro_delay, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -1889,13 +2248,16 @@ async def _finalize_relocation_initial( # pylint: disable=inconsistent-return-s
volume_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_finalize_relocation_request_initial(
@@ -1906,11 +2268,13 @@ async def _finalize_relocation_initial( # pylint: disable=inconsistent-return-s
volume_name=volume_name,
api_version=api_version,
template_url=self._finalize_relocation_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -1960,22 +2324,27 @@ async def begin_finalize_relocation( # pylint: disable=inconsistent-return-stat
:rtype: ~azure.core.polling.AsyncLROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._finalize_relocation_initial(
+ raw_result = await self._finalize_relocation_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
volume_name=volume_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -1985,8 +2354,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = AsyncARMPolling(lro_delay, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
@@ -2007,13 +2382,16 @@ async def _revert_relocation_initial( # pylint: disable=inconsistent-return-sta
volume_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_revert_relocation_request_initial(
@@ -2024,11 +2402,13 @@ async def _revert_relocation_initial( # pylint: disable=inconsistent-return-sta
volume_name=volume_name,
api_version=api_version,
template_url=self._revert_relocation_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -2079,22 +2459,27 @@ async def begin_revert_relocation( # pylint: disable=inconsistent-return-statem
:rtype: ~azure.core.polling.AsyncLROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = await self._revert_relocation_initial(
+ raw_result = await self._revert_relocation_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
volume_name=volume_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -2104,8 +2489,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = AsyncARMPolling(lro_delay, **kwargs)
- elif polling is False: polling_method = AsyncNoPolling()
+ if polling is True:
+ polling_method = cast(AsyncPollingMethod, AsyncARMPolling(
+ lro_delay,
+
+
+ **kwargs
+ )) # type: AsyncPollingMethod
+ elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling())
else: polling_method = polling
if cont_token:
return AsyncLROPoller.from_continuation_token(
diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/__init__.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/__init__.py
index 90b0480a014c..a050d635b1a0 100644
--- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/__init__.py
+++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/__init__.py
@@ -45,6 +45,7 @@
from ._models_py3 import PoolChangeRequest
from ._models_py3 import ProxyResource
from ._models_py3 import QuotaAvailabilityRequest
+from ._models_py3 import ReestablishReplicationRequest
from ._models_py3 import Replication
from ._models_py3 import ReplicationObject
from ._models_py3 import ReplicationStatus
@@ -120,7 +121,9 @@
Type,
VolumeStorageToNetworkProximity,
)
-
+from ._patch import __all__ as _patch_all
+from ._patch import * # type: ignore # pylint: disable=unused-wildcard-import
+from ._patch import patch_sdk as _patch_sdk
__all__ = [
'AccountEncryption',
'ActiveDirectory',
@@ -161,6 +164,7 @@
'PoolChangeRequest',
'ProxyResource',
'QuotaAvailabilityRequest',
+ 'ReestablishReplicationRequest',
'Replication',
'ReplicationObject',
'ReplicationStatus',
@@ -233,3 +237,5 @@
'Type',
'VolumeStorageToNetworkProximity',
]
+__all__.extend([p for p in _patch_all if p not in __all__])
+_patch_sdk()
\ No newline at end of file
diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_models_py3.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_models_py3.py
index 2f215e1e7fb8..6a3ee35fc1d7 100644
--- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_models_py3.py
+++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_models_py3.py
@@ -7,11 +7,13 @@
# --------------------------------------------------------------------------
import datetime
-from typing import Dict, List, Optional, Union
+from typing import Dict, List, Optional, TYPE_CHECKING, Union
import msrest.serialization
-from ._net_app_management_client_enums import *
+if TYPE_CHECKING:
+ # pylint: disable=unused-import,ungrouped-imports
+ import __init__ as _models
class AccountEncryption(msrest.serialization.Model):
@@ -56,8 +58,8 @@ class ActiveDirectory(msrest.serialization.Model):
:ivar dns: Comma separated list of DNS server IP addresses (IPv4 only) for the Active Directory
domain.
:vartype dns: str
- :ivar status: Status of the Active Directory. Possible values include: "Created", "InUse",
- "Deleted", "Error", "Updating".
+ :ivar status: Status of the Active Directory. Known values are: "Created", "InUse", "Deleted",
+ "Error", "Updating".
:vartype status: str or ~azure.mgmt.netapp.models.ActiveDirectoryStatus
:ivar status_details: Any details in regards to the Status of the Active Directory.
:vartype status_details: str
@@ -161,7 +163,7 @@ def __init__(
ldap_over_tls: Optional[bool] = None,
allow_local_nfs_users_with_ldap: Optional[bool] = None,
encrypt_dc_connections: Optional[bool] = None,
- ldap_search_scope: Optional["LdapSearchScopeOpt"] = None,
+ ldap_search_scope: Optional["_models.LdapSearchScopeOpt"] = None,
**kwargs
):
"""
@@ -295,8 +297,7 @@ class Backup(msrest.serialization.Model):
:vartype size: long
:ivar label: Label for backup.
:vartype label: str
- :ivar backup_type: Type of backup Manual or Scheduled. Possible values include: "Manual",
- "Scheduled".
+ :ivar backup_type: Type of backup Manual or Scheduled. Known values are: "Manual", "Scheduled".
:vartype backup_type: str or ~azure.mgmt.netapp.models.BackupType
:ivar failure_reason: Failure reason.
:vartype failure_reason: str
@@ -387,8 +388,7 @@ class BackupPatch(msrest.serialization.Model):
:vartype size: long
:ivar label: Label for backup.
:vartype label: str
- :ivar backup_type: Type of backup Manual or Scheduled. Possible values include: "Manual",
- "Scheduled".
+ :ivar backup_type: Type of backup Manual or Scheduled. Known values are: "Manual", "Scheduled".
:vartype backup_type: str or ~azure.mgmt.netapp.models.BackupType
:ivar failure_reason: Failure reason.
:vartype failure_reason: str
@@ -466,7 +466,7 @@ class BackupPoliciesList(msrest.serialization.Model):
def __init__(
self,
*,
- value: Optional[List["BackupPolicy"]] = None,
+ value: Optional[List["_models.BackupPolicy"]] = None,
**kwargs
):
"""
@@ -905,7 +905,7 @@ class BackupsList(msrest.serialization.Model):
def __init__(
self,
*,
- value: Optional[List["Backup"]] = None,
+ value: Optional[List["_models.Backup"]] = None,
**kwargs
):
"""
@@ -923,11 +923,11 @@ class BackupStatus(msrest.serialization.Model):
:ivar healthy: Backup health status.
:vartype healthy: bool
- :ivar relationship_status: Status of the backup mirror relationship. Possible values include:
- "Idle", "Transferring".
+ :ivar relationship_status: Status of the backup mirror relationship. Known values are: "Idle",
+ "Transferring".
:vartype relationship_status: str or ~azure.mgmt.netapp.models.RelationshipStatus
- :ivar mirror_state: The status of the backup. Possible values include: "Uninitialized",
- "Mirrored", "Broken".
+ :ivar mirror_state: The status of the backup. Known values are: "Uninitialized", "Mirrored",
+ "Broken".
:vartype mirror_state: str or ~azure.mgmt.netapp.models.MirrorState
:ivar unhealthy_reason: Reason for the unhealthy backup relationship.
:vartype unhealthy_reason: str
@@ -1036,22 +1036,22 @@ class CapacityPool(TrackedResource):
:ivar size: Required. Provisioned size of the pool (in bytes). Allowed values are in 1TiB
chunks (value must be multiply of 4398046511104).
:vartype size: long
- :ivar service_level: Required. The service level of the file system. Possible values include:
+ :ivar service_level: Required. The service level of the file system. Known values are:
"Standard", "Premium", "Ultra", "StandardZRS". Default value: "Premium".
:vartype service_level: str or ~azure.mgmt.netapp.models.ServiceLevel
:ivar provisioning_state: Azure lifecycle management.
:vartype provisioning_state: str
- :ivar total_throughput_mibps: Total throughput of pool in Mibps.
+ :ivar total_throughput_mibps: Total throughput of pool in MiB/s.
:vartype total_throughput_mibps: float
- :ivar utilized_throughput_mibps: Utilized throughput of pool in Mibps.
+ :ivar utilized_throughput_mibps: Utilized throughput of pool in MiB/s.
:vartype utilized_throughput_mibps: float
- :ivar qos_type: The qos type of the pool. Possible values include: "Auto", "Manual".
+ :ivar qos_type: The qos type of the pool. Known values are: "Auto", "Manual".
:vartype qos_type: str or ~azure.mgmt.netapp.models.QosType
:ivar cool_access: If enabled (true) the pool can contain cool Access enabled volumes.
:vartype cool_access: bool
:ivar encryption_type: Encryption type of the capacity pool, set encryption type for data at
rest for this pool and all volumes in it. This value can only be set when creating new pool.
- Possible values include: "Single", "Double". Default value: "Single".
+ Known values are: "Single", "Double". Default value: "Single".
:vartype encryption_type: str or ~azure.mgmt.netapp.models.EncryptionType
"""
@@ -1094,11 +1094,11 @@ def __init__(
*,
location: str,
size: int = 4398046511104,
- service_level: Union[str, "ServiceLevel"] = "Premium",
+ service_level: Union[str, "_models.ServiceLevel"] = "Premium",
tags: Optional[Dict[str, str]] = None,
- qos_type: Optional[Union[str, "QosType"]] = None,
+ qos_type: Optional[Union[str, "_models.QosType"]] = None,
cool_access: Optional[bool] = False,
- encryption_type: Optional[Union[str, "EncryptionType"]] = "Single",
+ encryption_type: Optional[Union[str, "_models.EncryptionType"]] = "Single",
**kwargs
):
"""
@@ -1109,16 +1109,16 @@ def __init__(
:keyword size: Required. Provisioned size of the pool (in bytes). Allowed values are in 1TiB
chunks (value must be multiply of 4398046511104).
:paramtype size: long
- :keyword service_level: Required. The service level of the file system. Possible values
- include: "Standard", "Premium", "Ultra", "StandardZRS". Default value: "Premium".
+ :keyword service_level: Required. The service level of the file system. Known values are:
+ "Standard", "Premium", "Ultra", "StandardZRS". Default value: "Premium".
:paramtype service_level: str or ~azure.mgmt.netapp.models.ServiceLevel
- :keyword qos_type: The qos type of the pool. Possible values include: "Auto", "Manual".
+ :keyword qos_type: The qos type of the pool. Known values are: "Auto", "Manual".
:paramtype qos_type: str or ~azure.mgmt.netapp.models.QosType
:keyword cool_access: If enabled (true) the pool can contain cool Access enabled volumes.
:paramtype cool_access: bool
:keyword encryption_type: Encryption type of the capacity pool, set encryption type for data at
rest for this pool and all volumes in it. This value can only be set when creating new pool.
- Possible values include: "Single", "Double". Default value: "Single".
+ Known values are: "Single", "Double". Default value: "Single".
:paramtype encryption_type: str or ~azure.mgmt.netapp.models.EncryptionType
"""
super(CapacityPool, self).__init__(tags=tags, location=location, **kwargs)
@@ -1151,7 +1151,7 @@ class CapacityPoolList(msrest.serialization.Model):
def __init__(
self,
*,
- value: Optional[List["CapacityPool"]] = None,
+ value: Optional[List["_models.CapacityPool"]] = None,
next_link: Optional[str] = None,
**kwargs
):
@@ -1184,8 +1184,10 @@ class CapacityPoolPatch(msrest.serialization.Model):
:ivar size: Provisioned size of the pool (in bytes). Allowed values are in 1TiB chunks (value
must be multiply of 4398046511104).
:vartype size: long
- :ivar qos_type: The qos type of the pool. Possible values include: "Auto", "Manual".
+ :ivar qos_type: The qos type of the pool. Known values are: "Auto", "Manual".
:vartype qos_type: str or ~azure.mgmt.netapp.models.QosType
+ :ivar cool_access: If enabled (true) the pool can contain cool Access enabled volumes.
+ :vartype cool_access: bool
"""
_validation = {
@@ -1202,6 +1204,7 @@ class CapacityPoolPatch(msrest.serialization.Model):
'tags': {'key': 'tags', 'type': '{str}'},
'size': {'key': 'properties.size', 'type': 'long'},
'qos_type': {'key': 'properties.qosType', 'type': 'str'},
+ 'cool_access': {'key': 'properties.coolAccess', 'type': 'bool'},
}
def __init__(
@@ -1210,7 +1213,8 @@ def __init__(
location: Optional[str] = None,
tags: Optional[Dict[str, str]] = None,
size: Optional[int] = 4398046511104,
- qos_type: Optional[Union[str, "QosType"]] = None,
+ qos_type: Optional[Union[str, "_models.QosType"]] = None,
+ cool_access: Optional[bool] = None,
**kwargs
):
"""
@@ -1221,8 +1225,10 @@ def __init__(
:keyword size: Provisioned size of the pool (in bytes). Allowed values are in 1TiB chunks
(value must be multiply of 4398046511104).
:paramtype size: long
- :keyword qos_type: The qos type of the pool. Possible values include: "Auto", "Manual".
+ :keyword qos_type: The qos type of the pool. Known values are: "Auto", "Manual".
:paramtype qos_type: str or ~azure.mgmt.netapp.models.QosType
+ :keyword cool_access: If enabled (true) the pool can contain cool Access enabled volumes.
+ :paramtype cool_access: bool
"""
super(CapacityPoolPatch, self).__init__(**kwargs)
self.location = location
@@ -1232,6 +1238,7 @@ def __init__(
self.tags = tags
self.size = size
self.qos_type = qos_type
+ self.cool_access = cool_access
class CheckAvailabilityResponse(msrest.serialization.Model):
@@ -1242,8 +1249,7 @@ class CheckAvailabilityResponse(msrest.serialization.Model):
:vartype is_available: bool
:ivar reason: :code:`Invalid
` indicates the name provided does not match Azure App
Service naming requirements. :code:`AlreadyExists
` indicates that the name is
- already in use and is therefore unavailable. Possible values include: "Invalid",
- "AlreadyExists".
+ already in use and is therefore unavailable. Known values are: "Invalid", "AlreadyExists".
:vartype reason: str or ~azure.mgmt.netapp.models.InAvailabilityReasonType
:ivar message: If reason == invalid, provide the user with the reason why the given name is
invalid, and provide the resource naming requirements so that the user can select a valid name.
@@ -1262,7 +1268,7 @@ def __init__(
self,
*,
is_available: Optional[bool] = None,
- reason: Optional[Union[str, "InAvailabilityReasonType"]] = None,
+ reason: Optional[Union[str, "_models.InAvailabilityReasonType"]] = None,
message: Optional[str] = None,
**kwargs
):
@@ -1272,8 +1278,7 @@ def __init__(
:paramtype is_available: bool
:keyword reason: :code:`Invalid
` indicates the name provided does not match Azure
App Service naming requirements. :code:`AlreadyExists
` indicates that the name is
- already in use and is therefore unavailable. Possible values include: "Invalid",
- "AlreadyExists".
+ already in use and is therefore unavailable. Known values are: "Invalid", "AlreadyExists".
:paramtype reason: str or ~azure.mgmt.netapp.models.InAvailabilityReasonType
:keyword message: If reason == invalid, provide the user with the reason why the given name is
invalid, and provide the resource naming requirements so that the user can select a valid name.
@@ -1441,8 +1446,8 @@ class ExportPolicyRule(msrest.serialization.Model):
:vartype has_root_access: bool
:ivar chown_mode: This parameter specifies who is authorized to change the ownership of a file.
restricted - Only root user can change the ownership of the file. unrestricted - Non-root users
- can change ownership of files that they own. Possible values include: "Restricted",
- "Unrestricted". Default value: "Restricted".
+ can change ownership of files that they own. Known values are: "Restricted", "Unrestricted".
+ Default value: "Restricted".
:vartype chown_mode: str or ~azure.mgmt.netapp.models.ChownMode
"""
@@ -1481,7 +1486,7 @@ def __init__(
nfsv41: Optional[bool] = None,
allowed_clients: Optional[str] = None,
has_root_access: Optional[bool] = True,
- chown_mode: Optional[Union[str, "ChownMode"]] = "Restricted",
+ chown_mode: Optional[Union[str, "_models.ChownMode"]] = "Restricted",
**kwargs
):
"""
@@ -1522,7 +1527,7 @@ def __init__(
:paramtype has_root_access: bool
:keyword chown_mode: This parameter specifies who is authorized to change the ownership of a
file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root
- users can change ownership of files that they own. Possible values include: "Restricted",
+ users can change ownership of files that they own. Known values are: "Restricted",
"Unrestricted". Default value: "Restricted".
:paramtype chown_mode: str or ~azure.mgmt.netapp.models.ChownMode
"""
@@ -1685,7 +1690,7 @@ class ListReplications(msrest.serialization.Model):
def __init__(
self,
*,
- value: Optional[List["Replication"]] = None,
+ value: Optional[List["_models.Replication"]] = None,
**kwargs
):
"""
@@ -1792,13 +1797,13 @@ def __init__(
display_name: Optional[str] = None,
display_description: Optional[str] = None,
unit: Optional[str] = None,
- supported_aggregation_types: Optional[List[Union[str, "MetricAggregationType"]]] = None,
+ supported_aggregation_types: Optional[List[Union[str, "_models.MetricAggregationType"]]] = None,
supported_time_grain_types: Optional[List[str]] = None,
internal_metric_name: Optional[str] = None,
enable_regional_mdm_account: Optional[bool] = None,
source_mdm_account: Optional[str] = None,
source_mdm_namespace: Optional[str] = None,
- dimensions: Optional[List["Dimension"]] = None,
+ dimensions: Optional[List["_models.Dimension"]] = None,
aggregation_type: Optional[str] = None,
fill_gap_with_zero: Optional[bool] = None,
category: Optional[str] = None,
@@ -2106,8 +2111,8 @@ def __init__(
*,
location: str,
tags: Optional[Dict[str, str]] = None,
- active_directories: Optional[List["ActiveDirectory"]] = None,
- encryption: Optional["AccountEncryption"] = None,
+ active_directories: Optional[List["_models.ActiveDirectory"]] = None,
+ encryption: Optional["_models.AccountEncryption"] = None,
**kwargs
):
"""
@@ -2144,7 +2149,7 @@ class NetAppAccountList(msrest.serialization.Model):
def __init__(
self,
*,
- value: Optional[List["NetAppAccount"]] = None,
+ value: Optional[List["_models.NetAppAccount"]] = None,
next_link: Optional[str] = None,
**kwargs
):
@@ -2205,8 +2210,8 @@ def __init__(
*,
location: Optional[str] = None,
tags: Optional[Dict[str, str]] = None,
- active_directories: Optional[List["ActiveDirectory"]] = None,
- encryption: Optional["AccountEncryption"] = None,
+ active_directories: Optional[List["_models.ActiveDirectory"]] = None,
+ encryption: Optional["_models.AccountEncryption"] = None,
**kwargs
):
"""
@@ -2254,9 +2259,9 @@ def __init__(
self,
*,
name: Optional[str] = None,
- display: Optional["OperationDisplay"] = None,
+ display: Optional["_models.OperationDisplay"] = None,
origin: Optional[str] = None,
- service_specification: Optional["ServiceSpecification"] = None,
+ service_specification: Optional["_models.ServiceSpecification"] = None,
**kwargs
):
"""
@@ -2336,7 +2341,7 @@ class OperationListResult(msrest.serialization.Model):
def __init__(
self,
*,
- value: Optional[List["Operation"]] = None,
+ value: Optional[List["_models.Operation"]] = None,
**kwargs
):
"""
@@ -2469,7 +2474,7 @@ class QuotaAvailabilityRequest(msrest.serialization.Model):
:ivar name: Required. Name of the resource to verify.
:vartype name: str
- :ivar type: Required. Resource type used for verification. Possible values include:
+ :ivar type: Required. Resource type used for verification. Known values are:
"Microsoft.NetApp/netAppAccounts", "Microsoft.NetApp/netAppAccounts/capacityPools",
"Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots".
@@ -2494,14 +2499,14 @@ def __init__(
self,
*,
name: str,
- type: Union[str, "CheckQuotaNameResourceTypes"],
+ type: Union[str, "_models.CheckQuotaNameResourceTypes"],
resource_group: str,
**kwargs
):
"""
:keyword name: Required. Name of the resource to verify.
:paramtype name: str
- :keyword type: Required. Resource type used for verification. Possible values include:
+ :keyword type: Required. Resource type used for verification. Known values are:
"Microsoft.NetApp/netAppAccounts", "Microsoft.NetApp/netAppAccounts/capacityPools",
"Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots".
@@ -2515,16 +2520,40 @@ def __init__(
self.resource_group = resource_group
+class ReestablishReplicationRequest(msrest.serialization.Model):
+ """Re-establish request object supplied in the body of the operation.
+
+ :ivar source_volume_id: Resource id of the source volume for the replication.
+ :vartype source_volume_id: str
+ """
+
+ _attribute_map = {
+ 'source_volume_id': {'key': 'sourceVolumeId', 'type': 'str'},
+ }
+
+ def __init__(
+ self,
+ *,
+ source_volume_id: Optional[str] = None,
+ **kwargs
+ ):
+ """
+ :keyword source_volume_id: Resource id of the source volume for the replication.
+ :paramtype source_volume_id: str
+ """
+ super(ReestablishReplicationRequest, self).__init__(**kwargs)
+ self.source_volume_id = source_volume_id
+
+
class Replication(msrest.serialization.Model):
"""Replication properties.
All required parameters must be populated in order to send to Azure.
:ivar endpoint_type: Indicates whether the local volume is the source or destination for the
- Volume Replication. Possible values include: "src", "dst".
+ Volume Replication. Known values are: "src", "dst".
:vartype endpoint_type: str or ~azure.mgmt.netapp.models.EndpointType
- :ivar replication_schedule: Schedule. Possible values include: "_10minutely", "hourly",
- "daily".
+ :ivar replication_schedule: Schedule. Known values are: "_10minutely", "hourly", "daily".
:vartype replication_schedule: str or ~azure.mgmt.netapp.models.ReplicationSchedule
:ivar remote_volume_resource_id: Required. The resource ID of the remote volume.
:vartype remote_volume_resource_id: str
@@ -2547,17 +2576,16 @@ def __init__(
self,
*,
remote_volume_resource_id: str,
- endpoint_type: Optional[Union[str, "EndpointType"]] = None,
- replication_schedule: Optional[Union[str, "ReplicationSchedule"]] = None,
+ endpoint_type: Optional[Union[str, "_models.EndpointType"]] = None,
+ replication_schedule: Optional[Union[str, "_models.ReplicationSchedule"]] = None,
remote_volume_region: Optional[str] = None,
**kwargs
):
"""
:keyword endpoint_type: Indicates whether the local volume is the source or destination for the
- Volume Replication. Possible values include: "src", "dst".
+ Volume Replication. Known values are: "src", "dst".
:paramtype endpoint_type: str or ~azure.mgmt.netapp.models.EndpointType
- :keyword replication_schedule: Schedule. Possible values include: "_10minutely", "hourly",
- "daily".
+ :keyword replication_schedule: Schedule. Known values are: "_10minutely", "hourly", "daily".
:paramtype replication_schedule: str or ~azure.mgmt.netapp.models.ReplicationSchedule
:keyword remote_volume_resource_id: Required. The resource ID of the remote volume.
:paramtype remote_volume_resource_id: str
@@ -2579,10 +2607,9 @@ class ReplicationObject(msrest.serialization.Model):
:ivar replication_id: Id.
:vartype replication_id: str
:ivar endpoint_type: Indicates whether the local volume is the source or destination for the
- Volume Replication. Possible values include: "src", "dst".
+ Volume Replication. Known values are: "src", "dst".
:vartype endpoint_type: str or ~azure.mgmt.netapp.models.EndpointType
- :ivar replication_schedule: Schedule. Possible values include: "_10minutely", "hourly",
- "daily".
+ :ivar replication_schedule: Schedule. Known values are: "_10minutely", "hourly", "daily".
:vartype replication_schedule: str or ~azure.mgmt.netapp.models.ReplicationSchedule
:ivar remote_volume_resource_id: Required. The resource ID of the remote volume.
:vartype remote_volume_resource_id: str
@@ -2607,8 +2634,8 @@ def __init__(
*,
remote_volume_resource_id: str,
replication_id: Optional[str] = None,
- endpoint_type: Optional[Union[str, "EndpointType"]] = None,
- replication_schedule: Optional[Union[str, "ReplicationSchedule"]] = None,
+ endpoint_type: Optional[Union[str, "_models.EndpointType"]] = None,
+ replication_schedule: Optional[Union[str, "_models.ReplicationSchedule"]] = None,
remote_volume_region: Optional[str] = None,
**kwargs
):
@@ -2616,10 +2643,9 @@ def __init__(
:keyword replication_id: Id.
:paramtype replication_id: str
:keyword endpoint_type: Indicates whether the local volume is the source or destination for the
- Volume Replication. Possible values include: "src", "dst".
+ Volume Replication. Known values are: "src", "dst".
:paramtype endpoint_type: str or ~azure.mgmt.netapp.models.EndpointType
- :keyword replication_schedule: Schedule. Possible values include: "_10minutely", "hourly",
- "daily".
+ :keyword replication_schedule: Schedule. Known values are: "_10minutely", "hourly", "daily".
:paramtype replication_schedule: str or ~azure.mgmt.netapp.models.ReplicationSchedule
:keyword remote_volume_resource_id: Required. The resource ID of the remote volume.
:paramtype remote_volume_resource_id: str
@@ -2639,10 +2665,10 @@ class ReplicationStatus(msrest.serialization.Model):
:ivar healthy: Replication health check.
:vartype healthy: bool
- :ivar relationship_status: Status of the mirror relationship. Possible values include: "Idle",
+ :ivar relationship_status: Status of the mirror relationship. Known values are: "Idle",
"Transferring".
:vartype relationship_status: str or ~azure.mgmt.netapp.models.RelationshipStatus
- :ivar mirror_state: The status of the replication. Possible values include: "Uninitialized",
+ :ivar mirror_state: The status of the replication. Known values are: "Uninitialized",
"Mirrored", "Broken".
:vartype mirror_state: str or ~azure.mgmt.netapp.models.MirrorState
:ivar total_progress: The progress of the replication.
@@ -2663,8 +2689,8 @@ def __init__(
self,
*,
healthy: Optional[bool] = None,
- relationship_status: Optional[Union[str, "RelationshipStatus"]] = None,
- mirror_state: Optional[Union[str, "MirrorState"]] = None,
+ relationship_status: Optional[Union[str, "_models.RelationshipStatus"]] = None,
+ mirror_state: Optional[Union[str, "_models.MirrorState"]] = None,
total_progress: Optional[str] = None,
error_message: Optional[str] = None,
**kwargs
@@ -2672,10 +2698,10 @@ def __init__(
"""
:keyword healthy: Replication health check.
:paramtype healthy: bool
- :keyword relationship_status: Status of the mirror relationship. Possible values include:
- "Idle", "Transferring".
+ :keyword relationship_status: Status of the mirror relationship. Known values are: "Idle",
+ "Transferring".
:paramtype relationship_status: str or ~azure.mgmt.netapp.models.RelationshipStatus
- :keyword mirror_state: The status of the replication. Possible values include: "Uninitialized",
+ :keyword mirror_state: The status of the replication. Known values are: "Uninitialized",
"Mirrored", "Broken".
:paramtype mirror_state: str or ~azure.mgmt.netapp.models.MirrorState
:keyword total_progress: The progress of the replication.
@@ -2738,7 +2764,7 @@ class ResourceNameAvailabilityRequest(msrest.serialization.Model):
:ivar name: Required. Resource name to verify.
:vartype name: str
- :ivar type: Required. Resource type used for verification. Possible values include:
+ :ivar type: Required. Resource type used for verification. Known values are:
"Microsoft.NetApp/netAppAccounts", "Microsoft.NetApp/netAppAccounts/capacityPools",
"Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots".
@@ -2763,14 +2789,14 @@ def __init__(
self,
*,
name: str,
- type: Union[str, "CheckNameResourceTypes"],
+ type: Union[str, "_models.CheckNameResourceTypes"],
resource_group: str,
**kwargs
):
"""
:keyword name: Required. Resource name to verify.
:paramtype name: str
- :keyword type: Required. Resource type used for verification. Possible values include:
+ :keyword type: Required. Resource type used for verification. Known values are:
"Microsoft.NetApp/netAppAccounts", "Microsoft.NetApp/netAppAccounts/capacityPools",
"Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots".
@@ -2791,11 +2817,11 @@ class RestoreStatus(msrest.serialization.Model):
:ivar healthy: Restore health status.
:vartype healthy: bool
- :ivar relationship_status: Status of the restore SnapMirror relationship. Possible values
- include: "Idle", "Transferring".
+ :ivar relationship_status: Status of the restore SnapMirror relationship. Known values are:
+ "Idle", "Transferring".
:vartype relationship_status: str or ~azure.mgmt.netapp.models.RelationshipStatus
- :ivar mirror_state: The status of the restore. Possible values include: "Uninitialized",
- "Mirrored", "Broken".
+ :ivar mirror_state: The status of the restore. Known values are: "Uninitialized", "Mirrored",
+ "Broken".
:vartype mirror_state: str or ~azure.mgmt.netapp.models.MirrorState
:ivar unhealthy_reason: Reason for the unhealthy restore relationship.
:vartype unhealthy_reason: str
@@ -2855,8 +2881,8 @@ class ServiceSpecification(msrest.serialization.Model):
def __init__(
self,
*,
- metric_specifications: Optional[List["MetricSpecification"]] = None,
- log_specifications: Optional[List["LogSpecification"]] = None,
+ metric_specifications: Optional[List["_models.MetricSpecification"]] = None,
+ log_specifications: Optional[List["_models.LogSpecification"]] = None,
**kwargs
):
"""
@@ -2947,7 +2973,7 @@ class SnapshotPoliciesList(msrest.serialization.Model):
def __init__(
self,
*,
- value: Optional[List["SnapshotPolicy"]] = None,
+ value: Optional[List["_models.SnapshotPolicy"]] = None,
**kwargs
):
"""
@@ -3027,10 +3053,10 @@ def __init__(
*,
location: str,
tags: Optional[Dict[str, str]] = None,
- hourly_schedule: Optional["HourlySchedule"] = None,
- daily_schedule: Optional["DailySchedule"] = None,
- weekly_schedule: Optional["WeeklySchedule"] = None,
- monthly_schedule: Optional["MonthlySchedule"] = None,
+ hourly_schedule: Optional["_models.HourlySchedule"] = None,
+ daily_schedule: Optional["_models.DailySchedule"] = None,
+ weekly_schedule: Optional["_models.WeeklySchedule"] = None,
+ monthly_schedule: Optional["_models.MonthlySchedule"] = None,
enabled: Optional[bool] = None,
**kwargs
):
@@ -3115,10 +3141,10 @@ def __init__(
*,
location: Optional[str] = None,
tags: Optional[Dict[str, str]] = None,
- hourly_schedule: Optional["HourlySchedule"] = None,
- daily_schedule: Optional["DailySchedule"] = None,
- weekly_schedule: Optional["WeeklySchedule"] = None,
- monthly_schedule: Optional["MonthlySchedule"] = None,
+ hourly_schedule: Optional["_models.HourlySchedule"] = None,
+ daily_schedule: Optional["_models.DailySchedule"] = None,
+ weekly_schedule: Optional["_models.WeeklySchedule"] = None,
+ monthly_schedule: Optional["_models.MonthlySchedule"] = None,
enabled: Optional[bool] = None,
**kwargs
):
@@ -3207,10 +3233,10 @@ def __init__(
*,
location: Optional[str] = None,
tags: Optional[Dict[str, str]] = None,
- hourly_schedule: Optional["HourlySchedule"] = None,
- daily_schedule: Optional["DailySchedule"] = None,
- weekly_schedule: Optional["WeeklySchedule"] = None,
- monthly_schedule: Optional["MonthlySchedule"] = None,
+ hourly_schedule: Optional["_models.HourlySchedule"] = None,
+ daily_schedule: Optional["_models.DailySchedule"] = None,
+ weekly_schedule: Optional["_models.WeeklySchedule"] = None,
+ monthly_schedule: Optional["_models.MonthlySchedule"] = None,
enabled: Optional[bool] = None,
**kwargs
):
@@ -3258,7 +3284,7 @@ class SnapshotPolicyVolumeList(msrest.serialization.Model):
def __init__(
self,
*,
- value: Optional[List["Volume"]] = None,
+ value: Optional[List["_models.Volume"]] = None,
**kwargs
):
"""
@@ -3321,7 +3347,7 @@ class SnapshotsList(msrest.serialization.Model):
def __init__(
self,
*,
- value: Optional[List["Snapshot"]] = None,
+ value: Optional[List["_models.Snapshot"]] = None,
**kwargs
):
"""
@@ -3397,7 +3423,7 @@ class SubscriptionQuotaItemList(msrest.serialization.Model):
def __init__(
self,
*,
- value: Optional[List["SubscriptionQuotaItem"]] = None,
+ value: Optional[List["_models.SubscriptionQuotaItem"]] = None,
**kwargs
):
"""
@@ -3633,7 +3659,7 @@ class SubvolumesList(msrest.serialization.Model):
def __init__(
self,
*,
- value: Optional[List["SubvolumeInfo"]] = None,
+ value: Optional[List["_models.SubvolumeInfo"]] = None,
next_link: Optional[str] = None,
**kwargs
):
@@ -3653,15 +3679,15 @@ class SystemData(msrest.serialization.Model):
:ivar created_by: The identity that created the resource.
:vartype created_by: str
- :ivar created_by_type: The type of identity that created the resource. Possible values include:
+ :ivar created_by_type: The type of identity that created the resource. Known values are:
"User", "Application", "ManagedIdentity", "Key".
:vartype created_by_type: str or ~azure.mgmt.netapp.models.CreatedByType
:ivar created_at: The timestamp of resource creation (UTC).
:vartype created_at: ~datetime.datetime
:ivar last_modified_by: The identity that last modified the resource.
:vartype last_modified_by: str
- :ivar last_modified_by_type: The type of identity that last modified the resource. Possible
- values include: "User", "Application", "ManagedIdentity", "Key".
+ :ivar last_modified_by_type: The type of identity that last modified the resource. Known values
+ are: "User", "Application", "ManagedIdentity", "Key".
:vartype last_modified_by_type: str or ~azure.mgmt.netapp.models.CreatedByType
:ivar last_modified_at: The timestamp of resource last modification (UTC).
:vartype last_modified_at: ~datetime.datetime
@@ -3680,25 +3706,25 @@ def __init__(
self,
*,
created_by: Optional[str] = None,
- created_by_type: Optional[Union[str, "CreatedByType"]] = None,
+ created_by_type: Optional[Union[str, "_models.CreatedByType"]] = None,
created_at: Optional[datetime.datetime] = None,
last_modified_by: Optional[str] = None,
- last_modified_by_type: Optional[Union[str, "CreatedByType"]] = None,
+ last_modified_by_type: Optional[Union[str, "_models.CreatedByType"]] = None,
last_modified_at: Optional[datetime.datetime] = None,
**kwargs
):
"""
:keyword created_by: The identity that created the resource.
:paramtype created_by: str
- :keyword created_by_type: The type of identity that created the resource. Possible values
- include: "User", "Application", "ManagedIdentity", "Key".
+ :keyword created_by_type: The type of identity that created the resource. Known values are:
+ "User", "Application", "ManagedIdentity", "Key".
:paramtype created_by_type: str or ~azure.mgmt.netapp.models.CreatedByType
:keyword created_at: The timestamp of resource creation (UTC).
:paramtype created_at: ~datetime.datetime
:keyword last_modified_by: The identity that last modified the resource.
:paramtype last_modified_by: str
- :keyword last_modified_by_type: The type of identity that last modified the resource. Possible
- values include: "User", "Application", "ManagedIdentity", "Key".
+ :keyword last_modified_by_type: The type of identity that last modified the resource. Known
+ values are: "User", "Application", "ManagedIdentity", "Key".
:paramtype last_modified_by_type: str or ~azure.mgmt.netapp.models.CreatedByType
:keyword last_modified_at: The timestamp of resource last modification (UTC).
:paramtype last_modified_at: ~datetime.datetime
@@ -3781,7 +3807,7 @@ class VaultList(msrest.serialization.Model):
def __init__(
self,
*,
- value: Optional[List["Vault"]] = None,
+ value: Optional[List["_models.Vault"]] = None,
**kwargs
):
"""
@@ -3823,7 +3849,7 @@ class Volume(TrackedResource):
:ivar creation_token: Required. A unique file path for the volume. Used when creating mount
targets.
:vartype creation_token: str
- :ivar service_level: The service level of the file system. Possible values include: "Standard",
+ :ivar service_level: The service level of the file system. Known values are: "Standard",
"Premium", "Ultra", "StandardZRS". Default value: "Premium".
:vartype service_level: str or ~azure.mgmt.netapp.models.ServiceLevel
:ivar usage_threshold: Required. Maximum storage quota allowed for a file system in bytes. This
@@ -3845,14 +3871,14 @@ class Volume(TrackedResource):
:ivar subnet_id: Required. The Azure Resource URI for a delegated subnet. Must have the
delegation Microsoft.NetApp/volumes.
:vartype subnet_id: str
- :ivar network_features: Basic network, or Standard features available to the volume. Possible
- values include: "Basic", "Standard". Default value: "Basic".
+ :ivar network_features: Basic network, or Standard features available to the volume. Known
+ values are: "Basic", "Standard". Default value: "Basic".
:vartype network_features: str or ~azure.mgmt.netapp.models.NetworkFeatures
:ivar network_sibling_set_id: Network Sibling Set ID for the the group of volumes sharing
networking resources.
:vartype network_sibling_set_id: str
:ivar storage_to_network_proximity: Provides storage to network proximity information for the
- volume. Possible values include: "Default", "T1", "T2".
+ volume. Known values are: "Default", "T1", "T2".
:vartype storage_to_network_proximity: str or
~azure.mgmt.netapp.models.VolumeStorageToNetworkProximity
:ivar mount_targets: List of mount targets.
@@ -3872,7 +3898,7 @@ class Volume(TrackedResource):
2020-05-01 or later.
:vartype kerberos_enabled: bool
:ivar security_style: The security style of volume, default unix, defaults to ntfs for dual
- protocol or CIFS protocol. Possible values include: "ntfs", "unix". Default value: "unix".
+ protocol or CIFS protocol. Known values are: "ntfs", "unix". Default value: "unix".
:vartype security_style: str or ~azure.mgmt.netapp.models.SecurityStyle
:ivar smb_encryption: Enables encryption for in-flight smb3 data. Only applicable for
SMB/DualProtocol volume. To be used with swagger version 2020-08-01 or later.
@@ -3880,13 +3906,18 @@ class Volume(TrackedResource):
:ivar smb_continuously_available: Enables continuously available share property for smb volume.
Only applicable for SMB volume.
:vartype smb_continuously_available: bool
- :ivar throughput_mibps: Maximum throughput in Mibps that can be achieved by this volume and
+ :ivar throughput_mibps: Maximum throughput in MiB/s that can be achieved by this volume and
this will be accepted as input only for manual qosType volume.
:vartype throughput_mibps: float
- :ivar encryption_key_source: Source of key used to encrypt data in volume. Possible values
- (case-insensitive) are: 'Microsoft.NetApp'. Possible values include: "Microsoft.NetApp".
- Default value: "Microsoft.NetApp".
+ :ivar encryption_key_source: Source of key used to encrypt data in volume. Applicable if NetApp
+ account has encryption.keySource = 'Microsoft.KeyVault'. Possible values (case-insensitive)
+ are: 'Microsoft.NetApp, Microsoft.KeyVault'. Known values are: "Microsoft.NetApp",
+ "Microsoft.KeyVault". Default value: "Microsoft.NetApp".
:vartype encryption_key_source: str or ~azure.mgmt.netapp.models.EncryptionKeySource
+ :ivar key_vault_private_endpoint_resource_id: The resource ID of private endpoint for KeyVault.
+ It must reside in the same VNET as the volume. Only applicable if encryptionKeySource =
+ 'Microsoft.KeyVault'.
+ :vartype key_vault_private_endpoint_resource_id: str
:ivar ldap_enabled: Specifies whether LDAP is enabled or not for a given NFS volume.
:vartype ldap_enabled: bool
:ivar cool_access: Specifies whether Cool Access(tiering) is enabled for the volume.
@@ -3907,7 +3938,7 @@ class Volume(TrackedResource):
during cloning.
:vartype clone_progress: int
:ivar avs_data_store: Specifies whether the volume is enabled for Azure VMware Solution (AVS)
- datastore purpose. Possible values include: "Enabled", "Disabled". Default value: "Disabled".
+ datastore purpose. Known values are: "Enabled", "Disabled". Default value: "Disabled".
:vartype avs_data_store: str or ~azure.mgmt.netapp.models.AvsDataStore
:ivar is_default_quota_enabled: Specifies if default quota is enabled for the volume.
:vartype is_default_quota_enabled: bool
@@ -3938,7 +3969,7 @@ class Volume(TrackedResource):
:ivar placement_rules: Application specific placement rules for the particular volume.
:vartype placement_rules: list[~azure.mgmt.netapp.models.PlacementKeyValuePairs]
:ivar enable_subvolumes: Flag indicating whether subvolume operations are enabled on the
- volume. Possible values include: "Enabled", "Disabled". Default value: "Disabled".
+ volume. Known values are: "Enabled", "Disabled". Default value: "Disabled".
:vartype enable_subvolumes: str or ~azure.mgmt.netapp.models.EnableSubvolumes
"""
@@ -4003,6 +4034,7 @@ class Volume(TrackedResource):
'smb_continuously_available': {'key': 'properties.smbContinuouslyAvailable', 'type': 'bool'},
'throughput_mibps': {'key': 'properties.throughputMibps', 'type': 'float'},
'encryption_key_source': {'key': 'properties.encryptionKeySource', 'type': 'str'},
+ 'key_vault_private_endpoint_resource_id': {'key': 'properties.keyVaultPrivateEndpointResourceId', 'type': 'str'},
'ldap_enabled': {'key': 'properties.ldapEnabled', 'type': 'bool'},
'cool_access': {'key': 'properties.coolAccess', 'type': 'bool'},
'coolness_period': {'key': 'properties.coolnessPeriod', 'type': 'int'},
@@ -4032,35 +4064,36 @@ def __init__(
subnet_id: str,
tags: Optional[Dict[str, str]] = None,
zones: Optional[List[str]] = None,
- service_level: Optional[Union[str, "ServiceLevel"]] = "Premium",
- export_policy: Optional["VolumePropertiesExportPolicy"] = None,
+ service_level: Optional[Union[str, "_models.ServiceLevel"]] = "Premium",
+ export_policy: Optional["_models.VolumePropertiesExportPolicy"] = None,
protocol_types: Optional[List[str]] = None,
snapshot_id: Optional[str] = None,
backup_id: Optional[str] = None,
- network_features: Optional[Union[str, "NetworkFeatures"]] = "Basic",
+ network_features: Optional[Union[str, "_models.NetworkFeatures"]] = "Basic",
volume_type: Optional[str] = None,
- data_protection: Optional["VolumePropertiesDataProtection"] = None,
+ data_protection: Optional["_models.VolumePropertiesDataProtection"] = None,
is_restoring: Optional[bool] = None,
snapshot_directory_visible: Optional[bool] = True,
kerberos_enabled: Optional[bool] = False,
- security_style: Optional[Union[str, "SecurityStyle"]] = "unix",
+ security_style: Optional[Union[str, "_models.SecurityStyle"]] = "unix",
smb_encryption: Optional[bool] = False,
smb_continuously_available: Optional[bool] = False,
throughput_mibps: Optional[float] = None,
- encryption_key_source: Optional[Union[str, "EncryptionKeySource"]] = "Microsoft.NetApp",
+ encryption_key_source: Optional[Union[str, "_models.EncryptionKeySource"]] = "Microsoft.NetApp",
+ key_vault_private_endpoint_resource_id: Optional[str] = None,
ldap_enabled: Optional[bool] = False,
cool_access: Optional[bool] = False,
coolness_period: Optional[int] = None,
unix_permissions: Optional[str] = "0770",
- avs_data_store: Optional[Union[str, "AvsDataStore"]] = "Disabled",
+ avs_data_store: Optional[Union[str, "_models.AvsDataStore"]] = "Disabled",
is_default_quota_enabled: Optional[bool] = False,
default_user_quota_in_ki_bs: Optional[int] = 0,
default_group_quota_in_ki_bs: Optional[int] = 0,
capacity_pool_resource_id: Optional[str] = None,
proximity_placement_group: Optional[str] = None,
volume_spec_name: Optional[str] = None,
- placement_rules: Optional[List["PlacementKeyValuePairs"]] = None,
- enable_subvolumes: Optional[Union[str, "EnableSubvolumes"]] = "Disabled",
+ placement_rules: Optional[List["_models.PlacementKeyValuePairs"]] = None,
+ enable_subvolumes: Optional[Union[str, "_models.EnableSubvolumes"]] = "Disabled",
**kwargs
):
"""
@@ -4073,8 +4106,8 @@ def __init__(
:keyword creation_token: Required. A unique file path for the volume. Used when creating mount
targets.
:paramtype creation_token: str
- :keyword service_level: The service level of the file system. Possible values include:
- "Standard", "Premium", "Ultra", "StandardZRS". Default value: "Premium".
+ :keyword service_level: The service level of the file system. Known values are: "Standard",
+ "Premium", "Ultra", "StandardZRS". Default value: "Premium".
:paramtype service_level: str or ~azure.mgmt.netapp.models.ServiceLevel
:keyword usage_threshold: Required. Maximum storage quota allowed for a file system in bytes.
This is a soft quota used for alerting only. Minimum size is 100 GiB. Upper limit is 100TiB.
@@ -4091,8 +4124,8 @@ def __init__(
:keyword subnet_id: Required. The Azure Resource URI for a delegated subnet. Must have the
delegation Microsoft.NetApp/volumes.
:paramtype subnet_id: str
- :keyword network_features: Basic network, or Standard features available to the volume.
- Possible values include: "Basic", "Standard". Default value: "Basic".
+ :keyword network_features: Basic network, or Standard features available to the volume. Known
+ values are: "Basic", "Standard". Default value: "Basic".
:paramtype network_features: str or ~azure.mgmt.netapp.models.NetworkFeatures
:keyword volume_type: What type of volume is this. For destination volumes in Cross Region
Replication, set type to DataProtection.
@@ -4109,7 +4142,7 @@ def __init__(
version 2020-05-01 or later.
:paramtype kerberos_enabled: bool
:keyword security_style: The security style of volume, default unix, defaults to ntfs for dual
- protocol or CIFS protocol. Possible values include: "ntfs", "unix". Default value: "unix".
+ protocol or CIFS protocol. Known values are: "ntfs", "unix". Default value: "unix".
:paramtype security_style: str or ~azure.mgmt.netapp.models.SecurityStyle
:keyword smb_encryption: Enables encryption for in-flight smb3 data. Only applicable for
SMB/DualProtocol volume. To be used with swagger version 2020-08-01 or later.
@@ -4117,13 +4150,18 @@ def __init__(
:keyword smb_continuously_available: Enables continuously available share property for smb
volume. Only applicable for SMB volume.
:paramtype smb_continuously_available: bool
- :keyword throughput_mibps: Maximum throughput in Mibps that can be achieved by this volume and
+ :keyword throughput_mibps: Maximum throughput in MiB/s that can be achieved by this volume and
this will be accepted as input only for manual qosType volume.
:paramtype throughput_mibps: float
- :keyword encryption_key_source: Source of key used to encrypt data in volume. Possible values
- (case-insensitive) are: 'Microsoft.NetApp'. Possible values include: "Microsoft.NetApp".
- Default value: "Microsoft.NetApp".
+ :keyword encryption_key_source: Source of key used to encrypt data in volume. Applicable if
+ NetApp account has encryption.keySource = 'Microsoft.KeyVault'. Possible values
+ (case-insensitive) are: 'Microsoft.NetApp, Microsoft.KeyVault'. Known values are:
+ "Microsoft.NetApp", "Microsoft.KeyVault". Default value: "Microsoft.NetApp".
:paramtype encryption_key_source: str or ~azure.mgmt.netapp.models.EncryptionKeySource
+ :keyword key_vault_private_endpoint_resource_id: The resource ID of private endpoint for
+ KeyVault. It must reside in the same VNET as the volume. Only applicable if encryptionKeySource
+ = 'Microsoft.KeyVault'.
+ :paramtype key_vault_private_endpoint_resource_id: str
:keyword ldap_enabled: Specifies whether LDAP is enabled or not for a given NFS volume.
:paramtype ldap_enabled: bool
:keyword cool_access: Specifies whether Cool Access(tiering) is enabled for the volume.
@@ -4139,8 +4177,7 @@ def __init__(
users.
:paramtype unix_permissions: str
:keyword avs_data_store: Specifies whether the volume is enabled for Azure VMware Solution
- (AVS) datastore purpose. Possible values include: "Enabled", "Disabled". Default value:
- "Disabled".
+ (AVS) datastore purpose. Known values are: "Enabled", "Disabled". Default value: "Disabled".
:paramtype avs_data_store: str or ~azure.mgmt.netapp.models.AvsDataStore
:keyword is_default_quota_enabled: Specifies if default quota is enabled for the volume.
:paramtype is_default_quota_enabled: bool
@@ -4161,7 +4198,7 @@ def __init__(
:keyword placement_rules: Application specific placement rules for the particular volume.
:paramtype placement_rules: list[~azure.mgmt.netapp.models.PlacementKeyValuePairs]
:keyword enable_subvolumes: Flag indicating whether subvolume operations are enabled on the
- volume. Possible values include: "Enabled", "Disabled". Default value: "Disabled".
+ volume. Known values are: "Enabled", "Disabled". Default value: "Disabled".
:paramtype enable_subvolumes: str or ~azure.mgmt.netapp.models.EnableSubvolumes
"""
super(Volume, self).__init__(tags=tags, location=location, **kwargs)
@@ -4192,6 +4229,7 @@ def __init__(
self.smb_continuously_available = smb_continuously_available
self.throughput_mibps = throughput_mibps
self.encryption_key_source = encryption_key_source
+ self.key_vault_private_endpoint_resource_id = key_vault_private_endpoint_resource_id
self.ldap_enabled = ldap_enabled
self.cool_access = cool_access
self.coolness_period = coolness_period
@@ -4336,7 +4374,7 @@ def __init__(
self,
*,
location: Optional[str] = None,
- group_meta_data: Optional["VolumeGroupMetaData"] = None,
+ group_meta_data: Optional["_models.VolumeGroupMetaData"] = None,
**kwargs
):
"""
@@ -4396,8 +4434,8 @@ def __init__(
self,
*,
location: Optional[str] = None,
- group_meta_data: Optional["VolumeGroupMetaData"] = None,
- volumes: Optional[List["VolumeGroupVolumeProperties"]] = None,
+ group_meta_data: Optional["_models.VolumeGroupMetaData"] = None,
+ volumes: Optional[List["_models.VolumeGroupVolumeProperties"]] = None,
**kwargs
):
"""
@@ -4432,7 +4470,7 @@ class VolumeGroupList(msrest.serialization.Model):
def __init__(
self,
*,
- value: Optional[List["VolumeGroup"]] = None,
+ value: Optional[List["_models.VolumeGroup"]] = None,
**kwargs
):
"""
@@ -4450,7 +4488,7 @@ class VolumeGroupMetaData(msrest.serialization.Model):
:ivar group_description: Group Description.
:vartype group_description: str
- :ivar application_type: Application Type. Possible values include: "SAP-HANA".
+ :ivar application_type: Application Type. Known values are: "SAP-HANA".
:vartype application_type: str or ~azure.mgmt.netapp.models.ApplicationType
:ivar application_identifier: Application specific identifier.
:vartype application_identifier: str
@@ -4480,16 +4518,16 @@ def __init__(
self,
*,
group_description: Optional[str] = None,
- application_type: Optional[Union[str, "ApplicationType"]] = None,
+ application_type: Optional[Union[str, "_models.ApplicationType"]] = None,
application_identifier: Optional[str] = None,
- global_placement_rules: Optional[List["PlacementKeyValuePairs"]] = None,
+ global_placement_rules: Optional[List["_models.PlacementKeyValuePairs"]] = None,
deployment_spec_id: Optional[str] = None,
**kwargs
):
"""
:keyword group_description: Group Description.
:paramtype group_description: str
- :keyword application_type: Application Type. Possible values include: "SAP-HANA".
+ :keyword application_type: Application Type. Known values are: "SAP-HANA".
:paramtype application_type: str or ~azure.mgmt.netapp.models.ApplicationType
:keyword application_identifier: Application specific identifier.
:paramtype application_identifier: str
@@ -4528,7 +4566,7 @@ class VolumeGroupVolumeProperties(msrest.serialization.Model):
:ivar creation_token: Required. A unique file path for the volume. Used when creating mount
targets.
:vartype creation_token: str
- :ivar service_level: The service level of the file system. Possible values include: "Standard",
+ :ivar service_level: The service level of the file system. Known values are: "Standard",
"Premium", "Ultra", "StandardZRS". Default value: "Premium".
:vartype service_level: str or ~azure.mgmt.netapp.models.ServiceLevel
:ivar usage_threshold: Required. Maximum storage quota allowed for a file system in bytes. This
@@ -4550,14 +4588,14 @@ class VolumeGroupVolumeProperties(msrest.serialization.Model):
:ivar subnet_id: Required. The Azure Resource URI for a delegated subnet. Must have the
delegation Microsoft.NetApp/volumes.
:vartype subnet_id: str
- :ivar network_features: Basic network, or Standard features available to the volume. Possible
- values include: "Basic", "Standard". Default value: "Basic".
+ :ivar network_features: Basic network, or Standard features available to the volume. Known
+ values are: "Basic", "Standard". Default value: "Basic".
:vartype network_features: str or ~azure.mgmt.netapp.models.NetworkFeatures
:ivar network_sibling_set_id: Network Sibling Set ID for the the group of volumes sharing
networking resources.
:vartype network_sibling_set_id: str
:ivar storage_to_network_proximity: Provides storage to network proximity information for the
- volume. Possible values include: "Default", "T1", "T2".
+ volume. Known values are: "Default", "T1", "T2".
:vartype storage_to_network_proximity: str or
~azure.mgmt.netapp.models.VolumeStorageToNetworkProximity
:ivar mount_targets: List of mount targets.
@@ -4577,7 +4615,7 @@ class VolumeGroupVolumeProperties(msrest.serialization.Model):
2020-05-01 or later.
:vartype kerberos_enabled: bool
:ivar security_style: The security style of volume, default unix, defaults to ntfs for dual
- protocol or CIFS protocol. Possible values include: "ntfs", "unix". Default value: "unix".
+ protocol or CIFS protocol. Known values are: "ntfs", "unix". Default value: "unix".
:vartype security_style: str or ~azure.mgmt.netapp.models.SecurityStyle
:ivar smb_encryption: Enables encryption for in-flight smb3 data. Only applicable for
SMB/DualProtocol volume. To be used with swagger version 2020-08-01 or later.
@@ -4585,13 +4623,18 @@ class VolumeGroupVolumeProperties(msrest.serialization.Model):
:ivar smb_continuously_available: Enables continuously available share property for smb volume.
Only applicable for SMB volume.
:vartype smb_continuously_available: bool
- :ivar throughput_mibps: Maximum throughput in Mibps that can be achieved by this volume and
+ :ivar throughput_mibps: Maximum throughput in MiB/s that can be achieved by this volume and
this will be accepted as input only for manual qosType volume.
:vartype throughput_mibps: float
- :ivar encryption_key_source: Source of key used to encrypt data in volume. Possible values
- (case-insensitive) are: 'Microsoft.NetApp'. Possible values include: "Microsoft.NetApp".
- Default value: "Microsoft.NetApp".
+ :ivar encryption_key_source: Source of key used to encrypt data in volume. Applicable if NetApp
+ account has encryption.keySource = 'Microsoft.KeyVault'. Possible values (case-insensitive)
+ are: 'Microsoft.NetApp, Microsoft.KeyVault'. Known values are: "Microsoft.NetApp",
+ "Microsoft.KeyVault". Default value: "Microsoft.NetApp".
:vartype encryption_key_source: str or ~azure.mgmt.netapp.models.EncryptionKeySource
+ :ivar key_vault_private_endpoint_resource_id: The resource ID of private endpoint for KeyVault.
+ It must reside in the same VNET as the volume. Only applicable if encryptionKeySource =
+ 'Microsoft.KeyVault'.
+ :vartype key_vault_private_endpoint_resource_id: str
:ivar ldap_enabled: Specifies whether LDAP is enabled or not for a given NFS volume.
:vartype ldap_enabled: bool
:ivar cool_access: Specifies whether Cool Access(tiering) is enabled for the volume.
@@ -4612,7 +4655,7 @@ class VolumeGroupVolumeProperties(msrest.serialization.Model):
during cloning.
:vartype clone_progress: int
:ivar avs_data_store: Specifies whether the volume is enabled for Azure VMware Solution (AVS)
- datastore purpose. Possible values include: "Enabled", "Disabled". Default value: "Disabled".
+ datastore purpose. Known values are: "Enabled", "Disabled". Default value: "Disabled".
:vartype avs_data_store: str or ~azure.mgmt.netapp.models.AvsDataStore
:ivar is_default_quota_enabled: Specifies if default quota is enabled for the volume.
:vartype is_default_quota_enabled: bool
@@ -4643,7 +4686,7 @@ class VolumeGroupVolumeProperties(msrest.serialization.Model):
:ivar placement_rules: Application specific placement rules for the particular volume.
:vartype placement_rules: list[~azure.mgmt.netapp.models.PlacementKeyValuePairs]
:ivar enable_subvolumes: Flag indicating whether subvolume operations are enabled on the
- volume. Possible values include: "Enabled", "Disabled". Default value: "Disabled".
+ volume. Known values are: "Enabled", "Disabled". Default value: "Disabled".
:vartype enable_subvolumes: str or ~azure.mgmt.netapp.models.EnableSubvolumes
"""
@@ -4700,6 +4743,7 @@ class VolumeGroupVolumeProperties(msrest.serialization.Model):
'smb_continuously_available': {'key': 'properties.smbContinuouslyAvailable', 'type': 'bool'},
'throughput_mibps': {'key': 'properties.throughputMibps', 'type': 'float'},
'encryption_key_source': {'key': 'properties.encryptionKeySource', 'type': 'str'},
+ 'key_vault_private_endpoint_resource_id': {'key': 'properties.keyVaultPrivateEndpointResourceId', 'type': 'str'},
'ldap_enabled': {'key': 'properties.ldapEnabled', 'type': 'bool'},
'cool_access': {'key': 'properties.coolAccess', 'type': 'bool'},
'coolness_period': {'key': 'properties.coolnessPeriod', 'type': 'int'},
@@ -4728,35 +4772,36 @@ def __init__(
subnet_id: str,
name: Optional[str] = None,
tags: Optional[Dict[str, str]] = None,
- service_level: Optional[Union[str, "ServiceLevel"]] = "Premium",
- export_policy: Optional["VolumePropertiesExportPolicy"] = None,
+ service_level: Optional[Union[str, "_models.ServiceLevel"]] = "Premium",
+ export_policy: Optional["_models.VolumePropertiesExportPolicy"] = None,
protocol_types: Optional[List[str]] = None,
snapshot_id: Optional[str] = None,
backup_id: Optional[str] = None,
- network_features: Optional[Union[str, "NetworkFeatures"]] = "Basic",
+ network_features: Optional[Union[str, "_models.NetworkFeatures"]] = "Basic",
volume_type: Optional[str] = None,
- data_protection: Optional["VolumePropertiesDataProtection"] = None,
+ data_protection: Optional["_models.VolumePropertiesDataProtection"] = None,
is_restoring: Optional[bool] = None,
snapshot_directory_visible: Optional[bool] = True,
kerberos_enabled: Optional[bool] = False,
- security_style: Optional[Union[str, "SecurityStyle"]] = "unix",
+ security_style: Optional[Union[str, "_models.SecurityStyle"]] = "unix",
smb_encryption: Optional[bool] = False,
smb_continuously_available: Optional[bool] = False,
throughput_mibps: Optional[float] = None,
- encryption_key_source: Optional[Union[str, "EncryptionKeySource"]] = "Microsoft.NetApp",
+ encryption_key_source: Optional[Union[str, "_models.EncryptionKeySource"]] = "Microsoft.NetApp",
+ key_vault_private_endpoint_resource_id: Optional[str] = None,
ldap_enabled: Optional[bool] = False,
cool_access: Optional[bool] = False,
coolness_period: Optional[int] = None,
unix_permissions: Optional[str] = "0770",
- avs_data_store: Optional[Union[str, "AvsDataStore"]] = "Disabled",
+ avs_data_store: Optional[Union[str, "_models.AvsDataStore"]] = "Disabled",
is_default_quota_enabled: Optional[bool] = False,
default_user_quota_in_ki_bs: Optional[int] = 0,
default_group_quota_in_ki_bs: Optional[int] = 0,
capacity_pool_resource_id: Optional[str] = None,
proximity_placement_group: Optional[str] = None,
volume_spec_name: Optional[str] = None,
- placement_rules: Optional[List["PlacementKeyValuePairs"]] = None,
- enable_subvolumes: Optional[Union[str, "EnableSubvolumes"]] = "Disabled",
+ placement_rules: Optional[List["_models.PlacementKeyValuePairs"]] = None,
+ enable_subvolumes: Optional[Union[str, "_models.EnableSubvolumes"]] = "Disabled",
**kwargs
):
"""
@@ -4767,8 +4812,8 @@ def __init__(
:keyword creation_token: Required. A unique file path for the volume. Used when creating mount
targets.
:paramtype creation_token: str
- :keyword service_level: The service level of the file system. Possible values include:
- "Standard", "Premium", "Ultra", "StandardZRS". Default value: "Premium".
+ :keyword service_level: The service level of the file system. Known values are: "Standard",
+ "Premium", "Ultra", "StandardZRS". Default value: "Premium".
:paramtype service_level: str or ~azure.mgmt.netapp.models.ServiceLevel
:keyword usage_threshold: Required. Maximum storage quota allowed for a file system in bytes.
This is a soft quota used for alerting only. Minimum size is 100 GiB. Upper limit is 100TiB.
@@ -4785,8 +4830,8 @@ def __init__(
:keyword subnet_id: Required. The Azure Resource URI for a delegated subnet. Must have the
delegation Microsoft.NetApp/volumes.
:paramtype subnet_id: str
- :keyword network_features: Basic network, or Standard features available to the volume.
- Possible values include: "Basic", "Standard". Default value: "Basic".
+ :keyword network_features: Basic network, or Standard features available to the volume. Known
+ values are: "Basic", "Standard". Default value: "Basic".
:paramtype network_features: str or ~azure.mgmt.netapp.models.NetworkFeatures
:keyword volume_type: What type of volume is this. For destination volumes in Cross Region
Replication, set type to DataProtection.
@@ -4803,7 +4848,7 @@ def __init__(
version 2020-05-01 or later.
:paramtype kerberos_enabled: bool
:keyword security_style: The security style of volume, default unix, defaults to ntfs for dual
- protocol or CIFS protocol. Possible values include: "ntfs", "unix". Default value: "unix".
+ protocol or CIFS protocol. Known values are: "ntfs", "unix". Default value: "unix".
:paramtype security_style: str or ~azure.mgmt.netapp.models.SecurityStyle
:keyword smb_encryption: Enables encryption for in-flight smb3 data. Only applicable for
SMB/DualProtocol volume. To be used with swagger version 2020-08-01 or later.
@@ -4811,13 +4856,18 @@ def __init__(
:keyword smb_continuously_available: Enables continuously available share property for smb
volume. Only applicable for SMB volume.
:paramtype smb_continuously_available: bool
- :keyword throughput_mibps: Maximum throughput in Mibps that can be achieved by this volume and
+ :keyword throughput_mibps: Maximum throughput in MiB/s that can be achieved by this volume and
this will be accepted as input only for manual qosType volume.
:paramtype throughput_mibps: float
- :keyword encryption_key_source: Source of key used to encrypt data in volume. Possible values
- (case-insensitive) are: 'Microsoft.NetApp'. Possible values include: "Microsoft.NetApp".
- Default value: "Microsoft.NetApp".
+ :keyword encryption_key_source: Source of key used to encrypt data in volume. Applicable if
+ NetApp account has encryption.keySource = 'Microsoft.KeyVault'. Possible values
+ (case-insensitive) are: 'Microsoft.NetApp, Microsoft.KeyVault'. Known values are:
+ "Microsoft.NetApp", "Microsoft.KeyVault". Default value: "Microsoft.NetApp".
:paramtype encryption_key_source: str or ~azure.mgmt.netapp.models.EncryptionKeySource
+ :keyword key_vault_private_endpoint_resource_id: The resource ID of private endpoint for
+ KeyVault. It must reside in the same VNET as the volume. Only applicable if encryptionKeySource
+ = 'Microsoft.KeyVault'.
+ :paramtype key_vault_private_endpoint_resource_id: str
:keyword ldap_enabled: Specifies whether LDAP is enabled or not for a given NFS volume.
:paramtype ldap_enabled: bool
:keyword cool_access: Specifies whether Cool Access(tiering) is enabled for the volume.
@@ -4833,8 +4883,7 @@ def __init__(
users.
:paramtype unix_permissions: str
:keyword avs_data_store: Specifies whether the volume is enabled for Azure VMware Solution
- (AVS) datastore purpose. Possible values include: "Enabled", "Disabled". Default value:
- "Disabled".
+ (AVS) datastore purpose. Known values are: "Enabled", "Disabled". Default value: "Disabled".
:paramtype avs_data_store: str or ~azure.mgmt.netapp.models.AvsDataStore
:keyword is_default_quota_enabled: Specifies if default quota is enabled for the volume.
:paramtype is_default_quota_enabled: bool
@@ -4855,7 +4904,7 @@ def __init__(
:keyword placement_rules: Application specific placement rules for the particular volume.
:paramtype placement_rules: list[~azure.mgmt.netapp.models.PlacementKeyValuePairs]
:keyword enable_subvolumes: Flag indicating whether subvolume operations are enabled on the
- volume. Possible values include: "Enabled", "Disabled". Default value: "Disabled".
+ volume. Known values are: "Enabled", "Disabled". Default value: "Disabled".
:paramtype enable_subvolumes: str or ~azure.mgmt.netapp.models.EnableSubvolumes
"""
super(VolumeGroupVolumeProperties, self).__init__(**kwargs)
@@ -4888,6 +4937,7 @@ def __init__(
self.smb_continuously_available = smb_continuously_available
self.throughput_mibps = throughput_mibps
self.encryption_key_source = encryption_key_source
+ self.key_vault_private_endpoint_resource_id = key_vault_private_endpoint_resource_id
self.ldap_enabled = ldap_enabled
self.cool_access = cool_access
self.coolness_period = coolness_period
@@ -4925,7 +4975,7 @@ class VolumeList(msrest.serialization.Model):
def __init__(
self,
*,
- value: Optional[List["Volume"]] = None,
+ value: Optional[List["_models.Volume"]] = None,
next_link: Optional[str] = None,
**kwargs
):
@@ -4955,7 +5005,7 @@ class VolumePatch(msrest.serialization.Model):
:vartype type: str
:ivar tags: A set of tags. Resource tags.
:vartype tags: dict[str, str]
- :ivar service_level: The service level of the file system. Possible values include: "Standard",
+ :ivar service_level: The service level of the file system. Known values are: "Standard",
"Premium", "Ultra", "StandardZRS". Default value: "Premium".
:vartype service_level: str or ~azure.mgmt.netapp.models.ServiceLevel
:ivar usage_threshold: Maximum storage quota allowed for a file system in bytes. This is a soft
@@ -4985,6 +5035,11 @@ class VolumePatch(msrest.serialization.Model):
group. 0755 - gives read/write/execute permissions to owner and read/execute to group and other
users.
:vartype unix_permissions: str
+ :ivar cool_access: Specifies whether Cool Access(tiering) is enabled for the volume.
+ :vartype cool_access: bool
+ :ivar coolness_period: Specifies the number of days after which data that is not accessed by
+ clients will be tiered.
+ :vartype coolness_period: int
"""
_validation = {
@@ -4993,6 +5048,7 @@ class VolumePatch(msrest.serialization.Model):
'type': {'readonly': True},
'usage_threshold': {'maximum': 109951162777600, 'minimum': 107374182400},
'unix_permissions': {'max_length': 4, 'min_length': 4},
+ 'coolness_period': {'maximum': 63, 'minimum': 7},
}
_attribute_map = {
@@ -5010,6 +5066,8 @@ class VolumePatch(msrest.serialization.Model):
'default_user_quota_in_ki_bs': {'key': 'properties.defaultUserQuotaInKiBs', 'type': 'long'},
'default_group_quota_in_ki_bs': {'key': 'properties.defaultGroupQuotaInKiBs', 'type': 'long'},
'unix_permissions': {'key': 'properties.unixPermissions', 'type': 'str'},
+ 'cool_access': {'key': 'properties.coolAccess', 'type': 'bool'},
+ 'coolness_period': {'key': 'properties.coolnessPeriod', 'type': 'int'},
}
def __init__(
@@ -5017,15 +5075,17 @@ def __init__(
*,
location: Optional[str] = None,
tags: Optional[Dict[str, str]] = None,
- service_level: Optional[Union[str, "ServiceLevel"]] = "Premium",
+ service_level: Optional[Union[str, "_models.ServiceLevel"]] = "Premium",
usage_threshold: Optional[int] = 107374182400,
- export_policy: Optional["VolumePatchPropertiesExportPolicy"] = None,
+ export_policy: Optional["_models.VolumePatchPropertiesExportPolicy"] = None,
throughput_mibps: Optional[float] = None,
- data_protection: Optional["VolumePatchPropertiesDataProtection"] = None,
+ data_protection: Optional["_models.VolumePatchPropertiesDataProtection"] = None,
is_default_quota_enabled: Optional[bool] = False,
default_user_quota_in_ki_bs: Optional[int] = 0,
default_group_quota_in_ki_bs: Optional[int] = 0,
unix_permissions: Optional[str] = None,
+ cool_access: Optional[bool] = None,
+ coolness_period: Optional[int] = None,
**kwargs
):
"""
@@ -5033,8 +5093,8 @@ def __init__(
:paramtype location: str
:keyword tags: A set of tags. Resource tags.
:paramtype tags: dict[str, str]
- :keyword service_level: The service level of the file system. Possible values include:
- "Standard", "Premium", "Ultra", "StandardZRS". Default value: "Premium".
+ :keyword service_level: The service level of the file system. Known values are: "Standard",
+ "Premium", "Ultra", "StandardZRS". Default value: "Premium".
:paramtype service_level: str or ~azure.mgmt.netapp.models.ServiceLevel
:keyword usage_threshold: Maximum storage quota allowed for a file system in bytes. This is a
soft quota used for alerting only. Minimum size is 100 GiB. Upper limit is 100TiB. Specified in
@@ -5063,6 +5123,11 @@ def __init__(
group. 0755 - gives read/write/execute permissions to owner and read/execute to group and other
users.
:paramtype unix_permissions: str
+ :keyword cool_access: Specifies whether Cool Access(tiering) is enabled for the volume.
+ :paramtype cool_access: bool
+ :keyword coolness_period: Specifies the number of days after which data that is not accessed by
+ clients will be tiered.
+ :paramtype coolness_period: int
"""
super(VolumePatch, self).__init__(**kwargs)
self.location = location
@@ -5079,6 +5144,8 @@ def __init__(
self.default_user_quota_in_ki_bs = default_user_quota_in_ki_bs
self.default_group_quota_in_ki_bs = default_group_quota_in_ki_bs
self.unix_permissions = unix_permissions
+ self.cool_access = cool_access
+ self.coolness_period = coolness_period
class VolumePatchPropertiesDataProtection(msrest.serialization.Model):
@@ -5098,8 +5165,8 @@ class VolumePatchPropertiesDataProtection(msrest.serialization.Model):
def __init__(
self,
*,
- backup: Optional["VolumeBackupProperties"] = None,
- snapshot: Optional["VolumeSnapshotProperties"] = None,
+ backup: Optional["_models.VolumeBackupProperties"] = None,
+ snapshot: Optional["_models.VolumeSnapshotProperties"] = None,
**kwargs
):
"""
@@ -5127,7 +5194,7 @@ class VolumePatchPropertiesExportPolicy(msrest.serialization.Model):
def __init__(
self,
*,
- rules: Optional[List["ExportPolicyRule"]] = None,
+ rules: Optional[List["_models.ExportPolicyRule"]] = None,
**kwargs
):
"""
@@ -5158,9 +5225,9 @@ class VolumePropertiesDataProtection(msrest.serialization.Model):
def __init__(
self,
*,
- backup: Optional["VolumeBackupProperties"] = None,
- replication: Optional["ReplicationObject"] = None,
- snapshot: Optional["VolumeSnapshotProperties"] = None,
+ backup: Optional["_models.VolumeBackupProperties"] = None,
+ replication: Optional["_models.ReplicationObject"] = None,
+ snapshot: Optional["_models.VolumeSnapshotProperties"] = None,
**kwargs
):
"""
@@ -5191,7 +5258,7 @@ class VolumePropertiesExportPolicy(msrest.serialization.Model):
def __init__(
self,
*,
- rules: Optional[List["ExportPolicyRule"]] = None,
+ rules: Optional[List["_models.ExportPolicyRule"]] = None,
**kwargs
):
"""
@@ -5225,13 +5292,13 @@ class VolumeQuotaRule(TrackedResource):
:ivar location: Required. The geo-location where the resource lives.
:vartype location: str
:ivar provisioning_state: Gets the status of the VolumeQuotaRule at the time the operation was
- called. Possible values include: "Accepted", "Creating", "Patching", "Deleting", "Moving",
- "Failed", "Succeeded".
+ called. Known values are: "Accepted", "Creating", "Patching", "Deleting", "Moving", "Failed",
+ "Succeeded".
:vartype provisioning_state: str or ~azure.mgmt.netapp.models.ProvisioningState
:ivar quota_size_in_ki_bs: Size of quota.
:vartype quota_size_in_ki_bs: long
- :ivar quota_type: Type of quota. Possible values include: "DefaultUserQuota",
- "DefaultGroupQuota", "IndividualUserQuota", "IndividualGroupQuota".
+ :ivar quota_type: Type of quota. Known values are: "DefaultUserQuota", "DefaultGroupQuota",
+ "IndividualUserQuota", "IndividualGroupQuota".
:vartype quota_type: str or ~azure.mgmt.netapp.models.Type
:ivar quota_target: UserID/GroupID/SID based on the quota target type. UserID and groupID can
be found by running ‘id’ or ‘getent’ command for the user or group and SID can be found by
@@ -5267,7 +5334,7 @@ def __init__(
location: str,
tags: Optional[Dict[str, str]] = None,
quota_size_in_ki_bs: Optional[int] = None,
- quota_type: Optional[Union[str, "Type"]] = None,
+ quota_type: Optional[Union[str, "_models.Type"]] = None,
quota_target: Optional[str] = None,
**kwargs
):
@@ -5278,8 +5345,8 @@ def __init__(
:paramtype location: str
:keyword quota_size_in_ki_bs: Size of quota.
:paramtype quota_size_in_ki_bs: long
- :keyword quota_type: Type of quota. Possible values include: "DefaultUserQuota",
- "DefaultGroupQuota", "IndividualUserQuota", "IndividualGroupQuota".
+ :keyword quota_type: Type of quota. Known values are: "DefaultUserQuota", "DefaultGroupQuota",
+ "IndividualUserQuota", "IndividualGroupQuota".
:paramtype quota_type: str or ~azure.mgmt.netapp.models.Type
:keyword quota_target: UserID/GroupID/SID based on the quota target type. UserID and groupID
can be found by running ‘id’ or ‘getent’ command for the user or group and SID can be found by
@@ -5299,13 +5366,13 @@ class VolumeQuotaRulePatch(msrest.serialization.Model):
Variables are only populated by the server, and will be ignored when sending a request.
:ivar provisioning_state: Gets the status of the VolumeQuotaRule at the time the operation was
- called. Possible values include: "Accepted", "Creating", "Patching", "Deleting", "Moving",
- "Failed", "Succeeded".
+ called. Known values are: "Accepted", "Creating", "Patching", "Deleting", "Moving", "Failed",
+ "Succeeded".
:vartype provisioning_state: str or ~azure.mgmt.netapp.models.ProvisioningState
:ivar quota_size_in_ki_bs: Size of quota.
:vartype quota_size_in_ki_bs: long
- :ivar quota_type: Type of quota. Possible values include: "DefaultUserQuota",
- "DefaultGroupQuota", "IndividualUserQuota", "IndividualGroupQuota".
+ :ivar quota_type: Type of quota. Known values are: "DefaultUserQuota", "DefaultGroupQuota",
+ "IndividualUserQuota", "IndividualGroupQuota".
:vartype quota_type: str or ~azure.mgmt.netapp.models.Type
:ivar quota_target: UserID/GroupID/SID based on the quota target type. UserID and groupID can
be found by running ‘id’ or ‘getent’ command for the user or group and SID can be found by
@@ -5328,15 +5395,15 @@ def __init__(
self,
*,
quota_size_in_ki_bs: Optional[int] = None,
- quota_type: Optional[Union[str, "Type"]] = None,
+ quota_type: Optional[Union[str, "_models.Type"]] = None,
quota_target: Optional[str] = None,
**kwargs
):
"""
:keyword quota_size_in_ki_bs: Size of quota.
:paramtype quota_size_in_ki_bs: long
- :keyword quota_type: Type of quota. Possible values include: "DefaultUserQuota",
- "DefaultGroupQuota", "IndividualUserQuota", "IndividualGroupQuota".
+ :keyword quota_type: Type of quota. Known values are: "DefaultUserQuota", "DefaultGroupQuota",
+ "IndividualUserQuota", "IndividualGroupQuota".
:paramtype quota_type: str or ~azure.mgmt.netapp.models.Type
:keyword quota_target: UserID/GroupID/SID based on the quota target type. UserID and groupID
can be found by running ‘id’ or ‘getent’ command for the user or group and SID can be found by
@@ -5364,7 +5431,7 @@ class VolumeQuotaRulesList(msrest.serialization.Model):
def __init__(
self,
*,
- value: Optional[List["VolumeQuotaRule"]] = None,
+ value: Optional[List["_models.VolumeQuotaRule"]] = None,
**kwargs
):
"""
diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_net_app_management_client_enums.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_net_app_management_client_enums.py
index ac510002f50a..8ab188dd87bd 100644
--- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_net_app_management_client_enums.py
+++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_net_app_management_client_enums.py
@@ -7,11 +7,10 @@
# --------------------------------------------------------------------------
from enum import Enum
-from six import with_metaclass
from azure.core import CaseInsensitiveEnumMeta
-class ActiveDirectoryStatus(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
+class ActiveDirectoryStatus(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""Status of the Active Directory
"""
@@ -26,13 +25,13 @@ class ActiveDirectoryStatus(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
#: Active Directory Updating.
UPDATING = "Updating"
-class ApplicationType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
+class ApplicationType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""Application Type
"""
SAP_HANA = "SAP-HANA"
-class AvsDataStore(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
+class AvsDataStore(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""Specifies whether the volume is enabled for Azure VMware Solution (AVS) datastore purpose
"""
@@ -41,7 +40,7 @@ class AvsDataStore(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
#: avsDataStore is disabled.
DISABLED = "Disabled"
-class BackupType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
+class BackupType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""Type of backup Manual or Scheduled
"""
@@ -50,7 +49,7 @@ class BackupType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
#: Scheduled backup.
SCHEDULED = "Scheduled"
-class CheckNameResourceTypes(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
+class CheckNameResourceTypes(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""Resource type used for verification.
"""
@@ -59,7 +58,7 @@ class CheckNameResourceTypes(with_metaclass(CaseInsensitiveEnumMeta, str, Enum))
MICROSOFT_NET_APP_NET_APP_ACCOUNTS_CAPACITY_POOLS_VOLUMES = "Microsoft.NetApp/netAppAccounts/capacityPools/volumes"
MICROSOFT_NET_APP_NET_APP_ACCOUNTS_CAPACITY_POOLS_VOLUMES_SNAPSHOTS = "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots"
-class CheckQuotaNameResourceTypes(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
+class CheckQuotaNameResourceTypes(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""Resource type used for verification.
"""
@@ -68,7 +67,7 @@ class CheckQuotaNameResourceTypes(with_metaclass(CaseInsensitiveEnumMeta, str, E
MICROSOFT_NET_APP_NET_APP_ACCOUNTS_CAPACITY_POOLS_VOLUMES = "Microsoft.NetApp/netAppAccounts/capacityPools/volumes"
MICROSOFT_NET_APP_NET_APP_ACCOUNTS_CAPACITY_POOLS_VOLUMES_SNAPSHOTS = "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots"
-class ChownMode(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
+class ChownMode(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""This parameter specifies who is authorized to change the ownership of a file. restricted - Only
root user can change the ownership of the file. unrestricted - Non-root users can change
ownership of files that they own.
@@ -77,7 +76,7 @@ class ChownMode(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
RESTRICTED = "Restricted"
UNRESTRICTED = "Unrestricted"
-class CreatedByType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
+class CreatedByType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""The type of identity that created the resource.
"""
@@ -86,7 +85,7 @@ class CreatedByType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
MANAGED_IDENTITY = "ManagedIdentity"
KEY = "Key"
-class EnableSubvolumes(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
+class EnableSubvolumes(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""Flag indicating whether subvolume operations are enabled on the volume
"""
@@ -95,15 +94,18 @@ class EnableSubvolumes(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
#: subvolumes are not enabled.
DISABLED = "Disabled"
-class EncryptionKeySource(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
- """Source of key used to encrypt data in volume. Possible values (case-insensitive) are:
- 'Microsoft.NetApp'
+class EncryptionKeySource(str, Enum, metaclass=CaseInsensitiveEnumMeta):
+ """Source of key used to encrypt data in volume. Applicable if NetApp account has
+ encryption.keySource = 'Microsoft.KeyVault'. Possible values (case-insensitive) are:
+ 'Microsoft.NetApp, Microsoft.KeyVault'
"""
#: Microsoft-managed key encryption.
MICROSOFT_NET_APP = "Microsoft.NetApp"
+ #: Customer-managed key encryption.
+ MICROSOFT_KEY_VAULT = "Microsoft.KeyVault"
-class EncryptionType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
+class EncryptionType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""Encryption type of the capacity pool, set encryption type for data at rest for this pool and
all volumes in it. This value can only be set when creating new pool.
"""
@@ -113,14 +115,14 @@ class EncryptionType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
#: EncryptionType Double, volumes will use double encryption at rest.
DOUBLE = "Double"
-class EndpointType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
+class EndpointType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""Indicates whether the local volume is the source or destination for the Volume Replication
"""
SRC = "src"
DST = "dst"
-class InAvailabilityReasonType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
+class InAvailabilityReasonType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
""":code:`Invalid
` indicates the name provided does not match Azure App Service
naming requirements. :code:`AlreadyExists
` indicates that the name is already in
use and is therefore unavailable.
@@ -129,11 +131,11 @@ class InAvailabilityReasonType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum
INVALID = "Invalid"
ALREADY_EXISTS = "AlreadyExists"
-class MetricAggregationType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
+class MetricAggregationType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
AVERAGE = "Average"
-class MirrorState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
+class MirrorState(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""The status of the replication
"""
@@ -141,7 +143,7 @@ class MirrorState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
MIRRORED = "Mirrored"
BROKEN = "Broken"
-class NetworkFeatures(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
+class NetworkFeatures(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""Basic network, or Standard features available to the volume.
"""
@@ -150,7 +152,7 @@ class NetworkFeatures(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
#: Standard network feature.
STANDARD = "Standard"
-class ProvisioningState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
+class ProvisioningState(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""Gets the status of the VolumeQuotaRule at the time the operation was called.
"""
@@ -162,7 +164,7 @@ class ProvisioningState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
FAILED = "Failed"
SUCCEEDED = "Succeeded"
-class QosType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
+class QosType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""The qos type of the pool
"""
@@ -171,14 +173,14 @@ class QosType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
#: qos type Manual.
MANUAL = "Manual"
-class RelationshipStatus(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
+class RelationshipStatus(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""Status of the mirror relationship
"""
IDLE = "Idle"
TRANSFERRING = "Transferring"
-class ReplicationSchedule(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
+class ReplicationSchedule(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""Schedule
"""
@@ -186,14 +188,14 @@ class ReplicationSchedule(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
HOURLY = "hourly"
DAILY = "daily"
-class SecurityStyle(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
+class SecurityStyle(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""The security style of volume, default unix, defaults to ntfs for dual protocol or CIFS protocol
"""
NTFS = "ntfs"
UNIX = "unix"
-class ServiceLevel(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
+class ServiceLevel(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""The service level of the file system
"""
@@ -206,7 +208,7 @@ class ServiceLevel(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
#: Zone redundant storage service level.
STANDARD_ZRS = "StandardZRS"
-class Type(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
+class Type(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""Type of quota
"""
@@ -219,7 +221,7 @@ class Type(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
#: Individual group quota.
INDIVIDUAL_GROUP_QUOTA = "IndividualGroupQuota"
-class VolumeStorageToNetworkProximity(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
+class VolumeStorageToNetworkProximity(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""Provides storage to network proximity information for the volume.
"""
diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_patch.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_patch.py
new file mode 100644
index 000000000000..0ad201a8c586
--- /dev/null
+++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_patch.py
@@ -0,0 +1,19 @@
+# ------------------------------------
+# Copyright (c) Microsoft Corporation.
+# Licensed under the MIT License.
+# ------------------------------------
+"""Customize generated code here.
+
+Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize
+"""
+from typing import List
+
+__all__: List[str] = [] # Add all objects you want publicly available to users at this package level
+
+def patch_sdk():
+ """Do not remove from this file.
+
+ `patch_sdk` is a last resort escape hatch that allows you to do customizations
+ you can't accomplish using the techniques described in
+ https://aka.ms/azsdk/python/dpcodegen/python/customize
+ """
diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/__init__.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/__init__.py
index 7b804194eeb5..86c8adf317b2 100644
--- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/__init__.py
+++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/__init__.py
@@ -22,6 +22,9 @@
from ._volume_groups_operations import VolumeGroupsOperations
from ._subvolumes_operations import SubvolumesOperations
+from ._patch import __all__ as _patch_all
+from ._patch import * # type: ignore # pylint: disable=unused-wildcard-import
+from ._patch import patch_sdk as _patch_sdk
__all__ = [
'Operations',
'NetAppResourceOperations',
@@ -39,3 +42,5 @@
'VolumeGroupsOperations',
'SubvolumesOperations',
]
+__all__.extend([p for p in _patch_all if p not in __all__])
+_patch_sdk()
\ No newline at end of file
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 34b640f65fca..a015313f6622 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
@@ -6,7 +6,7 @@
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
-from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union
+from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union, cast
from msrest import Serializer
@@ -17,6 +17,7 @@
from azure.core.polling import LROPoller, NoPolling, PollingMethod
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from azure.mgmt.core.polling.arm_polling import ARMPolling
@@ -34,9 +35,12 @@ def build_list_request(
account_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/accountBackups") # pylint: disable=line-too-long
path_format_arguments = {
@@ -48,18 +52,16 @@ def build_list_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -71,9 +73,12 @@ def build_get_request(
backup_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/accountBackups/{backupName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -86,18 +91,16 @@ def build_get_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -109,8 +112,9 @@ def build_delete_request_initial(
backup_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/accountBackups/{backupName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -123,37 +127,34 @@ def build_delete_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
return HttpRequest(
method="DELETE",
url=_url,
- params=_query_parameters,
+ params=_params,
**kwargs
)
-class AccountBackupsOperations(object):
- """AccountBackupsOperations operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+class AccountBackupsOperations:
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.NetAppManagementClient`'s
+ :attr:`account_backups` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer):
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs):
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def list(
@@ -161,7 +162,7 @@ def list(
resource_group_name: str,
account_name: str,
**kwargs: Any
- ) -> Iterable["_models.BackupsList"]:
+ ) -> Iterable[_models.BackupsList]:
"""List Backups for a Netapp Account.
List all Backups for a Netapp Account.
@@ -175,13 +176,16 @@ def list(
:rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.netapp.models.BackupsList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.BackupsList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.BackupsList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -191,9 +195,11 @@ def prepare_request(next_link=None):
account_name=account_name,
api_version=api_version,
template_url=self.list.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -203,9 +209,11 @@ def prepare_request(next_link=None):
account_name=account_name,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -245,7 +253,7 @@ def get(
account_name: str,
backup_name: str,
**kwargs: Any
- ) -> "_models.Backup":
+ ) -> _models.Backup:
"""Get Backup for a Netapp Account.
Gets the specified backup for a Netapp Account.
@@ -261,13 +269,16 @@ def get(
:rtype: ~azure.mgmt.netapp.models.Backup
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.Backup"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.Backup]
request = build_get_request(
@@ -277,11 +288,13 @@ def get(
backup_name=backup_name,
api_version=api_version,
template_url=self.get.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -309,13 +322,16 @@ def _delete_initial( # pylint: disable=inconsistent-return-statements
backup_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_delete_request_initial(
@@ -325,11 +341,13 @@ def _delete_initial( # pylint: disable=inconsistent-return-statements
backup_name=backup_name,
api_version=api_version,
template_url=self._delete_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -376,21 +394,26 @@ def begin_delete( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.LROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._delete_initial(
+ raw_result = self._delete_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
backup_name=backup_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -400,8 +423,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
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 09cd60007973..893fe2d80e96 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
@@ -6,7 +6,7 @@
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
-from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union
+from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union, cast
from msrest import Serializer
@@ -17,13 +17,13 @@
from azure.core.polling import LROPoller, NoPolling, PollingMethod
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from azure.mgmt.core.polling.arm_polling import ARMPolling
from .. import models as _models
from .._vendor import _convert_request, _format_url_section
T = TypeVar('T')
-JSONType = Any
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]]
_SERIALIZER = Serializer()
@@ -33,9 +33,12 @@ def build_list_by_subscription_request(
subscription_id: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.NetApp/netAppAccounts")
path_format_arguments = {
@@ -45,18 +48,16 @@ def build_list_by_subscription_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -66,9 +67,12 @@ def build_list_request(
resource_group_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts") # pylint: disable=line-too-long
path_format_arguments = {
@@ -79,18 +83,16 @@ def build_list_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -101,9 +103,12 @@ def build_get_request(
account_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -115,18 +120,16 @@ def build_get_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -136,14 +139,17 @@ def build_create_or_update_request_initial(
resource_group_name: str,
account_name: str,
*,
- json: JSONType = None,
+ json: Optional[_models.NetAppAccount] = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -155,20 +161,18 @@ def build_create_or_update_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="PUT",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
@@ -181,8 +185,9 @@ def build_delete_request_initial(
account_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -194,13 +199,12 @@ def build_delete_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
return HttpRequest(
method="DELETE",
url=_url,
- params=_query_parameters,
+ params=_params,
**kwargs
)
@@ -210,14 +214,17 @@ def build_update_request_initial(
resource_group_name: str,
account_name: str,
*,
- json: JSONType = None,
+ json: Optional[_models.NetAppAccountPatch] = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -229,52 +236,48 @@ def build_update_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="PATCH",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
)
-class AccountsOperations(object):
- """AccountsOperations operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+class AccountsOperations:
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.NetAppManagementClient`'s
+ :attr:`accounts` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer):
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs):
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def list_by_subscription(
self,
**kwargs: Any
- ) -> Iterable["_models.NetAppAccountList"]:
+ ) -> Iterable[_models.NetAppAccountList]:
"""Describe all NetApp Accounts in a subscription.
List and describe all NetApp accounts in the subscription.
@@ -284,13 +287,16 @@ def list_by_subscription(
:rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.netapp.models.NetAppAccountList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.NetAppAccountList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.NetAppAccountList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -298,9 +304,11 @@ def prepare_request(next_link=None):
subscription_id=self._config.subscription_id,
api_version=api_version,
template_url=self.list_by_subscription.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -308,9 +316,11 @@ def prepare_request(next_link=None):
subscription_id=self._config.subscription_id,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -348,7 +358,7 @@ def list(
self,
resource_group_name: str,
**kwargs: Any
- ) -> Iterable["_models.NetAppAccountList"]:
+ ) -> Iterable[_models.NetAppAccountList]:
"""Describe all NetApp Accounts in a resource group.
List and describe all NetApp accounts in the resource group.
@@ -360,13 +370,16 @@ def list(
:rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.netapp.models.NetAppAccountList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.NetAppAccountList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.NetAppAccountList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -375,9 +388,11 @@ def prepare_request(next_link=None):
resource_group_name=resource_group_name,
api_version=api_version,
template_url=self.list.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -386,9 +401,11 @@ def prepare_request(next_link=None):
resource_group_name=resource_group_name,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -427,7 +444,7 @@ def get(
resource_group_name: str,
account_name: str,
**kwargs: Any
- ) -> "_models.NetAppAccount":
+ ) -> _models.NetAppAccount:
"""Describe a NetApp Account.
Get the NetApp account.
@@ -441,13 +458,16 @@ def get(
:rtype: ~azure.mgmt.netapp.models.NetAppAccount
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.NetAppAccount"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.NetAppAccount]
request = build_get_request(
@@ -456,11 +476,13 @@ def get(
account_name=account_name,
api_version=api_version,
template_url=self.get.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -485,17 +507,20 @@ def _create_or_update_initial(
self,
resource_group_name: str,
account_name: str,
- body: "_models.NetAppAccount",
+ body: _models.NetAppAccount,
**kwargs: Any
- ) -> "_models.NetAppAccount":
- cls = kwargs.pop('cls', None) # type: ClsType["_models.NetAppAccount"]
+ ) -> _models.NetAppAccount:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.NetAppAccount]
_json = self._serialize.body(body, 'NetAppAccount')
@@ -507,11 +532,13 @@ def _create_or_update_initial(
content_type=content_type,
json=_json,
template_url=self._create_or_update_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -541,9 +568,9 @@ def begin_create_or_update(
self,
resource_group_name: str,
account_name: str,
- body: "_models.NetAppAccount",
+ body: _models.NetAppAccount,
**kwargs: Any
- ) -> LROPoller["_models.NetAppAccount"]:
+ ) -> LROPoller[_models.NetAppAccount]:
"""Create or update a NetApp account.
Create or update the specified NetApp account within the resource group.
@@ -567,37 +594,47 @@ def begin_create_or_update(
:rtype: ~azure.core.polling.LROPoller[~azure.mgmt.netapp.models.NetAppAccount]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.NetAppAccount]
polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.NetAppAccount"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._create_or_update_initial(
+ raw_result = self._create_or_update_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
body=body,
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('NetAppAccount', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'azure-async-operation'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -616,13 +653,16 @@ def _delete_initial( # pylint: disable=inconsistent-return-statements
account_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_delete_request_initial(
@@ -631,11 +671,13 @@ def _delete_initial( # pylint: disable=inconsistent-return-statements
account_name=account_name,
api_version=api_version,
template_url=self._delete_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -679,20 +721,25 @@ def begin_delete( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.LROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._delete_initial(
+ raw_result = self._delete_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,
**kwargs
)
kwargs.pop('error_map', None)
@@ -702,8 +749,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -720,17 +773,20 @@ def _update_initial(
self,
resource_group_name: str,
account_name: str,
- body: "_models.NetAppAccountPatch",
+ body: _models.NetAppAccountPatch,
**kwargs: Any
- ) -> "_models.NetAppAccount":
- cls = kwargs.pop('cls', None) # type: ClsType["_models.NetAppAccount"]
+ ) -> _models.NetAppAccount:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.NetAppAccount]
_json = self._serialize.body(body, 'NetAppAccountPatch')
@@ -742,11 +798,13 @@ def _update_initial(
content_type=content_type,
json=_json,
template_url=self._update_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -776,9 +834,9 @@ def begin_update(
self,
resource_group_name: str,
account_name: str,
- body: "_models.NetAppAccountPatch",
+ body: _models.NetAppAccountPatch,
**kwargs: Any
- ) -> LROPoller["_models.NetAppAccount"]:
+ ) -> LROPoller[_models.NetAppAccount]:
"""Update a NetApp account.
Patch the specified NetApp account.
@@ -802,37 +860,47 @@ def begin_update(
:rtype: ~azure.core.polling.LROPoller[~azure.mgmt.netapp.models.NetAppAccount]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.NetAppAccount]
polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.NetAppAccount"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._update_initial(
+ raw_result = self._update_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
body=body,
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('NetAppAccount', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
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 4ce0bf25b826..2454b43bb015 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
@@ -6,7 +6,7 @@
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
-from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union
+from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union, cast
from msrest import Serializer
@@ -17,13 +17,13 @@
from azure.core.polling import LROPoller, NoPolling, PollingMethod
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from azure.mgmt.core.polling.arm_polling import ARMPolling
from .. import models as _models
from .._vendor import _convert_request, _format_url_section
T = TypeVar('T')
-JSONType = Any
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]]
_SERIALIZER = Serializer()
@@ -35,9 +35,12 @@ def build_list_request(
account_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/backupPolicies") # pylint: disable=line-too-long
path_format_arguments = {
@@ -49,18 +52,16 @@ def build_list_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -72,9 +73,12 @@ def build_get_request(
backup_policy_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/backupPolicies/{backupPolicyName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -87,18 +91,16 @@ def build_get_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -109,14 +111,17 @@ def build_create_request_initial(
account_name: str,
backup_policy_name: str,
*,
- json: JSONType = None,
+ json: Optional[_models.BackupPolicy] = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/backupPolicies/{backupPolicyName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -129,20 +134,18 @@ def build_create_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="PUT",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
@@ -155,14 +158,17 @@ def build_update_request_initial(
account_name: str,
backup_policy_name: str,
*,
- json: JSONType = None,
+ json: Optional[_models.BackupPolicyPatch] = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/backupPolicies/{backupPolicyName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -175,20 +181,18 @@ def build_update_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="PATCH",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
@@ -202,8 +206,9 @@ def build_delete_request_initial(
backup_policy_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/backupPolicies/{backupPolicyName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -216,37 +221,34 @@ def build_delete_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
return HttpRequest(
method="DELETE",
url=_url,
- params=_query_parameters,
+ params=_params,
**kwargs
)
-class BackupPoliciesOperations(object):
- """BackupPoliciesOperations operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+class BackupPoliciesOperations:
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.NetAppManagementClient`'s
+ :attr:`backup_policies` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer):
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs):
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def list(
@@ -254,7 +256,7 @@ def list(
resource_group_name: str,
account_name: str,
**kwargs: Any
- ) -> Iterable["_models.BackupPoliciesList"]:
+ ) -> Iterable[_models.BackupPoliciesList]:
"""List backup policies.
List backup policies for Netapp Account.
@@ -268,13 +270,16 @@ def list(
:rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.netapp.models.BackupPoliciesList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.BackupPoliciesList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.BackupPoliciesList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -284,9 +289,11 @@ def prepare_request(next_link=None):
account_name=account_name,
api_version=api_version,
template_url=self.list.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -296,9 +303,11 @@ def prepare_request(next_link=None):
account_name=account_name,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -338,7 +347,7 @@ def get(
account_name: str,
backup_policy_name: str,
**kwargs: Any
- ) -> "_models.BackupPolicy":
+ ) -> _models.BackupPolicy:
"""Get a backup Policy.
Get a particular backup Policy.
@@ -354,13 +363,16 @@ def get(
:rtype: ~azure.mgmt.netapp.models.BackupPolicy
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.BackupPolicy"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.BackupPolicy]
request = build_get_request(
@@ -370,11 +382,13 @@ def get(
backup_policy_name=backup_policy_name,
api_version=api_version,
template_url=self.get.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -400,17 +414,20 @@ def _create_initial(
resource_group_name: str,
account_name: str,
backup_policy_name: str,
- body: "_models.BackupPolicy",
+ body: _models.BackupPolicy,
**kwargs: Any
- ) -> Optional["_models.BackupPolicy"]:
- cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.BackupPolicy"]]
+ ) -> Optional[_models.BackupPolicy]:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[Optional[_models.BackupPolicy]]
_json = self._serialize.body(body, 'BackupPolicy')
@@ -423,11 +440,13 @@ def _create_initial(
content_type=content_type,
json=_json,
template_url=self._create_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -459,9 +478,9 @@ def begin_create(
resource_group_name: str,
account_name: str,
backup_policy_name: str,
- body: "_models.BackupPolicy",
+ body: _models.BackupPolicy,
**kwargs: Any
- ) -> LROPoller["_models.BackupPolicy"]:
+ ) -> LROPoller[_models.BackupPolicy]:
"""Create a backup policy.
Create a backup policy for Netapp Account.
@@ -487,17 +506,20 @@ def begin_create(
:rtype: ~azure.core.polling.LROPoller[~azure.mgmt.netapp.models.BackupPolicy]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.BackupPolicy]
polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.BackupPolicy"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._create_initial(
+ raw_result = self._create_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
backup_policy_name=backup_policy_name,
@@ -505,20 +527,27 @@ def begin_create(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('BackupPolicy', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'azure-async-operation'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -536,17 +565,20 @@ def _update_initial(
resource_group_name: str,
account_name: str,
backup_policy_name: str,
- body: "_models.BackupPolicyPatch",
+ body: _models.BackupPolicyPatch,
**kwargs: Any
- ) -> "_models.BackupPolicy":
- cls = kwargs.pop('cls', None) # type: ClsType["_models.BackupPolicy"]
+ ) -> _models.BackupPolicy:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.BackupPolicy]
_json = self._serialize.body(body, 'BackupPolicyPatch')
@@ -559,11 +591,13 @@ def _update_initial(
content_type=content_type,
json=_json,
template_url=self._update_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -594,9 +628,9 @@ def begin_update(
resource_group_name: str,
account_name: str,
backup_policy_name: str,
- body: "_models.BackupPolicyPatch",
+ body: _models.BackupPolicyPatch,
**kwargs: Any
- ) -> LROPoller["_models.BackupPolicy"]:
+ ) -> LROPoller[_models.BackupPolicy]:
"""Patch a backup policy.
Patch a backup policy for Netapp Account.
@@ -622,17 +656,20 @@ def begin_update(
:rtype: ~azure.core.polling.LROPoller[~azure.mgmt.netapp.models.BackupPolicy]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.BackupPolicy]
polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.BackupPolicy"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._update_initial(
+ raw_result = self._update_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
backup_policy_name=backup_policy_name,
@@ -640,20 +677,27 @@ def begin_update(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('BackupPolicy', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'azure-async-operation'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -673,13 +717,16 @@ def _delete_initial( # pylint: disable=inconsistent-return-statements
backup_policy_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_delete_request_initial(
@@ -689,11 +736,13 @@ def _delete_initial( # pylint: disable=inconsistent-return-statements
backup_policy_name=backup_policy_name,
api_version=api_version,
template_url=self._delete_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -740,21 +789,26 @@ def begin_delete( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.LROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._delete_initial(
+ raw_result = self._delete_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
backup_policy_name=backup_policy_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -764,8 +818,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
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 793b77c6f405..fd2391051916 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
@@ -6,7 +6,7 @@
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
-from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union
+from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union, cast
from msrest import Serializer
@@ -17,13 +17,13 @@
from azure.core.polling import LROPoller, NoPolling, PollingMethod
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from azure.mgmt.core.polling.arm_polling import ARMPolling
from .. import models as _models
from .._vendor import _convert_request, _format_url_section
T = TypeVar('T')
-JSONType = Any
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]]
_SERIALIZER = Serializer()
@@ -37,9 +37,12 @@ def build_get_status_request(
volume_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/backupStatus") # pylint: disable=line-too-long
path_format_arguments = {
@@ -53,18 +56,16 @@ def build_get_status_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -77,9 +78,12 @@ def build_get_volume_restore_status_request(
volume_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/restoreStatus") # pylint: disable=line-too-long
path_format_arguments = {
@@ -93,18 +97,16 @@ def build_get_volume_restore_status_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -117,9 +119,12 @@ def build_list_request(
volume_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/backups") # pylint: disable=line-too-long
path_format_arguments = {
@@ -133,18 +138,16 @@ def build_list_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -158,9 +161,12 @@ def build_get_request(
backup_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/backups/{backupName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -175,18 +181,16 @@ def build_get_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -199,14 +203,17 @@ def build_create_request_initial(
volume_name: str,
backup_name: str,
*,
- json: JSONType = None,
+ json: Optional[_models.Backup] = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/backups/{backupName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -221,20 +228,18 @@ def build_create_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="PUT",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
@@ -249,14 +254,17 @@ def build_update_request_initial(
volume_name: str,
backup_name: str,
*,
- json: JSONType = None,
+ json: Optional[_models.BackupPatch] = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/backups/{backupName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -271,20 +279,18 @@ def build_update_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="PATCH",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
@@ -300,8 +306,9 @@ def build_delete_request_initial(
backup_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/backups/{backupName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -316,37 +323,34 @@ def build_delete_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
return HttpRequest(
method="DELETE",
url=_url,
- params=_query_parameters,
+ params=_params,
**kwargs
)
-class BackupsOperations(object):
- """BackupsOperations operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+class BackupsOperations:
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.NetAppManagementClient`'s
+ :attr:`backups` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer):
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs):
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def get_status(
@@ -356,7 +360,7 @@ def get_status(
pool_name: str,
volume_name: str,
**kwargs: Any
- ) -> "_models.BackupStatus":
+ ) -> _models.BackupStatus:
"""Get volume's backup status.
Get the status of the backup for a volume.
@@ -374,13 +378,16 @@ def get_status(
:rtype: ~azure.mgmt.netapp.models.BackupStatus
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.BackupStatus"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.BackupStatus]
request = build_get_status_request(
@@ -391,11 +398,13 @@ def get_status(
volume_name=volume_name,
api_version=api_version,
template_url=self.get_status.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -424,7 +433,7 @@ def get_volume_restore_status(
pool_name: str,
volume_name: str,
**kwargs: Any
- ) -> "_models.RestoreStatus":
+ ) -> _models.RestoreStatus:
"""Get volume's restore status.
Get the status of the restore for a volume.
@@ -442,13 +451,16 @@ def get_volume_restore_status(
:rtype: ~azure.mgmt.netapp.models.RestoreStatus
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.RestoreStatus"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.RestoreStatus]
request = build_get_volume_restore_status_request(
@@ -459,11 +471,13 @@ def get_volume_restore_status(
volume_name=volume_name,
api_version=api_version,
template_url=self.get_volume_restore_status.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -492,7 +506,7 @@ def list(
pool_name: str,
volume_name: str,
**kwargs: Any
- ) -> Iterable["_models.BackupsList"]:
+ ) -> Iterable[_models.BackupsList]:
"""List Backups.
List all backups for a volume.
@@ -510,13 +524,16 @@ def list(
:rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.netapp.models.BackupsList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.BackupsList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.BackupsList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -528,9 +545,11 @@ def prepare_request(next_link=None):
volume_name=volume_name,
api_version=api_version,
template_url=self.list.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -542,9 +561,11 @@ def prepare_request(next_link=None):
volume_name=volume_name,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -586,7 +607,7 @@ def get(
volume_name: str,
backup_name: str,
**kwargs: Any
- ) -> "_models.Backup":
+ ) -> _models.Backup:
"""Get a backup.
Gets the specified backup of the volume.
@@ -606,13 +627,16 @@ def get(
:rtype: ~azure.mgmt.netapp.models.Backup
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.Backup"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.Backup]
request = build_get_request(
@@ -624,11 +648,13 @@ def get(
backup_name=backup_name,
api_version=api_version,
template_url=self.get.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -656,17 +682,20 @@ def _create_initial(
pool_name: str,
volume_name: str,
backup_name: str,
- body: "_models.Backup",
+ body: _models.Backup,
**kwargs: Any
- ) -> Optional["_models.Backup"]:
- cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.Backup"]]
+ ) -> Optional[_models.Backup]:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[Optional[_models.Backup]]
_json = self._serialize.body(body, 'Backup')
@@ -681,11 +710,13 @@ def _create_initial(
content_type=content_type,
json=_json,
template_url=self._create_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -719,9 +750,9 @@ def begin_create(
pool_name: str,
volume_name: str,
backup_name: str,
- body: "_models.Backup",
+ body: _models.Backup,
**kwargs: Any
- ) -> LROPoller["_models.Backup"]:
+ ) -> LROPoller[_models.Backup]:
"""Create a backup.
Create a backup for the volume.
@@ -750,17 +781,20 @@ def begin_create(
:rtype: ~azure.core.polling.LROPoller[~azure.mgmt.netapp.models.Backup]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.Backup]
polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.Backup"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._create_initial(
+ raw_result = self._create_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -770,20 +804,27 @@ def begin_create(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('Backup', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -803,17 +844,20 @@ def _update_initial(
pool_name: str,
volume_name: str,
backup_name: str,
- body: Optional["_models.BackupPatch"] = None,
+ body: Optional[_models.BackupPatch] = None,
**kwargs: Any
- ) -> "_models.Backup":
- cls = kwargs.pop('cls', None) # type: ClsType["_models.Backup"]
+ ) -> _models.Backup:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.Backup]
if body is not None:
_json = self._serialize.body(body, 'BackupPatch')
@@ -831,11 +875,13 @@ def _update_initial(
content_type=content_type,
json=_json,
template_url=self._update_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -868,9 +914,9 @@ def begin_update(
pool_name: str,
volume_name: str,
backup_name: str,
- body: Optional["_models.BackupPatch"] = None,
+ body: Optional[_models.BackupPatch] = None,
**kwargs: Any
- ) -> LROPoller["_models.Backup"]:
+ ) -> LROPoller[_models.Backup]:
"""Patch a backup.
Patch a backup for the volume.
@@ -899,17 +945,20 @@ def begin_update(
:rtype: ~azure.core.polling.LROPoller[~azure.mgmt.netapp.models.Backup]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.Backup]
polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.Backup"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._update_initial(
+ raw_result = self._update_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -919,20 +968,27 @@ def begin_update(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('Backup', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -954,13 +1010,16 @@ def _delete_initial( # pylint: disable=inconsistent-return-statements
backup_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_delete_request_initial(
@@ -972,11 +1031,13 @@ def _delete_initial( # pylint: disable=inconsistent-return-statements
backup_name=backup_name,
api_version=api_version,
template_url=self._delete_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -1029,16 +1090,19 @@ def begin_delete( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.LROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._delete_initial(
+ raw_result = self._delete_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -1046,6 +1110,8 @@ def begin_delete( # pylint: disable=inconsistent-return-statements
backup_name=backup_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -1055,8 +1121,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
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 c6ea0067de85..30745faac140 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
@@ -15,12 +15,12 @@
from azure.core.pipeline.transport import HttpResponse
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from .. import models as _models
from .._vendor import _convert_request, _format_url_section
T = TypeVar('T')
-JSONType = Any
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]]
_SERIALIZER = Serializer()
@@ -30,14 +30,17 @@ def build_check_name_availability_request(
subscription_id: str,
location: str,
*,
- json: JSONType = None,
+ json: Optional[_models.ResourceNameAvailabilityRequest] = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.NetApp/locations/{location}/checkNameAvailability") # pylint: disable=line-too-long
path_format_arguments = {
@@ -48,20 +51,18 @@ def build_check_name_availability_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="POST",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
@@ -72,14 +73,17 @@ def build_check_file_path_availability_request(
subscription_id: str,
location: str,
*,
- json: JSONType = None,
+ json: Optional[_models.FilePathAvailabilityRequest] = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.NetApp/locations/{location}/checkFilePathAvailability") # pylint: disable=line-too-long
path_format_arguments = {
@@ -90,20 +94,18 @@ def build_check_file_path_availability_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="POST",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
@@ -114,14 +116,17 @@ def build_check_quota_availability_request(
subscription_id: str,
location: str,
*,
- json: JSONType = None,
+ json: Optional[_models.QuotaAvailabilityRequest] = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.NetApp/locations/{location}/checkQuotaAvailability") # pylint: disable=line-too-long
path_format_arguments = {
@@ -132,46 +137,42 @@ def build_check_quota_availability_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="POST",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
)
-class NetAppResourceOperations(object):
- """NetAppResourceOperations operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+class NetAppResourceOperations:
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.NetAppManagementClient`'s
+ :attr:`net_app_resource` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer):
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs):
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def check_name_availability(
@@ -181,7 +182,7 @@ def check_name_availability(
type: Union[str, "_models.CheckNameResourceTypes"],
resource_group: str,
**kwargs: Any
- ) -> "_models.CheckAvailabilityResponse":
+ ) -> _models.CheckAvailabilityResponse:
"""Check resource name availability.
Check if a resource name is available.
@@ -199,14 +200,17 @@ def check_name_availability(
:rtype: ~azure.mgmt.netapp.models.CheckAvailabilityResponse
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.CheckAvailabilityResponse"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.CheckAvailabilityResponse]
_body = _models.ResourceNameAvailabilityRequest(name=name, type=type, resource_group=resource_group)
_json = self._serialize.body(_body, 'ResourceNameAvailabilityRequest')
@@ -218,11 +222,13 @@ def check_name_availability(
content_type=content_type,
json=_json,
template_url=self.check_name_availability.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -250,7 +256,7 @@ def check_file_path_availability(
name: str,
subnet_id: str,
**kwargs: Any
- ) -> "_models.CheckAvailabilityResponse":
+ ) -> _models.CheckAvailabilityResponse:
"""Check file path availability.
Check if a file path is available.
@@ -267,14 +273,17 @@ def check_file_path_availability(
:rtype: ~azure.mgmt.netapp.models.CheckAvailabilityResponse
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.CheckAvailabilityResponse"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.CheckAvailabilityResponse]
_body = _models.FilePathAvailabilityRequest(name=name, subnet_id=subnet_id)
_json = self._serialize.body(_body, 'FilePathAvailabilityRequest')
@@ -286,11 +295,13 @@ def check_file_path_availability(
content_type=content_type,
json=_json,
template_url=self.check_file_path_availability.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -319,7 +330,7 @@ def check_quota_availability(
type: Union[str, "_models.CheckQuotaNameResourceTypes"],
resource_group: str,
**kwargs: Any
- ) -> "_models.CheckAvailabilityResponse":
+ ) -> _models.CheckAvailabilityResponse:
"""Check quota availability.
Check if a quota is available.
@@ -337,14 +348,17 @@ def check_quota_availability(
:rtype: ~azure.mgmt.netapp.models.CheckAvailabilityResponse
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.CheckAvailabilityResponse"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.CheckAvailabilityResponse]
_body = _models.QuotaAvailabilityRequest(name=name, type=type, resource_group=resource_group)
_json = self._serialize.body(_body, 'QuotaAvailabilityRequest')
@@ -356,11 +370,13 @@ def check_quota_availability(
content_type=content_type,
json=_json,
template_url=self.check_quota_availability.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
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 0be4b03b2d72..9834eb2b6be3 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
@@ -16,6 +16,7 @@
from azure.core.pipeline.transport import HttpResponse
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from .. import models as _models
@@ -31,9 +32,12 @@ def build_list_request(
location: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.NetApp/locations/{location}/quotaLimits") # pylint: disable=line-too-long
path_format_arguments = {
@@ -44,18 +48,16 @@ def build_list_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -66,9 +68,12 @@ def build_get_request(
quota_limit_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.NetApp/locations/{location}/quotaLimits/{quotaLimitName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -80,49 +85,45 @@ def build_get_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
-class NetAppResourceQuotaLimitsOperations(object):
- """NetAppResourceQuotaLimitsOperations operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+class NetAppResourceQuotaLimitsOperations:
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.NetAppManagementClient`'s
+ :attr:`net_app_resource_quota_limits` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer):
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs):
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def list(
self,
location: str,
**kwargs: Any
- ) -> Iterable["_models.SubscriptionQuotaItemList"]:
+ ) -> Iterable[_models.SubscriptionQuotaItemList]:
"""Get quota limits.
Get the default and current limits for quotas.
@@ -135,13 +136,16 @@ def list(
:rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.netapp.models.SubscriptionQuotaItemList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SubscriptionQuotaItemList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SubscriptionQuotaItemList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -150,9 +154,11 @@ def prepare_request(next_link=None):
location=location,
api_version=api_version,
template_url=self.list.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -161,9 +167,11 @@ def prepare_request(next_link=None):
location=location,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -202,7 +210,7 @@ def get(
location: str,
quota_limit_name: str,
**kwargs: Any
- ) -> "_models.SubscriptionQuotaItem":
+ ) -> _models.SubscriptionQuotaItem:
"""Get quota limits.
Get the default and current subscription quota limit.
@@ -216,13 +224,16 @@ def get(
:rtype: ~azure.mgmt.netapp.models.SubscriptionQuotaItem
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SubscriptionQuotaItem"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SubscriptionQuotaItem]
request = build_get_request(
@@ -231,11 +242,13 @@ def get(
quota_limit_name=quota_limit_name,
api_version=api_version,
template_url=self.get.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
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 3fe6321cd0cf..ed3cf23b7809 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
@@ -16,6 +16,7 @@
from azure.core.pipeline.transport import HttpResponse
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from .. import models as _models
@@ -29,55 +30,54 @@
def build_list_request(
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/providers/Microsoft.NetApp/operations")
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
-class Operations(object):
- """Operations operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+class Operations:
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.NetAppManagementClient`'s
+ :attr:`operations` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer):
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs):
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def list(
self,
**kwargs: Any
- ) -> Iterable["_models.OperationListResult"]:
+ ) -> Iterable[_models.OperationListResult]:
"""Describes the Resource Provider.
Lists all of the available Microsoft.NetApp Rest API operations.
@@ -87,31 +87,38 @@ def list(
:rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.netapp.models.OperationListResult]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.OperationListResult]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.OperationListResult"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
request = build_list_request(
api_version=api_version,
template_url=self.list.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
request = build_list_request(
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_patch.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_patch.py
new file mode 100644
index 000000000000..0ad201a8c586
--- /dev/null
+++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_patch.py
@@ -0,0 +1,19 @@
+# ------------------------------------
+# Copyright (c) Microsoft Corporation.
+# Licensed under the MIT License.
+# ------------------------------------
+"""Customize generated code here.
+
+Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize
+"""
+from typing import List
+
+__all__: List[str] = [] # Add all objects you want publicly available to users at this package level
+
+def patch_sdk():
+ """Do not remove from this file.
+
+ `patch_sdk` is a last resort escape hatch that allows you to do customizations
+ you can't accomplish using the techniques described in
+ https://aka.ms/azsdk/python/dpcodegen/python/customize
+ """
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 6f85628ae7ed..74c9f0fdfa54 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
@@ -6,7 +6,7 @@
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
-from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union
+from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union, cast
from msrest import Serializer
@@ -17,13 +17,13 @@
from azure.core.polling import LROPoller, NoPolling, PollingMethod
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from azure.mgmt.core.polling.arm_polling import ARMPolling
from .. import models as _models
from .._vendor import _convert_request, _format_url_section
T = TypeVar('T')
-JSONType = Any
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]]
_SERIALIZER = Serializer()
@@ -35,9 +35,12 @@ def build_list_request(
account_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools") # pylint: disable=line-too-long
path_format_arguments = {
@@ -49,18 +52,16 @@ def build_list_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -72,9 +73,12 @@ def build_get_request(
pool_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -87,18 +91,16 @@ def build_get_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -109,14 +111,17 @@ def build_create_or_update_request_initial(
account_name: str,
pool_name: str,
*,
- json: JSONType = None,
+ json: Optional[_models.CapacityPool] = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -129,20 +134,18 @@ def build_create_or_update_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="PUT",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
@@ -155,14 +158,17 @@ def build_update_request_initial(
account_name: str,
pool_name: str,
*,
- json: JSONType = None,
+ json: Optional[_models.CapacityPoolPatch] = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -175,20 +181,18 @@ def build_update_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="PATCH",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
@@ -202,8 +206,9 @@ def build_delete_request_initial(
pool_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -216,37 +221,34 @@ def build_delete_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
return HttpRequest(
method="DELETE",
url=_url,
- params=_query_parameters,
+ params=_params,
**kwargs
)
-class PoolsOperations(object):
- """PoolsOperations operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+class PoolsOperations:
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.NetAppManagementClient`'s
+ :attr:`pools` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer):
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs):
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def list(
@@ -254,7 +256,7 @@ def list(
resource_group_name: str,
account_name: str,
**kwargs: Any
- ) -> Iterable["_models.CapacityPoolList"]:
+ ) -> Iterable[_models.CapacityPoolList]:
"""Describe all Capacity Pools.
List all capacity pools in the NetApp Account.
@@ -268,13 +270,16 @@ def list(
:rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.netapp.models.CapacityPoolList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.CapacityPoolList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.CapacityPoolList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -284,9 +289,11 @@ def prepare_request(next_link=None):
account_name=account_name,
api_version=api_version,
template_url=self.list.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -296,9 +303,11 @@ def prepare_request(next_link=None):
account_name=account_name,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -338,7 +347,7 @@ def get(
account_name: str,
pool_name: str,
**kwargs: Any
- ) -> "_models.CapacityPool":
+ ) -> _models.CapacityPool:
"""Describe a Capacity Pool.
Get details of the specified capacity pool.
@@ -354,13 +363,16 @@ def get(
:rtype: ~azure.mgmt.netapp.models.CapacityPool
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.CapacityPool"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.CapacityPool]
request = build_get_request(
@@ -370,11 +382,13 @@ def get(
pool_name=pool_name,
api_version=api_version,
template_url=self.get.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -400,17 +414,20 @@ def _create_or_update_initial(
resource_group_name: str,
account_name: str,
pool_name: str,
- body: "_models.CapacityPool",
+ body: _models.CapacityPool,
**kwargs: Any
- ) -> "_models.CapacityPool":
- cls = kwargs.pop('cls', None) # type: ClsType["_models.CapacityPool"]
+ ) -> _models.CapacityPool:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.CapacityPool]
_json = self._serialize.body(body, 'CapacityPool')
@@ -423,11 +440,13 @@ def _create_or_update_initial(
content_type=content_type,
json=_json,
template_url=self._create_or_update_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -458,9 +477,9 @@ def begin_create_or_update(
resource_group_name: str,
account_name: str,
pool_name: str,
- body: "_models.CapacityPool",
+ body: _models.CapacityPool,
**kwargs: Any
- ) -> LROPoller["_models.CapacityPool"]:
+ ) -> LROPoller[_models.CapacityPool]:
"""Create or Update the specified capacity pool within the resource group.
Create or Update a capacity pool.
@@ -486,17 +505,20 @@ def begin_create_or_update(
:rtype: ~azure.core.polling.LROPoller[~azure.mgmt.netapp.models.CapacityPool]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.CapacityPool]
polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.CapacityPool"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._create_or_update_initial(
+ raw_result = self._create_or_update_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -504,20 +526,27 @@ def begin_create_or_update(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('CapacityPool', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -535,17 +564,20 @@ def _update_initial(
resource_group_name: str,
account_name: str,
pool_name: str,
- body: "_models.CapacityPoolPatch",
+ body: _models.CapacityPoolPatch,
**kwargs: Any
- ) -> Optional["_models.CapacityPool"]:
- cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.CapacityPool"]]
+ ) -> Optional[_models.CapacityPool]:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[Optional[_models.CapacityPool]]
_json = self._serialize.body(body, 'CapacityPoolPatch')
@@ -558,11 +590,13 @@ def _update_initial(
content_type=content_type,
json=_json,
template_url=self._update_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -591,9 +625,9 @@ def begin_update(
resource_group_name: str,
account_name: str,
pool_name: str,
- body: "_models.CapacityPoolPatch",
+ body: _models.CapacityPoolPatch,
**kwargs: Any
- ) -> LROPoller["_models.CapacityPool"]:
+ ) -> LROPoller[_models.CapacityPool]:
"""Update a capacity pool.
Patch the specified capacity pool.
@@ -619,17 +653,20 @@ def begin_update(
:rtype: ~azure.core.polling.LROPoller[~azure.mgmt.netapp.models.CapacityPool]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.CapacityPool]
polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.CapacityPool"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._update_initial(
+ raw_result = self._update_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -637,20 +674,27 @@ def begin_update(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('CapacityPool', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -670,13 +714,16 @@ def _delete_initial( # pylint: disable=inconsistent-return-statements
pool_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_delete_request_initial(
@@ -686,11 +733,13 @@ def _delete_initial( # pylint: disable=inconsistent-return-statements
pool_name=pool_name,
api_version=api_version,
template_url=self._delete_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -737,21 +786,26 @@ def begin_delete( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.LROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._delete_initial(
+ raw_result = self._delete_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -761,8 +815,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
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 e05e6e93c1cc..e54b4aac01b8 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
@@ -6,7 +6,7 @@
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
-from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union
+from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union, cast
from msrest import Serializer
@@ -17,13 +17,13 @@
from azure.core.polling import LROPoller, NoPolling, PollingMethod
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from azure.mgmt.core.polling.arm_polling import ARMPolling
from .. import models as _models
from .._vendor import _convert_request, _format_url_section
T = TypeVar('T')
-JSONType = Any
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]]
_SERIALIZER = Serializer()
@@ -35,9 +35,12 @@ def build_list_request(
account_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/snapshotPolicies") # pylint: disable=line-too-long
path_format_arguments = {
@@ -49,18 +52,16 @@ def build_list_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -72,9 +73,12 @@ def build_get_request(
snapshot_policy_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/snapshotPolicies/{snapshotPolicyName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -87,18 +91,16 @@ def build_get_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -109,14 +111,17 @@ def build_create_request(
account_name: str,
snapshot_policy_name: str,
*,
- json: JSONType = None,
+ json: Optional[_models.SnapshotPolicy] = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/snapshotPolicies/{snapshotPolicyName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -129,20 +134,18 @@ def build_create_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="PUT",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
@@ -155,14 +158,17 @@ def build_update_request_initial(
account_name: str,
snapshot_policy_name: str,
*,
- json: JSONType = None,
+ json: Optional[_models.SnapshotPolicyPatch] = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/snapshotPolicies/{snapshotPolicyName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -175,20 +181,18 @@ def build_update_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="PATCH",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
@@ -202,8 +206,9 @@ def build_delete_request_initial(
snapshot_policy_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/snapshotPolicies/{snapshotPolicyName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -216,13 +221,12 @@ def build_delete_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
return HttpRequest(
method="DELETE",
url=_url,
- params=_query_parameters,
+ params=_params,
**kwargs
)
@@ -234,9 +238,12 @@ def build_list_volumes_request(
snapshot_policy_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/snapshotPolicies/{snapshotPolicyName}/volumes") # pylint: disable=line-too-long
path_format_arguments = {
@@ -249,42 +256,38 @@ def build_list_volumes_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
-class SnapshotPoliciesOperations(object):
- """SnapshotPoliciesOperations operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+class SnapshotPoliciesOperations:
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.NetAppManagementClient`'s
+ :attr:`snapshot_policies` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer):
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs):
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def list(
@@ -292,7 +295,7 @@ def list(
resource_group_name: str,
account_name: str,
**kwargs: Any
- ) -> Iterable["_models.SnapshotPoliciesList"]:
+ ) -> Iterable[_models.SnapshotPoliciesList]:
"""List snapshot policy.
:param resource_group_name: The name of the resource group.
@@ -305,13 +308,16 @@ def list(
:rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.netapp.models.SnapshotPoliciesList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SnapshotPoliciesList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SnapshotPoliciesList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -321,9 +327,11 @@ def prepare_request(next_link=None):
account_name=account_name,
api_version=api_version,
template_url=self.list.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -333,9 +341,11 @@ def prepare_request(next_link=None):
account_name=account_name,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -375,7 +385,7 @@ def get(
account_name: str,
snapshot_policy_name: str,
**kwargs: Any
- ) -> "_models.SnapshotPolicy":
+ ) -> _models.SnapshotPolicy:
"""Get a snapshot Policy.
:param resource_group_name: The name of the resource group.
@@ -389,13 +399,16 @@ def get(
:rtype: ~azure.mgmt.netapp.models.SnapshotPolicy
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SnapshotPolicy"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SnapshotPolicy]
request = build_get_request(
@@ -405,11 +418,13 @@ def get(
snapshot_policy_name=snapshot_policy_name,
api_version=api_version,
template_url=self.get.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -436,9 +451,9 @@ def create(
resource_group_name: str,
account_name: str,
snapshot_policy_name: str,
- body: "_models.SnapshotPolicy",
+ body: _models.SnapshotPolicy,
**kwargs: Any
- ) -> "_models.SnapshotPolicy":
+ ) -> _models.SnapshotPolicy:
"""Create a snapshot policy.
:param resource_group_name: The name of the resource group.
@@ -454,14 +469,17 @@ def create(
:rtype: ~azure.mgmt.netapp.models.SnapshotPolicy
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SnapshotPolicy"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SnapshotPolicy]
_json = self._serialize.body(body, 'SnapshotPolicy')
@@ -474,11 +492,13 @@ def create(
content_type=content_type,
json=_json,
template_url=self.create.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -508,17 +528,20 @@ def _update_initial(
resource_group_name: str,
account_name: str,
snapshot_policy_name: str,
- body: "_models.SnapshotPolicyPatch",
+ body: _models.SnapshotPolicyPatch,
**kwargs: Any
- ) -> "_models.SnapshotPolicy":
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SnapshotPolicy"]
+ ) -> _models.SnapshotPolicy:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SnapshotPolicy]
_json = self._serialize.body(body, 'SnapshotPolicyPatch')
@@ -531,11 +554,13 @@ def _update_initial(
content_type=content_type,
json=_json,
template_url=self._update_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -566,9 +591,9 @@ def begin_update(
resource_group_name: str,
account_name: str,
snapshot_policy_name: str,
- body: "_models.SnapshotPolicyPatch",
+ body: _models.SnapshotPolicyPatch,
**kwargs: Any
- ) -> LROPoller["_models.SnapshotPolicy"]:
+ ) -> LROPoller[_models.SnapshotPolicy]:
"""Patch a snapshot policy.
:param resource_group_name: The name of the resource group.
@@ -592,17 +617,20 @@ def begin_update(
:rtype: ~azure.core.polling.LROPoller[~azure.mgmt.netapp.models.SnapshotPolicy]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SnapshotPolicy]
polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SnapshotPolicy"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._update_initial(
+ raw_result = self._update_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
snapshot_policy_name=snapshot_policy_name,
@@ -610,20 +638,27 @@ def begin_update(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('SnapshotPolicy', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -643,13 +678,16 @@ def _delete_initial( # pylint: disable=inconsistent-return-statements
snapshot_policy_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_delete_request_initial(
@@ -659,11 +697,13 @@ def _delete_initial( # pylint: disable=inconsistent-return-statements
snapshot_policy_name=snapshot_policy_name,
api_version=api_version,
template_url=self._delete_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -708,21 +748,26 @@ def begin_delete( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.LROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._delete_initial(
+ raw_result = self._delete_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
snapshot_policy_name=snapshot_policy_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -732,8 +777,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -753,7 +804,7 @@ def list_volumes(
account_name: str,
snapshot_policy_name: str,
**kwargs: Any
- ) -> "_models.SnapshotPolicyVolumeList":
+ ) -> _models.SnapshotPolicyVolumeList:
"""Get volumes for snapshot policy.
Get volumes associated with snapshot policy.
@@ -769,13 +820,16 @@ def list_volumes(
:rtype: ~azure.mgmt.netapp.models.SnapshotPolicyVolumeList
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SnapshotPolicyVolumeList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SnapshotPolicyVolumeList]
request = build_list_volumes_request(
@@ -785,11 +839,13 @@ def list_volumes(
snapshot_policy_name=snapshot_policy_name,
api_version=api_version,
template_url=self.list_volumes.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
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 04bfb2e1f17a..b335d86e6815 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
@@ -6,7 +6,7 @@
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
-from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union
+from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union, cast
from msrest import Serializer
@@ -17,13 +17,13 @@
from azure.core.polling import LROPoller, NoPolling, PollingMethod
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from azure.mgmt.core.polling.arm_polling import ARMPolling
from .. import models as _models
from .._vendor import _convert_request, _format_url_section
T = TypeVar('T')
-JSONType = Any
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]]
_SERIALIZER = Serializer()
@@ -37,9 +37,12 @@ def build_list_request(
volume_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/snapshots") # pylint: disable=line-too-long
path_format_arguments = {
@@ -53,18 +56,16 @@ def build_list_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -78,9 +79,12 @@ def build_get_request(
snapshot_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/snapshots/{snapshotName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -95,18 +99,16 @@ def build_get_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -119,14 +121,17 @@ def build_create_request_initial(
volume_name: str,
snapshot_name: str,
*,
- json: JSONType = None,
+ json: Optional[_models.Snapshot] = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/snapshots/{snapshotName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -141,20 +146,18 @@ def build_create_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="PUT",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
@@ -169,14 +172,17 @@ def build_update_request_initial(
volume_name: str,
snapshot_name: str,
*,
- json: JSONType = None,
+ json: Any = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/snapshots/{snapshotName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -191,20 +197,18 @@ def build_update_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="PATCH",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
@@ -220,8 +224,9 @@ def build_delete_request_initial(
snapshot_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/snapshots/{snapshotName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -236,13 +241,12 @@ def build_delete_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
return HttpRequest(
method="DELETE",
url=_url,
- params=_query_parameters,
+ params=_params,
**kwargs
)
@@ -255,13 +259,15 @@ def build_restore_files_request_initial(
volume_name: str,
snapshot_name: str,
*,
- json: JSONType = None,
+ json: Optional[_models.SnapshotRestoreFiles] = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/snapshots/{snapshotName}/restoreFiles") # pylint: disable=line-too-long
path_format_arguments = {
@@ -276,45 +282,41 @@ def build_restore_files_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
return HttpRequest(
method="POST",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
)
-class SnapshotsOperations(object):
- """SnapshotsOperations operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+class SnapshotsOperations:
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.NetAppManagementClient`'s
+ :attr:`snapshots` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer):
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs):
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def list(
@@ -324,7 +326,7 @@ def list(
pool_name: str,
volume_name: str,
**kwargs: Any
- ) -> Iterable["_models.SnapshotsList"]:
+ ) -> Iterable[_models.SnapshotsList]:
"""Describe all snapshots.
List all snapshots associated with the volume.
@@ -342,13 +344,16 @@ def list(
:rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.netapp.models.SnapshotsList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SnapshotsList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SnapshotsList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -360,9 +365,11 @@ def prepare_request(next_link=None):
volume_name=volume_name,
api_version=api_version,
template_url=self.list.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -374,9 +381,11 @@ def prepare_request(next_link=None):
volume_name=volume_name,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -418,7 +427,7 @@ def get(
volume_name: str,
snapshot_name: str,
**kwargs: Any
- ) -> "_models.Snapshot":
+ ) -> _models.Snapshot:
"""Describe a snapshot.
Get details of the specified snapshot.
@@ -438,13 +447,16 @@ def get(
:rtype: ~azure.mgmt.netapp.models.Snapshot
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.Snapshot"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.Snapshot]
request = build_get_request(
@@ -456,11 +468,13 @@ def get(
snapshot_name=snapshot_name,
api_version=api_version,
template_url=self.get.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -488,17 +502,20 @@ def _create_initial(
pool_name: str,
volume_name: str,
snapshot_name: str,
- body: "_models.Snapshot",
+ body: _models.Snapshot,
**kwargs: Any
- ) -> Optional["_models.Snapshot"]:
- cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.Snapshot"]]
+ ) -> Optional[_models.Snapshot]:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[Optional[_models.Snapshot]]
_json = self._serialize.body(body, 'Snapshot')
@@ -513,11 +530,13 @@ def _create_initial(
content_type=content_type,
json=_json,
template_url=self._create_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -548,9 +567,9 @@ def begin_create(
pool_name: str,
volume_name: str,
snapshot_name: str,
- body: "_models.Snapshot",
+ body: _models.Snapshot,
**kwargs: Any
- ) -> LROPoller["_models.Snapshot"]:
+ ) -> LROPoller[_models.Snapshot]:
"""Create a snapshot.
Create the specified snapshot within the given volume.
@@ -579,17 +598,20 @@ def begin_create(
:rtype: ~azure.core.polling.LROPoller[~azure.mgmt.netapp.models.Snapshot]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.Snapshot]
polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.Snapshot"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._create_initial(
+ raw_result = self._create_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -599,20 +621,27 @@ def begin_create(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('Snapshot', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -634,15 +663,18 @@ def _update_initial(
snapshot_name: str,
body: Any,
**kwargs: Any
- ) -> Optional["_models.Snapshot"]:
- cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.Snapshot"]]
+ ) -> Optional[_models.Snapshot]:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[Optional[_models.Snapshot]]
_json = self._serialize.body(body, 'object')
@@ -657,11 +689,13 @@ def _update_initial(
content_type=content_type,
json=_json,
template_url=self._update_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -694,7 +728,7 @@ def begin_update(
snapshot_name: str,
body: Any,
**kwargs: Any
- ) -> LROPoller["_models.Snapshot"]:
+ ) -> LROPoller[_models.Snapshot]:
"""Update a snapshot.
Patch a snapshot.
@@ -723,17 +757,20 @@ def begin_update(
:rtype: ~azure.core.polling.LROPoller[~azure.mgmt.netapp.models.Snapshot]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.Snapshot]
polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.Snapshot"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._update_initial(
+ raw_result = self._update_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -743,20 +780,27 @@ def begin_update(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('Snapshot', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -778,13 +822,16 @@ def _delete_initial( # pylint: disable=inconsistent-return-statements
snapshot_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_delete_request_initial(
@@ -796,11 +843,13 @@ def _delete_initial( # pylint: disable=inconsistent-return-statements
snapshot_name=snapshot_name,
api_version=api_version,
template_url=self._delete_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -853,16 +902,19 @@ def begin_delete( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.LROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._delete_initial(
+ raw_result = self._delete_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -870,6 +922,8 @@ def begin_delete( # pylint: disable=inconsistent-return-statements
snapshot_name=snapshot_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -879,8 +933,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -900,17 +960,20 @@ def _restore_files_initial( # pylint: disable=inconsistent-return-statements
pool_name: str,
volume_name: str,
snapshot_name: str,
- body: "_models.SnapshotRestoreFiles",
+ body: _models.SnapshotRestoreFiles,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
_json = self._serialize.body(body, 'SnapshotRestoreFiles')
@@ -925,11 +988,13 @@ def _restore_files_initial( # pylint: disable=inconsistent-return-statements
content_type=content_type,
json=_json,
template_url=self._restore_files_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -954,7 +1019,7 @@ def begin_restore_files( # pylint: disable=inconsistent-return-statements
pool_name: str,
volume_name: str,
snapshot_name: str,
- body: "_models.SnapshotRestoreFiles",
+ body: _models.SnapshotRestoreFiles,
**kwargs: Any
) -> LROPoller[None]:
"""Create a new Snapshot Restore Files request.
@@ -985,17 +1050,20 @@ def begin_restore_files( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.LROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
- polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._restore_files_initial(
+ raw_result = self._restore_files_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -1005,6 +1073,8 @@ def begin_restore_files( # pylint: disable=inconsistent-return-statements
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -1014,8 +1084,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = ARMPolling(lro_delay, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
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 bcb5ca4bdaa6..b5f3f2efcc32 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
@@ -6,7 +6,7 @@
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
-from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union
+from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union, cast
from msrest import Serializer
@@ -17,13 +17,13 @@
from azure.core.polling import LROPoller, NoPolling, PollingMethod
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from azure.mgmt.core.polling.arm_polling import ARMPolling
from .. import models as _models
from .._vendor import _convert_request, _format_url_section
T = TypeVar('T')
-JSONType = Any
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]]
_SERIALIZER = Serializer()
@@ -37,9 +37,12 @@ def build_list_by_volume_request(
volume_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/subvolumes") # pylint: disable=line-too-long
path_format_arguments = {
@@ -53,18 +56,16 @@ def build_list_by_volume_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -78,9 +79,12 @@ def build_get_request(
subvolume_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/subvolumes/{subvolumeName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -95,18 +99,16 @@ def build_get_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -119,14 +121,17 @@ def build_create_request_initial(
volume_name: str,
subvolume_name: str,
*,
- json: JSONType = None,
+ json: Optional[_models.SubvolumeInfo] = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/subvolumes/{subvolumeName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -141,20 +146,18 @@ def build_create_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="PUT",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
@@ -169,14 +172,17 @@ def build_update_request_initial(
volume_name: str,
subvolume_name: str,
*,
- json: JSONType = None,
+ json: Optional[_models.SubvolumePatchRequest] = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/subvolumes/{subvolumeName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -191,20 +197,18 @@ def build_update_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="PATCH",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
@@ -220,8 +224,9 @@ def build_delete_request_initial(
subvolume_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/subvolumes/{subvolumeName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -236,13 +241,12 @@ def build_delete_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
return HttpRequest(
method="DELETE",
url=_url,
- params=_query_parameters,
+ params=_params,
**kwargs
)
@@ -256,9 +260,12 @@ def build_get_metadata_request_initial(
subvolume_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/subvolumes/{subvolumeName}/getMetadata") # pylint: disable=line-too-long
path_format_arguments = {
@@ -273,42 +280,38 @@ def build_get_metadata_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="POST",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
-class SubvolumesOperations(object):
- """SubvolumesOperations operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+class SubvolumesOperations:
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.NetAppManagementClient`'s
+ :attr:`subvolumes` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer):
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs):
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def list_by_volume(
@@ -318,7 +321,7 @@ def list_by_volume(
pool_name: str,
volume_name: str,
**kwargs: Any
- ) -> Iterable["_models.SubvolumesList"]:
+ ) -> Iterable[_models.SubvolumesList]:
"""List of all the subvolumes.
Returns a list of the subvolumes in the volume.
@@ -336,13 +339,16 @@ def list_by_volume(
:rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.netapp.models.SubvolumesList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SubvolumesList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SubvolumesList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -354,9 +360,11 @@ def prepare_request(next_link=None):
volume_name=volume_name,
api_version=api_version,
template_url=self.list_by_volume.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -368,9 +376,11 @@ def prepare_request(next_link=None):
volume_name=volume_name,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -412,7 +422,7 @@ def get(
volume_name: str,
subvolume_name: str,
**kwargs: Any
- ) -> "_models.SubvolumeInfo":
+ ) -> _models.SubvolumeInfo:
"""Get the path associated with the subvolumeName.
Returns the path associated with the subvolumeName provided.
@@ -432,13 +442,16 @@ def get(
:rtype: ~azure.mgmt.netapp.models.SubvolumeInfo
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SubvolumeInfo"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SubvolumeInfo]
request = build_get_request(
@@ -450,11 +463,13 @@ def get(
subvolume_name=subvolume_name,
api_version=api_version,
template_url=self.get.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -482,17 +497,20 @@ def _create_initial(
pool_name: str,
volume_name: str,
subvolume_name: str,
- body: "_models.SubvolumeInfo",
+ body: _models.SubvolumeInfo,
**kwargs: Any
- ) -> Optional["_models.SubvolumeInfo"]:
- cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.SubvolumeInfo"]]
+ ) -> Optional[_models.SubvolumeInfo]:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[Optional[_models.SubvolumeInfo]]
_json = self._serialize.body(body, 'SubvolumeInfo')
@@ -507,11 +525,13 @@ def _create_initial(
content_type=content_type,
json=_json,
template_url=self._create_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -545,9 +565,9 @@ def begin_create(
pool_name: str,
volume_name: str,
subvolume_name: str,
- body: "_models.SubvolumeInfo",
+ body: _models.SubvolumeInfo,
**kwargs: Any
- ) -> LROPoller["_models.SubvolumeInfo"]:
+ ) -> LROPoller[_models.SubvolumeInfo]:
"""Create or clone a new subvolume.
Creates a subvolume in the path or clones the subvolume mentioned in the parentPath.
@@ -577,17 +597,20 @@ def begin_create(
:rtype: ~azure.core.polling.LROPoller[~azure.mgmt.netapp.models.SubvolumeInfo]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SubvolumeInfo]
polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SubvolumeInfo"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._create_initial(
+ raw_result = self._create_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -597,20 +620,27 @@ def begin_create(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('SubvolumeInfo', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'azure-async-operation'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -630,17 +660,20 @@ def _update_initial(
pool_name: str,
volume_name: str,
subvolume_name: str,
- body: "_models.SubvolumePatchRequest",
+ body: _models.SubvolumePatchRequest,
**kwargs: Any
- ) -> Optional["_models.SubvolumeInfo"]:
- cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.SubvolumeInfo"]]
+ ) -> Optional[_models.SubvolumeInfo]:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[Optional[_models.SubvolumeInfo]]
_json = self._serialize.body(body, 'SubvolumePatchRequest')
@@ -655,11 +688,13 @@ def _update_initial(
content_type=content_type,
json=_json,
template_url=self._update_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -690,9 +725,9 @@ def begin_update(
pool_name: str,
volume_name: str,
subvolume_name: str,
- body: "_models.SubvolumePatchRequest",
+ body: _models.SubvolumePatchRequest,
**kwargs: Any
- ) -> LROPoller["_models.SubvolumeInfo"]:
+ ) -> LROPoller[_models.SubvolumeInfo]:
"""Update a subvolume.
Patch a subvolume.
@@ -722,17 +757,20 @@ def begin_update(
:rtype: ~azure.core.polling.LROPoller[~azure.mgmt.netapp.models.SubvolumeInfo]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SubvolumeInfo]
polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SubvolumeInfo"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._update_initial(
+ raw_result = self._update_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -742,20 +780,27 @@ def begin_update(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('SubvolumeInfo', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'azure-async-operation'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -777,13 +822,16 @@ def _delete_initial( # pylint: disable=inconsistent-return-statements
subvolume_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_delete_request_initial(
@@ -795,11 +843,13 @@ def _delete_initial( # pylint: disable=inconsistent-return-statements
subvolume_name=subvolume_name,
api_version=api_version,
template_url=self._delete_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -852,16 +902,19 @@ def begin_delete( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.LROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._delete_initial(
+ raw_result = self._delete_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -869,6 +922,8 @@ def begin_delete( # pylint: disable=inconsistent-return-statements
subvolume_name=subvolume_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -878,8 +933,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'azure-async-operation'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -900,14 +961,17 @@ def _get_metadata_initial(
volume_name: str,
subvolume_name: str,
**kwargs: Any
- ) -> Optional["_models.SubvolumeModel"]:
- cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.SubvolumeModel"]]
+ ) -> Optional[_models.SubvolumeModel]:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[Optional[_models.SubvolumeModel]]
request = build_get_metadata_request_initial(
@@ -919,11 +983,13 @@ def _get_metadata_initial(
subvolume_name=subvolume_name,
api_version=api_version,
template_url=self._get_metadata_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -955,7 +1021,7 @@ def begin_get_metadata(
volume_name: str,
subvolume_name: str,
**kwargs: Any
- ) -> LROPoller["_models.SubvolumeModel"]:
+ ) -> LROPoller[_models.SubvolumeModel]:
"""Describe a subvolume.
Get details of the specified subvolume.
@@ -983,16 +1049,19 @@ def begin_get_metadata(
:rtype: ~azure.core.polling.LROPoller[~azure.mgmt.netapp.models.SubvolumeModel]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.SubvolumeModel]
polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.SubvolumeModel"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._get_metadata_initial(
+ raw_result = self._get_metadata_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -1000,20 +1069,27 @@ def begin_get_metadata(
subvolume_name=subvolume_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('SubvolumeModel', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'azure-async-operation'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
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 38378a1a936f..60a37b2368b6 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
@@ -16,6 +16,7 @@
from azure.core.pipeline.transport import HttpResponse
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from .. import models as _models
@@ -32,9 +33,12 @@ def build_list_request(
account_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/vaults") # pylint: disable=line-too-long
path_format_arguments = {
@@ -46,42 +50,38 @@ def build_list_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
-class VaultsOperations(object):
- """VaultsOperations operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+class VaultsOperations:
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.NetAppManagementClient`'s
+ :attr:`vaults` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer):
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs):
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def list(
@@ -89,7 +89,7 @@ def list(
resource_group_name: str,
account_name: str,
**kwargs: Any
- ) -> Iterable["_models.VaultList"]:
+ ) -> Iterable[_models.VaultList]:
"""List vaults.
List vaults for a Netapp Account.
@@ -103,13 +103,16 @@ def list(
:rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.netapp.models.VaultList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.VaultList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.VaultList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -119,9 +122,11 @@ def prepare_request(next_link=None):
account_name=account_name,
api_version=api_version,
template_url=self.list.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -131,9 +136,11 @@ def prepare_request(next_link=None):
account_name=account_name,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
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 9d9a9a0c4b1a..74a8f41495d9 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
@@ -6,7 +6,7 @@
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
-from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union
+from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union, cast
from msrest import Serializer
@@ -17,13 +17,13 @@
from azure.core.polling import LROPoller, NoPolling, PollingMethod
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from azure.mgmt.core.polling.arm_polling import ARMPolling
from .. import models as _models
from .._vendor import _convert_request, _format_url_section
T = TypeVar('T')
-JSONType = Any
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]]
_SERIALIZER = Serializer()
@@ -35,9 +35,12 @@ def build_list_by_net_app_account_request(
account_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/volumeGroups") # pylint: disable=line-too-long
path_format_arguments = {
@@ -49,18 +52,16 @@ def build_list_by_net_app_account_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -72,9 +73,12 @@ def build_get_request(
volume_group_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/volumeGroups/{volumeGroupName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -87,18 +91,16 @@ def build_get_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -109,14 +111,17 @@ def build_create_request_initial(
account_name: str,
volume_group_name: str,
*,
- json: JSONType = None,
+ json: Optional[_models.VolumeGroupDetails] = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/volumeGroups/{volumeGroupName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -129,20 +134,18 @@ def build_create_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="PUT",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
@@ -156,8 +159,9 @@ def build_delete_request_initial(
volume_group_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/volumeGroups/{volumeGroupName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -170,37 +174,34 @@ def build_delete_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
return HttpRequest(
method="DELETE",
url=_url,
- params=_query_parameters,
+ params=_params,
**kwargs
)
-class VolumeGroupsOperations(object):
- """VolumeGroupsOperations operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+class VolumeGroupsOperations:
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.NetAppManagementClient`'s
+ :attr:`volume_groups` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer):
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs):
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def list_by_net_app_account(
@@ -208,7 +209,7 @@ def list_by_net_app_account(
resource_group_name: str,
account_name: str,
**kwargs: Any
- ) -> Iterable["_models.VolumeGroupList"]:
+ ) -> Iterable[_models.VolumeGroupList]:
"""Describe all volume groups.
List all volume groups for given account.
@@ -222,13 +223,16 @@ def list_by_net_app_account(
:rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.netapp.models.VolumeGroupList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.VolumeGroupList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.VolumeGroupList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -238,9 +242,11 @@ def prepare_request(next_link=None):
account_name=account_name,
api_version=api_version,
template_url=self.list_by_net_app_account.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -250,9 +256,11 @@ def prepare_request(next_link=None):
account_name=account_name,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -292,7 +300,7 @@ def get(
account_name: str,
volume_group_name: str,
**kwargs: Any
- ) -> "_models.VolumeGroupDetails":
+ ) -> _models.VolumeGroupDetails:
"""Describe a Volume Group.
Get details of the specified volume group.
@@ -308,13 +316,16 @@ def get(
:rtype: ~azure.mgmt.netapp.models.VolumeGroupDetails
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.VolumeGroupDetails"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.VolumeGroupDetails]
request = build_get_request(
@@ -324,11 +335,13 @@ def get(
volume_group_name=volume_group_name,
api_version=api_version,
template_url=self.get.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -354,17 +367,20 @@ def _create_initial(
resource_group_name: str,
account_name: str,
volume_group_name: str,
- body: "_models.VolumeGroupDetails",
+ body: _models.VolumeGroupDetails,
**kwargs: Any
- ) -> "_models.VolumeGroupDetails":
- cls = kwargs.pop('cls', None) # type: ClsType["_models.VolumeGroupDetails"]
+ ) -> _models.VolumeGroupDetails:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.VolumeGroupDetails]
_json = self._serialize.body(body, 'VolumeGroupDetails')
@@ -377,11 +393,13 @@ def _create_initial(
content_type=content_type,
json=_json,
template_url=self._create_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -408,9 +426,9 @@ def begin_create(
resource_group_name: str,
account_name: str,
volume_group_name: str,
- body: "_models.VolumeGroupDetails",
+ body: _models.VolumeGroupDetails,
**kwargs: Any
- ) -> LROPoller["_models.VolumeGroupDetails"]:
+ ) -> LROPoller[_models.VolumeGroupDetails]:
"""Create the specified volume group and volumes. Creating volume group will create all the
volumes specified in request body implicitly. Once volumes are created using volume group,
those will be treated as regular volumes thereafter.
@@ -438,17 +456,20 @@ def begin_create(
:rtype: ~azure.core.polling.LROPoller[~azure.mgmt.netapp.models.VolumeGroupDetails]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.VolumeGroupDetails]
polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.VolumeGroupDetails"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._create_initial(
+ raw_result = self._create_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
volume_group_name=volume_group_name,
@@ -456,20 +477,27 @@ def begin_create(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('VolumeGroupDetails', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = ARMPolling(lro_delay, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -489,13 +517,16 @@ def _delete_initial( # pylint: disable=inconsistent-return-statements
volume_group_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_delete_request_initial(
@@ -505,11 +536,13 @@ def _delete_initial( # pylint: disable=inconsistent-return-statements
volume_group_name=volume_group_name,
api_version=api_version,
template_url=self._delete_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -556,21 +589,26 @@ def begin_delete( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.LROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._delete_initial(
+ raw_result = self._delete_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
volume_group_name=volume_group_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -580,8 +618,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = ARMPolling(lro_delay, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
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 3ed917a0469a..f436eb8c2ca2 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
@@ -6,7 +6,7 @@
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
-from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union
+from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union, cast
from msrest import Serializer
@@ -17,13 +17,13 @@
from azure.core.polling import LROPoller, NoPolling, PollingMethod
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from azure.mgmt.core.polling.arm_polling import ARMPolling
from .. import models as _models
from .._vendor import _convert_request, _format_url_section
T = TypeVar('T')
-JSONType = Any
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]]
_SERIALIZER = Serializer()
@@ -37,9 +37,12 @@ def build_list_by_volume_request(
volume_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/volumeQuotaRules") # pylint: disable=line-too-long
path_format_arguments = {
@@ -53,18 +56,16 @@ def build_list_by_volume_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -78,9 +79,12 @@ def build_get_request(
volume_quota_rule_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/volumeQuotaRules/{volumeQuotaRuleName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -95,18 +99,16 @@ def build_get_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -119,14 +121,17 @@ def build_create_request_initial(
volume_name: str,
volume_quota_rule_name: str,
*,
- json: JSONType = None,
+ json: Optional[_models.VolumeQuotaRule] = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/volumeQuotaRules/{volumeQuotaRuleName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -141,20 +146,18 @@ def build_create_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="PUT",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
@@ -169,14 +172,17 @@ def build_update_request_initial(
volume_name: str,
volume_quota_rule_name: str,
*,
- json: JSONType = None,
+ json: Optional[_models.VolumeQuotaRulePatch] = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/volumeQuotaRules/{volumeQuotaRuleName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -191,20 +197,18 @@ def build_update_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="PATCH",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
@@ -220,8 +224,9 @@ def build_delete_request_initial(
volume_quota_rule_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/volumeQuotaRules/{volumeQuotaRuleName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -236,37 +241,34 @@ def build_delete_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
return HttpRequest(
method="DELETE",
url=_url,
- params=_query_parameters,
+ params=_params,
**kwargs
)
-class VolumeQuotaRulesOperations(object):
- """VolumeQuotaRulesOperations operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+class VolumeQuotaRulesOperations:
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.NetAppManagementClient`'s
+ :attr:`volume_quota_rules` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer):
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs):
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def list_by_volume(
@@ -276,7 +278,7 @@ def list_by_volume(
pool_name: str,
volume_name: str,
**kwargs: Any
- ) -> Iterable["_models.VolumeQuotaRulesList"]:
+ ) -> Iterable[_models.VolumeQuotaRulesList]:
"""Get all quota rules for a volume.
List all quota rules associated with the volume.
@@ -295,13 +297,16 @@ def list_by_volume(
:rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.netapp.models.VolumeQuotaRulesList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.VolumeQuotaRulesList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.VolumeQuotaRulesList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -313,9 +318,11 @@ def prepare_request(next_link=None):
volume_name=volume_name,
api_version=api_version,
template_url=self.list_by_volume.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -327,9 +334,11 @@ def prepare_request(next_link=None):
volume_name=volume_name,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -371,7 +380,7 @@ def get(
volume_name: str,
volume_quota_rule_name: str,
**kwargs: Any
- ) -> "_models.VolumeQuotaRule":
+ ) -> _models.VolumeQuotaRule:
"""Describe a quota rule.
Get details of the specified quota rule.
@@ -391,13 +400,16 @@ def get(
:rtype: ~azure.mgmt.netapp.models.VolumeQuotaRule
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.VolumeQuotaRule"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.VolumeQuotaRule]
request = build_get_request(
@@ -409,11 +421,13 @@ def get(
volume_quota_rule_name=volume_quota_rule_name,
api_version=api_version,
template_url=self.get.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -441,17 +455,20 @@ def _create_initial(
pool_name: str,
volume_name: str,
volume_quota_rule_name: str,
- body: "_models.VolumeQuotaRule",
+ body: _models.VolumeQuotaRule,
**kwargs: Any
- ) -> "_models.VolumeQuotaRule":
- cls = kwargs.pop('cls', None) # type: ClsType["_models.VolumeQuotaRule"]
+ ) -> _models.VolumeQuotaRule:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.VolumeQuotaRule]
_json = self._serialize.body(body, 'VolumeQuotaRule')
@@ -466,11 +483,13 @@ def _create_initial(
content_type=content_type,
json=_json,
template_url=self._create_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -503,9 +522,9 @@ def begin_create(
pool_name: str,
volume_name: str,
volume_quota_rule_name: str,
- body: "_models.VolumeQuotaRule",
+ body: _models.VolumeQuotaRule,
**kwargs: Any
- ) -> LROPoller["_models.VolumeQuotaRule"]:
+ ) -> LROPoller[_models.VolumeQuotaRule]:
"""Create a quota rule.
Create the specified quota rule within the given volume.
@@ -535,17 +554,20 @@ def begin_create(
:rtype: ~azure.core.polling.LROPoller[~azure.mgmt.netapp.models.VolumeQuotaRule]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.VolumeQuotaRule]
polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.VolumeQuotaRule"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._create_initial(
+ raw_result = self._create_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -555,20 +577,27 @@ def begin_create(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('VolumeQuotaRule', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -588,17 +617,20 @@ def _update_initial(
pool_name: str,
volume_name: str,
volume_quota_rule_name: str,
- body: "_models.VolumeQuotaRulePatch",
+ body: _models.VolumeQuotaRulePatch,
**kwargs: Any
- ) -> Optional["_models.VolumeQuotaRule"]:
- cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.VolumeQuotaRule"]]
+ ) -> Optional[_models.VolumeQuotaRule]:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[Optional[_models.VolumeQuotaRule]]
_json = self._serialize.body(body, 'VolumeQuotaRulePatch')
@@ -613,11 +645,13 @@ def _update_initial(
content_type=content_type,
json=_json,
template_url=self._update_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -648,9 +682,9 @@ def begin_update(
pool_name: str,
volume_name: str,
volume_quota_rule_name: str,
- body: "_models.VolumeQuotaRulePatch",
+ body: _models.VolumeQuotaRulePatch,
**kwargs: Any
- ) -> LROPoller["_models.VolumeQuotaRule"]:
+ ) -> LROPoller[_models.VolumeQuotaRule]:
"""Update a quota rule.
Patch a quota rule.
@@ -680,17 +714,20 @@ def begin_update(
:rtype: ~azure.core.polling.LROPoller[~azure.mgmt.netapp.models.VolumeQuotaRule]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.VolumeQuotaRule]
polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.VolumeQuotaRule"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._update_initial(
+ raw_result = self._update_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -700,20 +737,27 @@ def begin_update(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('VolumeQuotaRule', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -735,13 +779,16 @@ def _delete_initial( # pylint: disable=inconsistent-return-statements
volume_quota_rule_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_delete_request_initial(
@@ -753,11 +800,13 @@ def _delete_initial( # pylint: disable=inconsistent-return-statements
volume_quota_rule_name=volume_quota_rule_name,
api_version=api_version,
template_url=self._delete_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -810,16 +859,19 @@ def begin_delete( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.LROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._delete_initial(
+ raw_result = self._delete_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -827,6 +879,8 @@ def begin_delete( # pylint: disable=inconsistent-return-statements
volume_quota_rule_name=volume_quota_rule_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -836,8 +890,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
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 eb0b4c6b04b9..c4e4699a6c6b 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
@@ -6,7 +6,7 @@
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
-from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union
+from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union, cast
from msrest import Serializer
@@ -17,13 +17,13 @@
from azure.core.polling import LROPoller, NoPolling, PollingMethod
from azure.core.rest import HttpRequest
from azure.core.tracing.decorator import distributed_trace
+from azure.core.utils import case_insensitive_dict
from azure.mgmt.core.exceptions import ARMErrorFormat
from azure.mgmt.core.polling.arm_polling import ARMPolling
from .. import models as _models
from .._vendor import _convert_request, _format_url_section
T = TypeVar('T')
-JSONType = Any
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]]
_SERIALIZER = Serializer()
@@ -36,9 +36,12 @@ def build_list_request(
pool_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes") # pylint: disable=line-too-long
path_format_arguments = {
@@ -51,18 +54,16 @@ def build_list_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -75,9 +76,12 @@ def build_get_request(
volume_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -91,18 +95,16 @@ def build_get_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -114,14 +116,17 @@ def build_create_or_update_request_initial(
pool_name: str,
volume_name: str,
*,
- json: JSONType = None,
+ json: Optional[_models.Volume] = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -135,20 +140,18 @@ def build_create_or_update_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="PUT",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
@@ -162,14 +165,17 @@ def build_update_request_initial(
pool_name: str,
volume_name: str,
*,
- json: JSONType = None,
+ json: Optional[_models.VolumePatch] = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -183,20 +189,18 @@ def build_update_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="PATCH",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
@@ -213,8 +217,9 @@ def build_delete_request_initial(
force_delete: Optional[bool] = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}") # pylint: disable=line-too-long
path_format_arguments = {
@@ -228,15 +233,14 @@ def build_delete_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
if force_delete is not None:
- _query_parameters['forceDelete'] = _SERIALIZER.query("force_delete", force_delete, 'bool')
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['forceDelete'] = _SERIALIZER.query("force_delete", force_delete, 'bool')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
return HttpRequest(
method="DELETE",
url=_url,
- params=_query_parameters,
+ params=_params,
**kwargs
)
@@ -248,13 +252,15 @@ def build_revert_request_initial(
pool_name: str,
volume_name: str,
*,
- json: JSONType = None,
+ json: Optional[_models.VolumeRevert] = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/revert") # pylint: disable=line-too-long
path_format_arguments = {
@@ -268,19 +274,17 @@ def build_revert_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
return HttpRequest(
method="POST",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
@@ -295,8 +299,9 @@ def build_reset_cifs_password_request_initial(
volume_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/resetCifsPassword") # pylint: disable=line-too-long
path_format_arguments = {
@@ -310,13 +315,12 @@ def build_reset_cifs_password_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
return HttpRequest(
method="POST",
url=_url,
- params=_query_parameters,
+ params=_params,
**kwargs
)
@@ -328,13 +332,15 @@ def build_break_replication_request_initial(
pool_name: str,
volume_name: str,
*,
- json: JSONType = None,
+ json: Optional[_models.BreakReplicationRequest] = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/breakReplication") # pylint: disable=line-too-long
path_format_arguments = {
@@ -348,19 +354,63 @@ def build_break_replication_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
return HttpRequest(
method="POST",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
+ json=json,
+ content=content,
+ **kwargs
+ )
+
+
+def build_reestablish_replication_request_initial(
+ subscription_id: str,
+ resource_group_name: str,
+ account_name: str,
+ pool_name: str,
+ volume_name: str,
+ *,
+ json: Optional[_models.ReestablishReplicationRequest] = None,
+ content: Any = None,
+ **kwargs: Any
+) -> HttpRequest:
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
+ # Construct URL
+ _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/reestablishReplication") # pylint: disable=line-too-long
+ path_format_arguments = {
+ "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'),
+ "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
+ "accountName": _SERIALIZER.url("account_name", account_name, 'str'),
+ "poolName": _SERIALIZER.url("pool_name", pool_name, 'str', max_length=64, min_length=1, pattern=r'^[a-zA-Z0-9][a-zA-Z0-9\-_]{0,63}$'),
+ "volumeName": _SERIALIZER.url("volume_name", volume_name, 'str', max_length=64, min_length=1, pattern=r'^[a-zA-Z][a-zA-Z0-9\-_]{0,63}$'),
+ }
+
+ _url = _format_url_section(_url, **path_format_arguments)
+
+ # Construct parameters
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+
+ # Construct headers
+ if content_type is not None:
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+
+ return HttpRequest(
+ method="POST",
+ url=_url,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
@@ -375,9 +425,12 @@ def build_replication_status_request(
volume_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/replicationStatus") # pylint: disable=line-too-long
path_format_arguments = {
@@ -391,18 +444,16 @@ def build_replication_status_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="GET",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -415,9 +466,12 @@ def build_list_replications_request(
volume_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ accept = _headers.pop('Accept', "application/json")
- accept = "application/json"
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/listReplications") # pylint: disable=line-too-long
path_format_arguments = {
@@ -431,18 +485,16 @@ def build_list_replications_request(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
- _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str')
+ _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str')
return HttpRequest(
method="POST",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
**kwargs
)
@@ -455,8 +507,9 @@ def build_resync_replication_request_initial(
volume_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/resyncReplication") # pylint: disable=line-too-long
path_format_arguments = {
@@ -470,13 +523,12 @@ def build_resync_replication_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
return HttpRequest(
method="POST",
url=_url,
- params=_query_parameters,
+ params=_params,
**kwargs
)
@@ -489,8 +541,9 @@ def build_delete_replication_request_initial(
volume_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/deleteReplication") # pylint: disable=line-too-long
path_format_arguments = {
@@ -504,13 +557,12 @@ def build_delete_replication_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
return HttpRequest(
method="POST",
url=_url,
- params=_query_parameters,
+ params=_params,
**kwargs
)
@@ -522,13 +574,15 @@ def build_authorize_replication_request_initial(
pool_name: str,
volume_name: str,
*,
- json: JSONType = None,
+ json: Optional[_models.AuthorizeRequest] = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/authorizeReplication") # pylint: disable=line-too-long
path_format_arguments = {
@@ -542,19 +596,17 @@ def build_authorize_replication_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
return HttpRequest(
method="POST",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
@@ -569,8 +621,9 @@ def build_re_initialize_replication_request_initial(
volume_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/reinitializeReplication") # pylint: disable=line-too-long
path_format_arguments = {
@@ -584,13 +637,12 @@ def build_re_initialize_replication_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
return HttpRequest(
method="POST",
url=_url,
- params=_query_parameters,
+ params=_params,
**kwargs
)
@@ -602,13 +654,15 @@ def build_pool_change_request_initial(
pool_name: str,
volume_name: str,
*,
- json: JSONType = None,
+ json: Optional[_models.PoolChangeRequest] = None,
content: Any = None,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', None) # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str]
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/poolChange") # pylint: disable=line-too-long
path_format_arguments = {
@@ -622,19 +676,17 @@ def build_pool_change_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
# Construct headers
- _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any]
if content_type is not None:
- _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
+ _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str')
return HttpRequest(
method="POST",
url=_url,
- params=_query_parameters,
- headers=_header_parameters,
+ params=_params,
+ headers=_headers,
json=json,
content=content,
**kwargs
@@ -649,8 +701,9 @@ def build_relocate_request_initial(
volume_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/relocate") # pylint: disable=line-too-long
path_format_arguments = {
@@ -664,13 +717,12 @@ def build_relocate_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
return HttpRequest(
method="POST",
url=_url,
- params=_query_parameters,
+ params=_params,
**kwargs
)
@@ -683,8 +735,9 @@ def build_finalize_relocation_request_initial(
volume_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/finalizeRelocation") # pylint: disable=line-too-long
path_format_arguments = {
@@ -698,13 +751,12 @@ def build_finalize_relocation_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
return HttpRequest(
method="POST",
url=_url,
- params=_query_parameters,
+ params=_params,
**kwargs
)
@@ -717,8 +769,9 @@ def build_revert_relocation_request_initial(
volume_name: str,
**kwargs: Any
) -> HttpRequest:
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
# Construct URL
_url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/revertRelocation") # pylint: disable=line-too-long
path_format_arguments = {
@@ -732,37 +785,34 @@ def build_revert_relocation_request_initial(
_url = _format_url_section(_url, **path_format_arguments)
# Construct parameters
- _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any]
- _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
+ _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str')
return HttpRequest(
method="POST",
url=_url,
- params=_query_parameters,
+ params=_params,
**kwargs
)
-class VolumesOperations(object): # pylint: disable=too-many-public-methods
- """VolumesOperations operations.
-
- You should not instantiate this class directly. Instead, you should create a Client instance that
- instantiates it for you and attaches it as an attribute.
+class VolumesOperations: # pylint: disable=too-many-public-methods
+ """
+ .. warning::
+ **DO NOT** instantiate this class directly.
- :ivar models: Alias to model classes used in this operation group.
- :type models: ~azure.mgmt.netapp.models
- :param client: Client for service requests.
- :param config: Configuration of service client.
- :param serializer: An object model serializer.
- :param deserializer: An object model deserializer.
+ Instead, you should access the following operations through
+ :class:`~azure.mgmt.netapp.NetAppManagementClient`'s
+ :attr:`volumes` attribute.
"""
models = _models
- def __init__(self, client, config, serializer, deserializer):
- self._client = client
- self._serialize = serializer
- self._deserialize = deserializer
- self._config = config
+ def __init__(self, *args, **kwargs):
+ input_args = list(args)
+ self._client = input_args.pop(0) if input_args else kwargs.pop("client")
+ self._config = input_args.pop(0) if input_args else kwargs.pop("config")
+ self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer")
+ self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer")
+
@distributed_trace
def list(
@@ -771,7 +821,7 @@ def list(
account_name: str,
pool_name: str,
**kwargs: Any
- ) -> Iterable["_models.VolumeList"]:
+ ) -> Iterable[_models.VolumeList]:
"""Describe all volumes.
List all volumes within the capacity pool.
@@ -787,13 +837,16 @@ def list(
:rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.netapp.models.VolumeList]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.VolumeList]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.VolumeList"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -804,9 +857,11 @@ def prepare_request(next_link=None):
pool_name=pool_name,
api_version=api_version,
template_url=self.list.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -817,9 +872,11 @@ def prepare_request(next_link=None):
pool_name=pool_name,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -860,7 +917,7 @@ def get(
pool_name: str,
volume_name: str,
**kwargs: Any
- ) -> "_models.Volume":
+ ) -> _models.Volume:
"""Describe a volume.
Get the details of the specified volume.
@@ -878,13 +935,16 @@ def get(
:rtype: ~azure.mgmt.netapp.models.Volume
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.Volume"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.Volume]
request = build_get_request(
@@ -895,11 +955,13 @@ def get(
volume_name=volume_name,
api_version=api_version,
template_url=self.get.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -926,17 +988,20 @@ def _create_or_update_initial(
account_name: str,
pool_name: str,
volume_name: str,
- body: "_models.Volume",
+ body: _models.Volume,
**kwargs: Any
- ) -> Optional["_models.Volume"]:
- cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.Volume"]]
+ ) -> Optional[_models.Volume]:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[Optional[_models.Volume]]
_json = self._serialize.body(body, 'Volume')
@@ -950,11 +1015,13 @@ def _create_or_update_initial(
content_type=content_type,
json=_json,
template_url=self._create_or_update_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -987,9 +1054,9 @@ def begin_create_or_update(
account_name: str,
pool_name: str,
volume_name: str,
- body: "_models.Volume",
+ body: _models.Volume,
**kwargs: Any
- ) -> LROPoller["_models.Volume"]:
+ ) -> LROPoller[_models.Volume]:
"""Create or Update a volume.
Create or update the specified volume within the capacity pool.
@@ -1016,17 +1083,20 @@ def begin_create_or_update(
:rtype: ~azure.core.polling.LROPoller[~azure.mgmt.netapp.models.Volume]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.Volume]
polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.Volume"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._create_or_update_initial(
+ raw_result = self._create_or_update_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -1035,20 +1105,27 @@ def begin_create_or_update(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('Volume', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'azure-async-operation'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -1067,17 +1144,20 @@ def _update_initial(
account_name: str,
pool_name: str,
volume_name: str,
- body: "_models.VolumePatch",
+ body: _models.VolumePatch,
**kwargs: Any
- ) -> Optional["_models.Volume"]:
- cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.Volume"]]
+ ) -> Optional[_models.Volume]:
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[Optional[_models.Volume]]
_json = self._serialize.body(body, 'VolumePatch')
@@ -1091,11 +1171,13 @@ def _update_initial(
content_type=content_type,
json=_json,
template_url=self._update_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -1125,9 +1207,9 @@ def begin_update(
account_name: str,
pool_name: str,
volume_name: str,
- body: "_models.VolumePatch",
+ body: _models.VolumePatch,
**kwargs: Any
- ) -> LROPoller["_models.Volume"]:
+ ) -> LROPoller[_models.Volume]:
"""Update a volume.
Patch the specified volume.
@@ -1154,17 +1236,20 @@ def begin_update(
:rtype: ~azure.core.polling.LROPoller[~azure.mgmt.netapp.models.Volume]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.Volume]
polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.Volume"]
lro_delay = kwargs.pop(
'polling_interval',
self._config.polling_interval
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._update_initial(
+ raw_result = self._update_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -1173,20 +1258,27 @@ def begin_update(
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
def get_long_running_output(pipeline_response):
- response = pipeline_response.http_response
deserialized = self._deserialize('Volume', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -1208,13 +1300,16 @@ def _delete_initial( # pylint: disable=inconsistent-return-statements
force_delete: Optional[bool] = None,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_delete_request_initial(
@@ -1226,11 +1321,13 @@ def _delete_initial( # pylint: disable=inconsistent-return-statements
api_version=api_version,
force_delete=force_delete,
template_url=self._delete_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -1284,16 +1381,19 @@ def begin_delete( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.LROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._delete_initial(
+ raw_result = self._delete_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -1301,6 +1401,8 @@ def begin_delete( # pylint: disable=inconsistent-return-statements
force_delete=force_delete,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -1310,8 +1412,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -1330,17 +1438,20 @@ def _revert_initial( # pylint: disable=inconsistent-return-statements
account_name: str,
pool_name: str,
volume_name: str,
- body: "_models.VolumeRevert",
+ body: _models.VolumeRevert,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
_json = self._serialize.body(body, 'VolumeRevert')
@@ -1354,11 +1465,13 @@ def _revert_initial( # pylint: disable=inconsistent-return-statements
content_type=content_type,
json=_json,
template_url=self._revert_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -1382,7 +1495,7 @@ def begin_revert( # pylint: disable=inconsistent-return-statements
account_name: str,
pool_name: str,
volume_name: str,
- body: "_models.VolumeRevert",
+ body: _models.VolumeRevert,
**kwargs: Any
) -> LROPoller[None]:
"""Revert a volume to one of its snapshots.
@@ -1411,17 +1524,20 @@ def begin_revert( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.LROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
- polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._revert_initial(
+ raw_result = self._revert_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -1430,6 +1546,8 @@ def begin_revert( # pylint: disable=inconsistent-return-statements
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -1439,8 +1557,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -1461,13 +1585,16 @@ def _reset_cifs_password_initial( # pylint: disable=inconsistent-return-stateme
volume_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_reset_cifs_password_request_initial(
@@ -1478,11 +1605,13 @@ def _reset_cifs_password_initial( # pylint: disable=inconsistent-return-stateme
volume_name=volume_name,
api_version=api_version,
template_url=self._reset_cifs_password_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -1532,22 +1661,27 @@ def begin_reset_cifs_password( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.LROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._reset_cifs_password_initial(
+ raw_result = self._reset_cifs_password_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
volume_name=volume_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -1557,8 +1691,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = ARMPolling(lro_delay, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -1577,17 +1717,20 @@ def _break_replication_initial( # pylint: disable=inconsistent-return-statement
account_name: str,
pool_name: str,
volume_name: str,
- body: Optional["_models.BreakReplicationRequest"] = None,
+ body: Optional[_models.BreakReplicationRequest] = None,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
if body is not None:
_json = self._serialize.body(body, 'BreakReplicationRequest')
@@ -1604,11 +1747,13 @@ def _break_replication_initial( # pylint: disable=inconsistent-return-statement
content_type=content_type,
json=_json,
template_url=self._break_replication_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -1632,7 +1777,7 @@ def begin_break_replication( # pylint: disable=inconsistent-return-statements
account_name: str,
pool_name: str,
volume_name: str,
- body: Optional["_models.BreakReplicationRequest"] = None,
+ body: Optional[_models.BreakReplicationRequest] = None,
**kwargs: Any
) -> LROPoller[None]:
"""Break volume replication.
@@ -1661,17 +1806,20 @@ def begin_break_replication( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.LROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
- polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._break_replication_initial(
+ raw_result = self._break_replication_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -1680,6 +1828,8 @@ def begin_break_replication( # pylint: disable=inconsistent-return-statements
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -1689,8 +1839,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -1703,6 +1859,152 @@ def get_long_running_output(pipeline_response):
begin_break_replication.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/breakReplication"} # type: ignore
+ def _reestablish_replication_initial( # pylint: disable=inconsistent-return-statements
+ self,
+ resource_group_name: str,
+ account_name: str,
+ pool_name: str,
+ volume_name: str,
+ body: _models.ReestablishReplicationRequest,
+ **kwargs: Any
+ ) -> None:
+ error_map = {
+ 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
+ }
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
+
+ _json = self._serialize.body(body, 'ReestablishReplicationRequest')
+
+ request = build_reestablish_replication_request_initial(
+ subscription_id=self._config.subscription_id,
+ resource_group_name=resource_group_name,
+ account_name=account_name,
+ pool_name=pool_name,
+ volume_name=volume_name,
+ api_version=api_version,
+ content_type=content_type,
+ json=_json,
+ template_url=self._reestablish_replication_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
+ )
+ request = _convert_request(request)
+ request.url = self._client.format_url(request.url) # type: ignore
+
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
+ request,
+ stream=False,
+ **kwargs
+ )
+ response = pipeline_response.http_response
+
+ if response.status_code not in [202]:
+ map_error(status_code=response.status_code, response=response, error_map=error_map)
+ raise HttpResponseError(response=response, error_format=ARMErrorFormat)
+
+ if cls:
+ return cls(pipeline_response, None, {})
+
+ _reestablish_replication_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/reestablishReplication"} # type: ignore
+
+
+ @distributed_trace
+ def begin_reestablish_replication( # pylint: disable=inconsistent-return-statements
+ self,
+ resource_group_name: str,
+ account_name: str,
+ pool_name: str,
+ volume_name: str,
+ body: _models.ReestablishReplicationRequest,
+ **kwargs: Any
+ ) -> LROPoller[None]:
+ """Re-establish volume replication.
+
+ Re-establish a previously deleted replication between 2 volumes that have a common ad-hoc or
+ policy-based snapshots.
+
+ :param resource_group_name: The name of the resource group.
+ :type resource_group_name: str
+ :param account_name: The name of the NetApp account.
+ :type account_name: str
+ :param pool_name: The name of the capacity pool.
+ :type pool_name: str
+ :param volume_name: The name of the volume.
+ :type volume_name: str
+ :param body: body for the id of the source volume.
+ :type body: ~azure.mgmt.netapp.models.ReestablishReplicationRequest
+ :keyword callable cls: A custom type or function that will be passed the direct response
+ :keyword str continuation_token: A continuation token to restart a poller from a saved state.
+ :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
+ operation to not poll, or pass in your own initialized polling object for a personal polling
+ strategy.
+ :paramtype polling: bool or ~azure.core.polling.PollingMethod
+ :keyword int polling_interval: Default waiting time between two polls for LRO operations if no
+ Retry-After header is present.
+ :return: An instance of LROPoller that returns either None or the result of cls(response)
+ :rtype: ~azure.core.polling.LROPoller[None]
+ :raises: ~azure.core.exceptions.HttpResponseError
+ """
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[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
+ )
+ cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
+ if cont_token is None:
+ raw_result = self._reestablish_replication_initial( # type: ignore
+ resource_group_name=resource_group_name,
+ account_name=account_name,
+ pool_name=pool_name,
+ volume_name=volume_name,
+ body=body,
+ api_version=api_version,
+ content_type=content_type,
+ cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
+ **kwargs
+ )
+ kwargs.pop('error_map', None)
+
+ def get_long_running_output(pipeline_response):
+ if cls:
+ return cls(pipeline_response, None, {})
+
+
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
+ else: polling_method = polling
+ if cont_token:
+ return LROPoller.from_continuation_token(
+ polling_method=polling_method,
+ continuation_token=cont_token,
+ client=self._client,
+ deserialization_callback=get_long_running_output
+ )
+ return LROPoller(self._client, raw_result, get_long_running_output, polling_method)
+
+ begin_reestablish_replication.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/reestablishReplication"} # type: ignore
+
@distributed_trace
def replication_status(
self,
@@ -1711,7 +2013,7 @@ def replication_status(
pool_name: str,
volume_name: str,
**kwargs: Any
- ) -> "_models.ReplicationStatus":
+ ) -> _models.ReplicationStatus:
"""Get volume replication status.
Get the status of the replication.
@@ -1729,13 +2031,16 @@ def replication_status(
:rtype: ~azure.mgmt.netapp.models.ReplicationStatus
:raises: ~azure.core.exceptions.HttpResponseError
"""
- cls = kwargs.pop('cls', None) # type: ClsType["_models.ReplicationStatus"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.ReplicationStatus]
request = build_replication_status_request(
@@ -1746,11 +2051,13 @@ def replication_status(
volume_name=volume_name,
api_version=api_version,
template_url=self.replication_status.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -1779,7 +2086,7 @@ def list_replications(
pool_name: str,
volume_name: str,
**kwargs: Any
- ) -> Iterable["_models.ListReplications"]:
+ ) -> Iterable[_models.ListReplications]:
"""List replications for volume.
List all replications for a specified volume.
@@ -1797,13 +2104,16 @@ def list_replications(
:rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.netapp.models.ListReplications]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[_models.ListReplications]
- cls = kwargs.pop('cls', None) # type: ClsType["_models.ListReplications"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
def prepare_request(next_link=None):
if not next_link:
@@ -1815,9 +2125,11 @@ def prepare_request(next_link=None):
volume_name=volume_name,
api_version=api_version,
template_url=self.list_replications.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
else:
@@ -1829,9 +2141,11 @@ def prepare_request(next_link=None):
volume_name=volume_name,
api_version=api_version,
template_url=next_link,
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
request.method = "GET"
return request
@@ -1872,13 +2186,16 @@ def _resync_replication_initial( # pylint: disable=inconsistent-return-statemen
volume_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_resync_replication_request_initial(
@@ -1889,11 +2206,13 @@ def _resync_replication_initial( # pylint: disable=inconsistent-return-statemen
volume_name=volume_name,
api_version=api_version,
template_url=self._resync_replication_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -1944,22 +2263,27 @@ def begin_resync_replication( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.LROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._resync_replication_initial(
+ raw_result = self._resync_replication_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
volume_name=volume_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -1969,8 +2293,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -1991,13 +2321,16 @@ def _delete_replication_initial( # pylint: disable=inconsistent-return-statemen
volume_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_delete_replication_request_initial(
@@ -2008,11 +2341,13 @@ def _delete_replication_initial( # pylint: disable=inconsistent-return-statemen
volume_name=volume_name,
api_version=api_version,
template_url=self._delete_replication_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -2063,22 +2398,27 @@ def begin_delete_replication( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.LROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._delete_replication_initial(
+ raw_result = self._delete_replication_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
volume_name=volume_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -2088,8 +2428,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -2108,17 +2454,20 @@ def _authorize_replication_initial( # pylint: disable=inconsistent-return-state
account_name: str,
pool_name: str,
volume_name: str,
- body: "_models.AuthorizeRequest",
+ body: _models.AuthorizeRequest,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
_json = self._serialize.body(body, 'AuthorizeRequest')
@@ -2132,11 +2481,13 @@ def _authorize_replication_initial( # pylint: disable=inconsistent-return-state
content_type=content_type,
json=_json,
template_url=self._authorize_replication_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -2160,7 +2511,7 @@ def begin_authorize_replication( # pylint: disable=inconsistent-return-statemen
account_name: str,
pool_name: str,
volume_name: str,
- body: "_models.AuthorizeRequest",
+ body: _models.AuthorizeRequest,
**kwargs: Any
) -> LROPoller[None]:
"""Authorize source volume replication.
@@ -2189,17 +2540,20 @@ def begin_authorize_replication( # pylint: disable=inconsistent-return-statemen
:rtype: ~azure.core.polling.LROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
- polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._authorize_replication_initial(
+ raw_result = self._authorize_replication_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -2208,6 +2562,8 @@ def begin_authorize_replication( # pylint: disable=inconsistent-return-statemen
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -2217,8 +2573,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -2239,13 +2601,16 @@ def _re_initialize_replication_initial( # pylint: disable=inconsistent-return-s
volume_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_re_initialize_replication_request_initial(
@@ -2256,11 +2621,13 @@ def _re_initialize_replication_initial( # pylint: disable=inconsistent-return-s
volume_name=volume_name,
api_version=api_version,
template_url=self._re_initialize_replication_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -2310,22 +2677,27 @@ def begin_re_initialize_replication( # pylint: disable=inconsistent-return-stat
:rtype: ~azure.core.polling.LROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._re_initialize_replication_initial(
+ raw_result = self._re_initialize_replication_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
volume_name=volume_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -2335,8 +2707,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -2355,17 +2733,20 @@ def _pool_change_initial( # pylint: disable=inconsistent-return-statements
account_name: str,
pool_name: str,
volume_name: str,
- body: "_models.PoolChangeRequest",
+ body: _models.PoolChangeRequest,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
+
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str]
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
_json = self._serialize.body(body, 'PoolChangeRequest')
@@ -2379,11 +2760,13 @@ def _pool_change_initial( # pylint: disable=inconsistent-return-statements
content_type=content_type,
json=_json,
template_url=self._pool_change_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -2407,7 +2790,7 @@ def begin_pool_change( # pylint: disable=inconsistent-return-statements
account_name: str,
pool_name: str,
volume_name: str,
- body: "_models.PoolChangeRequest",
+ body: _models.PoolChangeRequest,
**kwargs: Any
) -> LROPoller[None]:
"""Change pool for volume.
@@ -2436,17 +2819,20 @@ def begin_pool_change( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.LROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- content_type = kwargs.pop('content_type', "application/json") # type: Optional[str]
- polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
+ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._pool_change_initial(
+ raw_result = self._pool_change_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
@@ -2455,6 +2841,8 @@ def begin_pool_change( # pylint: disable=inconsistent-return-statements
api_version=api_version,
content_type=content_type,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -2464,8 +2852,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+ lro_options={'final-state-via': 'location'},
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -2486,13 +2880,16 @@ def _relocate_initial( # pylint: disable=inconsistent-return-statements
volume_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_relocate_request_initial(
@@ -2503,11 +2900,13 @@ def _relocate_initial( # pylint: disable=inconsistent-return-statements
volume_name=volume_name,
api_version=api_version,
template_url=self._relocate_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -2557,22 +2956,27 @@ def begin_relocate( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.LROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._relocate_initial(
+ raw_result = self._relocate_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
volume_name=volume_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -2582,8 +2986,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = ARMPolling(lro_delay, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -2604,13 +3014,16 @@ def _finalize_relocation_initial( # pylint: disable=inconsistent-return-stateme
volume_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_finalize_relocation_request_initial(
@@ -2621,11 +3034,13 @@ def _finalize_relocation_initial( # pylint: disable=inconsistent-return-stateme
volume_name=volume_name,
api_version=api_version,
template_url=self._finalize_relocation_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -2675,22 +3090,27 @@ def begin_finalize_relocation( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.LROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._finalize_relocation_initial(
+ raw_result = self._finalize_relocation_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
volume_name=volume_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -2700,8 +3120,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = ARMPolling(lro_delay, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
@@ -2722,13 +3148,16 @@ def _revert_relocation_initial( # pylint: disable=inconsistent-return-statement
volume_name: str,
**kwargs: Any
) -> None:
- cls = kwargs.pop('cls', None) # type: ClsType[None]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
- error_map.update(kwargs.pop('error_map', {}))
+ error_map.update(kwargs.pop('error_map', {}) or {})
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # type: str
+ cls = kwargs.pop('cls', None) # type: ClsType[None]
request = build_revert_relocation_request_initial(
@@ -2739,11 +3168,13 @@ def _revert_relocation_initial( # pylint: disable=inconsistent-return-statement
volume_name=volume_name,
api_version=api_version,
template_url=self._revert_relocation_initial.metadata['url'],
+ headers=_headers,
+ params=_params,
)
request = _convert_request(request)
- request.url = self._client.format_url(request.url)
+ request.url = self._client.format_url(request.url) # type: ignore
- pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access
+ pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access
request,
stream=False,
**kwargs
@@ -2794,22 +3225,27 @@ def begin_revert_relocation( # pylint: disable=inconsistent-return-statements
:rtype: ~azure.core.polling.LROPoller[None]
:raises: ~azure.core.exceptions.HttpResponseError
"""
- api_version = kwargs.pop('api_version', "2022-01-01") # type: str
- polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
+ _headers = kwargs.pop("headers", {}) or {}
+ _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
+
+ api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-03-01")) # 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
)
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
if cont_token is None:
- raw_result = self._revert_relocation_initial(
+ raw_result = self._revert_relocation_initial( # type: ignore
resource_group_name=resource_group_name,
account_name=account_name,
pool_name=pool_name,
volume_name=volume_name,
api_version=api_version,
cls=lambda x,y,z: x,
+ headers=_headers,
+ params=_params,
**kwargs
)
kwargs.pop('error_map', None)
@@ -2819,8 +3255,14 @@ def get_long_running_output(pipeline_response):
return cls(pipeline_response, None, {})
- if polling is True: polling_method = ARMPolling(lro_delay, **kwargs)
- elif polling is False: polling_method = NoPolling()
+ if polling is True:
+ polling_method = cast(PollingMethod, ARMPolling(
+ lro_delay,
+
+
+ **kwargs
+ )) # type: PollingMethod
+ elif polling is False: polling_method = cast(PollingMethod, NoPolling())
else: polling_method = polling
if cont_token:
return LROPoller.from_continuation_token(
diff --git a/sdk/netapp/azure-mgmt-netapp/setup.py b/sdk/netapp/azure-mgmt-netapp/setup.py
index 2cd619af0b6b..9bff37430fe9 100644
--- a/sdk/netapp/azure-mgmt-netapp/setup.py
+++ b/sdk/netapp/azure-mgmt-netapp/setup.py
@@ -72,7 +72,7 @@
install_requires=[
'msrest>=0.6.21',
'azure-common~=1.1',
- 'azure-mgmt-core>=1.3.0,<2.0.0',
+ 'azure-mgmt-core>=1.3.1,<2.0.0',
],
python_requires=">=3.6"
)
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 a34c0ebd5606..98d7a3cdeb65 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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": "Wed, 25 May 2022 15:07:24 GMT",
+ "Date": "Wed, 27 Jul 2022 01:58: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.12794.5 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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": "Wed, 25 May 2022 15:07:24 GMT",
+ "Date": "Wed, 27 Jul 2022 01:58: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.12744.11 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - NEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "3b84e595-2b3e-4213-b95b-db2f1199ca97",
+ "client-request-id": "9d96c0b4-f985-42ad-b428-623ec25ef771",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "3b84e595-2b3e-4213-b95b-db2f1199ca97",
+ "client-request-id": "9d96c0b4-f985-42ad-b428-623ec25ef771",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:07:24 GMT",
+ "Date": "Wed, 27 Jul 2022 01:58:50 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12794.5 - NEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - NEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,45 +213,147 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Encoding": "gzip",
+ "Content-Length": "1932",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Wed, 27 Jul 2022 01:58:55 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "7938b190-eb72-477f-a7fe-84a22dc160c7",
+ "x-ms-original-request-ids": [
+ "576e034d-d9da-4eb9-bff5-bf93638ee708",
+ "b6a36de6-0e95-42d3-bb35-a49b9b0e469f"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": "11999",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T015856Z:7938b190-eb72-477f-a7fe-84a22dc160c7"
+ },
+ "ResponseBody": {
+ "value": [
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-86eb264b",
+ "name": "sdk-py-tests-acc-1-86eb264b",
+ "type": "Microsoft.NetApp/netAppAccounts",
+ "etag": "W/\u0022datetime\u00272022-07-22T23%3A12%3A15.7958346Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-22T23:12:13.2600696Z"
+ },
+ "properties": {
+ "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"
+ },
+ "provisioningState": "Succeeded"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-22T23:12:14.7465971Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-22T23:12:14.7465971Z"
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
+ "name": "sdk-py-tests-acc-1",
+ "type": "Microsoft.NetApp/netAppAccounts",
+ "etag": "W/\u0022datetime\u00272022-07-22T12%3A00%3A01.0749963Z\u0027\u0022",
+ "location": "southcentralusstage",
+ "tags": {
+ "CreatedOnDate": "2022-07-22T11:59:54.7922660Z"
+ },
+ "properties": {
+ "provisioningState": "Succeeded",
+ "activeDirectories": [],
+ "encryption": {
+ "keySource": "Microsoft.NetApp"
+ }
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-05-20T15:56:13.7706505Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-22T11:59:56.4841706Z"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-42c027f6?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "23",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2"
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/aac01544-5fee-47f2-b202-95c3a8a09079?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be3a36de-1d2c-4140-afbf-7d2f909ad968?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "699",
+ "Content-Length": "702",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:07:31 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A07%3A31.2408228Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 01:59:03 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T01%3A59%3A02.3633207Z\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": "7ec695c6-cbce-4b98-aa1f-1e67b64312cd",
+ "x-ms-correlation-request-id": "62fc3773-2f0a-4936-a4f9-cccffb25cba8",
"x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T150732Z:7ec695c6-cbce-4b98-aa1f-1e67b64312cd",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T015903Z:62fc3773-2f0a-4936-a4f9-cccffb25cba8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T15%3A07%3A31.2408228Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T01%3A59%3A02.3633207Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:07:27.4689880Z"
+ "CreatedOnDate": "2022-07-27T01:58:57.7955302Z"
},
"properties": {
"provisioningState": "Creating"
@@ -258,21 +361,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-25T15:07:31.0503713Z",
+ "createdAt": "2022-07-27T01:59:02.1875647Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:07:31.0503713Z"
+ "lastModifiedAt": "2022-07-27T01:59:02.1875647Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/aac01544-5fee-47f2-b202-95c3a8a09079?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be3a36de-1d2c-4140-afbf-7d2f909ad968?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +383,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:08:02 GMT",
+ "Date": "Wed, 27 Jul 2022 01:59:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +391,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c34fc7b9-7304-43ef-9613-321f79cf93ab",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T150802Z:c34fc7b9-7304-43ef-9613-321f79cf93ab",
+ "x-ms-correlation-request-id": "940c0e44-0fb6-4d17-840b-487b1b6ef0d5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T015933Z:940c0e44-0fb6-4d17-840b-487b1b6ef0d5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/aac01544-5fee-47f2-b202-95c3a8a09079",
- "name": "aac01544-5fee-47f2-b202-95c3a8a09079",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be3a36de-1d2c-4140-afbf-7d2f909ad968",
+ "name": "be3a36de-1d2c-4140-afbf-7d2f909ad968",
"status": "Succeeded",
- "startTime": "2022-05-25T15:07:31.2326306Z",
- "endTime": "2022-05-25T15:07:31.2638821Z",
+ "startTime": "2022-07-27T01:59:02.3640709Z",
+ "endTime": "2022-07-27T01:59:02.4109509Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-42c027f6"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-42c027f6?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +423,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:08:02 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A07%3A31.2667127Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 01:59:34 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T01%3A59%3A02.4162079Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,35 +432,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f67f85f3-02a8-4e43-895a-920d771d938b",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T150803Z:f67f85f3-02a8-4e43-895a-920d771d938b",
+ "x-ms-correlation-request-id": "ffccfed1-b3e3-4d82-a766-bc996076c27a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T015934Z:ffccfed1-b3e3-4d82-a766-bc996076c27a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T15%3A07%3A31.2667127Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T01%3A59%3A02.4162079Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:07:27.4689880Z"
+ "CreatedOnDate": "2022-07-27T01:58:57.7955302Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -370,67 +473,111 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-25T15:07:31.0503713Z",
+ "createdAt": "2022-07-27T01:59:02.1875647Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:07:31.0503713Z"
+ "lastModifiedAt": "2022-07-27T01:59:02.1875647Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
+ "Content-Length": "3086",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:08:02 GMT",
+ "Date": "Wed, 27 Jul 2022 01:59: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": "6f5c20c4-9a88-4108-99c8-04626e4b224c",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T150803Z:6f5c20c4-9a88-4108-99c8-04626e4b224c",
- "X-Powered-By": "ASP.NET"
+ "x-ms-correlation-request-id": "f44622bb-c9b3-4c7f-bb5e-a3e7c8d68248",
+ "x-ms-original-request-ids": [
+ "05a1bee4-265f-4fc0-b2d7-e0d68ff6c7b1",
+ "45144883-e8d6-4d37-8682-4ad7af1e5559"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": "11996",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T015935Z:f44622bb-c9b3-4c7f-bb5e-a3e7c8d68248"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T15%3A07%3A31.2667127Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T01%3A59%3A02.4162079Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T01:58:57.7955302Z"
+ },
+ "properties": {
+ "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"
+ },
+ "provisioningState": "Succeeded"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-27T01:59:02.1875647Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T01:59:02.1875647Z"
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-86eb264b",
+ "name": "sdk-py-tests-acc-1-86eb264b",
+ "type": "Microsoft.NetApp/netAppAccounts",
+ "etag": "W/\u0022datetime\u00272022-07-22T23%3A12%3A15.7958346Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:07:27.4689880Z"
+ "CreatedOnDate": "2022-07-22T23:12:13.2600696Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -443,53 +590,78 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-25T15:07:31.0503713Z",
+ "createdAt": "2022-07-22T23:12:14.7465971Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:07:31.0503713Z"
+ "lastModifiedAt": "2022-07-22T23:12:14.7465971Z"
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
+ "name": "sdk-py-tests-acc-1",
+ "type": "Microsoft.NetApp/netAppAccounts",
+ "etag": "W/\u0022datetime\u00272022-07-22T12%3A00%3A01.0749963Z\u0027\u0022",
+ "location": "southcentralusstage",
+ "tags": {
+ "CreatedOnDate": "2022-07-22T11:59:54.7922660Z"
+ },
+ "properties": {
+ "provisioningState": "Succeeded",
+ "activeDirectories": [],
+ "encryption": {
+ "keySource": "Microsoft.NetApp"
+ }
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-05-20T15:56:13.7706505Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-22T11:59:56.4841706Z"
}
}
]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-42c027f6?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/1c4198af-9eb3-4454-af3e-d5cf9d23990a?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d18b14f2-820c-4220-8e7c-35bc1c409ce2?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Wed, 25 May 2022 15:08:03 GMT",
+ "Date": "Wed, 27 Jul 2022 01:59:36 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1c4198af-9eb3-4454-af3e-d5cf9d23990a?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d18b14f2-820c-4220-8e7c-35bc1c409ce2?api-version=2022-03-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": "c569b13c-7a04-432c-bd5e-760ea53f3b53",
+ "x-ms-correlation-request-id": "f1c8f58b-9d98-4a7b-90e1-c3e0f7bbf7aa",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T150804Z:c569b13c-7a04-432c-bd5e-760ea53f3b53",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T015936Z:f1c8f58b-9d98-4a7b-90e1-c3e0f7bbf7aa",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1c4198af-9eb3-4454-af3e-d5cf9d23990a?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d18b14f2-820c-4220-8e7c-35bc1c409ce2?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -497,7 +669,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:08:34 GMT",
+ "Date": "Wed, 27 Jul 2022 02:00:06 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -505,31 +677,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "941a7c74-af14-4cea-827e-0f55521e7f37",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T150834Z:941a7c74-af14-4cea-827e-0f55521e7f37",
+ "x-ms-correlation-request-id": "c6003338-5ab8-46b1-8fd1-bbd9a20b043e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020006Z:c6003338-5ab8-46b1-8fd1-bbd9a20b043e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1c4198af-9eb3-4454-af3e-d5cf9d23990a",
- "name": "1c4198af-9eb3-4454-af3e-d5cf9d23990a",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d18b14f2-820c-4220-8e7c-35bc1c409ce2",
+ "name": "d18b14f2-820c-4220-8e7c-35bc1c409ce2",
"status": "Succeeded",
- "startTime": "2022-05-25T15:08:04.0761298Z",
- "endTime": "2022-05-25T15:08:04.1229807Z",
+ "startTime": "2022-07-27T01:59:36.4417205Z",
+ "endTime": "2022-07-27T01:59:36.4885972Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-42c027f6"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1c4198af-9eb3-4454-af3e-d5cf9d23990a?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d18b14f2-820c-4220-8e7c-35bc1c409ce2?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -537,7 +709,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:08:34 GMT",
+ "Date": "Wed, 27 Jul 2022 02:00:06 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -545,19 +717,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e6c92aa4-5289-4828-92b4-fc3a9ea01e9a",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T150834Z:e6c92aa4-5289-4828-92b4-fc3a9ea01e9a",
+ "x-ms-correlation-request-id": "daa807d3-6187-4040-a4b7-8d1e197cb3ae",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020007Z:daa807d3-6187-4040-a4b7-8d1e197cb3ae",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T15%3A08%3A04.0818727Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T01%3A59%3A36.434039Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:07:27.4689880Z"
+ "CreatedOnDate": "2022-07-27T01:58:57.7955302Z"
},
"properties": {
"encryption": {
@@ -568,72 +740,144 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-25T15:07:31.0503713Z",
+ "createdAt": "2022-07-27T01:59:02.1875647Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:07:31.0503713Z"
+ "lastModifiedAt": "2022-07-27T01:59:02.1875647Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-42c027f6?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:08:34 GMT",
+ "Date": "Wed, 27 Jul 2022 02:00:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d3be5907-31d5-4717-9fd9-08da41f0f589",
+ "x-ms-correlation-request-id": "5a838329-4cfe-4c16-ba33-b9559a48b251",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T150834Z:d3be5907-31d5-4717-9fd9-08da41f0f589"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020007Z:5a838329-4cfe-4c16-ba33-b9559a48b251"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-42c027f6\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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-Length": "1932",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:08:34 GMT",
+ "Date": "Wed, 27 Jul 2022 02:00:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7f900eaf-40b2-4e9a-9a8d-e9ef6481f719",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T150834Z:7f900eaf-40b2-4e9a-9a8d-e9ef6481f719"
+ "x-ms-correlation-request-id": "9d3ccf39-4ab4-4abc-9500-d03d2239fd41",
+ "x-ms-original-request-ids": [
+ "1240b6ad-58bb-4bf4-9247-8d94e90cbc9e",
+ "584a7e27-d6cb-4349-b21f-94b643453e42"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020007Z:9d3ccf39-4ab4-4abc-9500-d03d2239fd41"
},
"ResponseBody": {
- "value": []
+ "value": [
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-86eb264b",
+ "name": "sdk-py-tests-acc-1-86eb264b",
+ "type": "Microsoft.NetApp/netAppAccounts",
+ "etag": "W/\u0022datetime\u00272022-07-22T23%3A12%3A15.7958346Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-22T23:12:13.2600696Z"
+ },
+ "properties": {
+ "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"
+ },
+ "provisioningState": "Succeeded"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-22T23:12:14.7465971Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-22T23:12:14.7465971Z"
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
+ "name": "sdk-py-tests-acc-1",
+ "type": "Microsoft.NetApp/netAppAccounts",
+ "etag": "W/\u0022datetime\u00272022-07-22T12%3A00%3A01.0749963Z\u0027\u0022",
+ "location": "southcentralusstage",
+ "tags": {
+ "CreatedOnDate": "2022-07-22T11:59:54.7922660Z"
+ },
+ "properties": {
+ "provisioningState": "Succeeded",
+ "activeDirectories": [],
+ "encryption": {
+ "keySource": "Microsoft.NetApp"
+ }
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-05-20T15:56:13.7706505Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-22T11:59:56.4841706Z"
+ }
+ }
+ ]
}
}
],
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 8ecd06235d7d..87dbaba683f1 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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": "Wed, 25 May 2022 15:34:49 GMT",
+ "Date": "Wed, 27 Jul 2022 02:02: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.12794.5 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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": "Wed, 25 May 2022 15:34:49 GMT",
+ "Date": "Wed, 27 Jul 2022 02:02: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.12794.4 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - WEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "5cea03ad-b5f7-4f05-a8e5-b646673c9599",
+ "client-request-id": "5daaf588-22e5-43c8-8859-d1e25c10a1d8",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "5cea03ad-b5f7-4f05-a8e5-b646673c9599",
+ "client-request-id": "5daaf588-22e5-43c8-8859-d1e25c10a1d8",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:34:49 GMT",
+ "Date": "Wed, 27 Jul 2022 02:02:24 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12794.5 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - NEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,45 +213,45 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-f2b1272a?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "23",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2"
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f9404b56-21b5-41f0-94cc-5b83da410c21?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2af62119-c778-4890-a910-a7cdd861b9f0?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "699",
+ "Content-Length": "702",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:34:58 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A34%3A57.8679638Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 02:02:28 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T02%3A02%3A27.6819991Z\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": "4c2b37fd-98d7-406c-ba0b-3acdbf1d2c50",
- "x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153459Z:4c2b37fd-98d7-406c-ba0b-3acdbf1d2c50",
+ "x-ms-correlation-request-id": "9132ade4-5aa4-4573-a453-4512db9c0bce",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020228Z:9132ade4-5aa4-4573-a453-4512db9c0bce",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T15%3A34%3A57.8679638Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T02%3A02%3A27.6819991Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:34:53.4809966Z"
+ "CreatedOnDate": "2022-07-27T02:02:25.7356129Z"
},
"properties": {
"provisioningState": "Creating"
@@ -258,21 +259,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-25T15:34:57.1082933Z",
+ "createdAt": "2022-07-27T02:02:27.5063387Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:34:57.1082933Z"
+ "lastModifiedAt": "2022-07-27T02:02:27.5063387Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f9404b56-21b5-41f0-94cc-5b83da410c21?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2af62119-c778-4890-a910-a7cdd861b9f0?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +281,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:35:28 GMT",
+ "Date": "Wed, 27 Jul 2022 02:02:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +289,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "67e3018e-9595-49b6-8f72-cae69a64a18f",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153529Z:67e3018e-9595-49b6-8f72-cae69a64a18f",
+ "x-ms-correlation-request-id": "59a883e3-0cd7-406e-b500-a47081c2d714",
+ "x-ms-ratelimit-remaining-subscription-reads": "11979",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020259Z:59a883e3-0cd7-406e-b500-a47081c2d714",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f9404b56-21b5-41f0-94cc-5b83da410c21",
- "name": "f9404b56-21b5-41f0-94cc-5b83da410c21",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2af62119-c778-4890-a910-a7cdd861b9f0",
+ "name": "2af62119-c778-4890-a910-a7cdd861b9f0",
"status": "Succeeded",
- "startTime": "2022-05-25T15:34:57.8636234Z",
- "endTime": "2022-05-25T15:34:57.8948924Z",
+ "startTime": "2022-07-27T02:02:27.6944366Z",
+ "endTime": "2022-07-27T02:02:27.7725737Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-f2b1272a"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-f2b1272a?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +321,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:35:29 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A34%3A57.8988882Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 02:03:00 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T02%3A02%3A27.7764363Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,35 +330,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3aa20936-530c-48b7-850c-670bbb79a2fb",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153529Z:3aa20936-530c-48b7-850c-670bbb79a2fb",
+ "x-ms-correlation-request-id": "3e961e74-9069-449c-88af-4e968147734e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11978",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020300Z:3e961e74-9069-449c-88af-4e968147734e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T15%3A34%3A57.8988882Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T02%3A02%3A27.7764363Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:34:53.4809966Z"
+ "CreatedOnDate": "2022-07-27T02:02:25.7356129Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -370,21 +371,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-25T15:34:57.1082933Z",
+ "createdAt": "2022-07-27T02:02:27.5063387Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:34:57.1082933Z"
+ "lastModifiedAt": "2022-07-27T02:02:27.5063387Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-f2b1272a?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -392,8 +393,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:35:29 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A34%3A57.8988882Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 02:03:00 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T02%3A02%3A27.7764363Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -401,35 +402,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "728b1d76-2981-4b68-bea1-f9d86e1b2f9e",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153530Z:728b1d76-2981-4b68-bea1-f9d86e1b2f9e",
+ "x-ms-correlation-request-id": "669b5488-db5c-45f1-9ad2-b290330c7858",
+ "x-ms-ratelimit-remaining-subscription-reads": "11977",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020300Z:669b5488-db5c-45f1-9ad2-b290330c7858",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T15%3A34%3A57.8988882Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T02%3A02%3A27.7764363Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:34:53.4809966Z"
+ "CreatedOnDate": "2022-07-27T02:02:25.7356129Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -442,51 +443,51 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-25T15:34:57.1082933Z",
+ "createdAt": "2022-07-27T02:02:27.5063387Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:34:57.1082933Z"
+ "lastModifiedAt": "2022-07-27T02:02:27.5063387Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-f2b1272a?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/1885938e-042a-490d-b394-943bc4f994c1?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ad10d04f-4cc8-426b-87fc-c6e9de374b9c?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Wed, 25 May 2022 15:35:30 GMT",
+ "Date": "Wed, 27 Jul 2022 02:03:01 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1885938e-042a-490d-b394-943bc4f994c1?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ad10d04f-4cc8-426b-87fc-c6e9de374b9c?api-version=2022-03-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": "8d2736d9-f455-47f6-b755-5305e936aa3b",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153530Z:8d2736d9-f455-47f6-b755-5305e936aa3b",
+ "x-ms-correlation-request-id": "f12e19e3-7a6b-489e-8799-51d851a2573e",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14996",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020301Z:f12e19e3-7a6b-489e-8799-51d851a2573e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1885938e-042a-490d-b394-943bc4f994c1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ad10d04f-4cc8-426b-87fc-c6e9de374b9c?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -494,7 +495,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:36:01 GMT",
+ "Date": "Wed, 27 Jul 2022 02:03:31 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -502,31 +503,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e8b46823-b4c8-4e1e-a073-59379ed92820",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153601Z:e8b46823-b4c8-4e1e-a073-59379ed92820",
+ "x-ms-correlation-request-id": "41618c5f-b3a6-416c-b4a6-0d4d497031ed",
+ "x-ms-ratelimit-remaining-subscription-reads": "11976",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020331Z:41618c5f-b3a6-416c-b4a6-0d4d497031ed",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1885938e-042a-490d-b394-943bc4f994c1",
- "name": "1885938e-042a-490d-b394-943bc4f994c1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ad10d04f-4cc8-426b-87fc-c6e9de374b9c",
+ "name": "ad10d04f-4cc8-426b-87fc-c6e9de374b9c",
"status": "Succeeded",
- "startTime": "2022-05-25T15:35:30.7489052Z",
- "endTime": "2022-05-25T15:35:30.7645346Z",
+ "startTime": "2022-07-27T02:03:01.455262Z",
+ "endTime": "2022-07-27T02:03:01.5021464Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-f2b1272a"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1885938e-042a-490d-b394-943bc4f994c1?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ad10d04f-4cc8-426b-87fc-c6e9de374b9c?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -534,7 +535,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:36:01 GMT",
+ "Date": "Wed, 27 Jul 2022 02:03:32 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -542,19 +543,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "207b63b1-8819-4bac-9c46-9c1dbd999a89",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153601Z:207b63b1-8819-4bac-9c46-9c1dbd999a89",
+ "x-ms-correlation-request-id": "551e6a3c-b3c2-413a-8d7f-442be9c6c22c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11975",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020332Z:551e6a3c-b3c2-413a-8d7f-442be9c6c22c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T15%3A35%3A30.7400395Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T02%3A03%3A01.4474704Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:34:53.4809966Z"
+ "CreatedOnDate": "2022-07-27T02:02:25.7356129Z"
},
"properties": {
"encryption": {
@@ -565,41 +566,41 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-25T15:34:57.1082933Z",
+ "createdAt": "2022-07-27T02:02:27.5063387Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:34:57.1082933Z"
+ "lastModifiedAt": "2022-07-27T02:02:27.5063387Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-f2b1272a?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:36:01 GMT",
+ "Date": "Wed, 27 Jul 2022 02:03:32 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c6b890ef-c753-4ba0-b292-c95744715e2e",
+ "x-ms-correlation-request-id": "1a75cf7b-a435-4dfd-88f4-6a7ce592815f",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153601Z:c6b890ef-c753-4ba0-b292-c95744715e2e"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020332Z:1a75cf7b-a435-4dfd-88f4-6a7ce592815f"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-f2b1272a\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
}
}
}
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 8400d10a5c49..59f081b3b865 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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": "Wed, 25 May 2022 15:32:23 GMT",
+ "Date": "Wed, 27 Jul 2022 02:00: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.12794.5 - NEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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": "Wed, 25 May 2022 15:32:23 GMT",
+ "Date": "Wed, 27 Jul 2022 02:00: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.12794.4 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - WEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "b21e27eb-ff17-44f5-a795-4d12eb5620aa",
+ "client-request-id": "db7e5559-f8bf-4700-8eea-74fdacbf4f38",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "b21e27eb-ff17-44f5-a795-4d12eb5620aa",
+ "client-request-id": "db7e5559-f8bf-4700-8eea-74fdacbf4f38",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:32:23 GMT",
+ "Date": "Wed, 27 Jul 2022 02:00:08 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12794.5 - NEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - NEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,45 +213,147 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Encoding": "gzip",
+ "Content-Length": "1932",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Wed, 27 Jul 2022 02:00:09 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "d7fc842d-07b7-4b79-b23f-ae530cec13f7",
+ "x-ms-original-request-ids": [
+ "c3487d54-ca94-44b7-a48a-c51b83e1e1bc",
+ "1e66c3c6-e01c-4a04-b207-8bedf757a677"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020009Z:d7fc842d-07b7-4b79-b23f-ae530cec13f7"
+ },
+ "ResponseBody": {
+ "value": [
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-86eb264b",
+ "name": "sdk-py-tests-acc-1-86eb264b",
+ "type": "Microsoft.NetApp/netAppAccounts",
+ "etag": "W/\u0022datetime\u00272022-07-22T23%3A12%3A15.7958346Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-22T23:12:13.2600696Z"
+ },
+ "properties": {
+ "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"
+ },
+ "provisioningState": "Succeeded"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-22T23:12:14.7465971Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-22T23:12:14.7465971Z"
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
+ "name": "sdk-py-tests-acc-1",
+ "type": "Microsoft.NetApp/netAppAccounts",
+ "etag": "W/\u0022datetime\u00272022-07-22T12%3A00%3A01.0749963Z\u0027\u0022",
+ "location": "southcentralusstage",
+ "tags": {
+ "CreatedOnDate": "2022-07-22T11:59:54.7922660Z"
+ },
+ "properties": {
+ "provisioningState": "Succeeded",
+ "activeDirectories": [],
+ "encryption": {
+ "keySource": "Microsoft.NetApp"
+ }
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-05-20T15:56:13.7706505Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-22T11:59:56.4841706Z"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af624df?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "23",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2"
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/927e531c-7c3d-4373-9582-98745940e64e?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bbb901b4-9b40-4021-9861-90c109167fb7?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "699",
+ "Content-Length": "700",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:32:29 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A32%3A28.9959014Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 02:00:13 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T02%3A00%3A12.2667349Z\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": "6dbf2cd3-4c69-416f-b157-3612e1f88bb3",
- "x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153230Z:6dbf2cd3-4c69-416f-b157-3612e1f88bb3",
+ "x-ms-correlation-request-id": "113b484e-a9ee-4e4f-b533-36538fc86455",
+ "x-ms-ratelimit-remaining-subscription-writes": "1198",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020013Z:113b484e-a9ee-4e4f-b533-36538fc86455",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T15%3A32%3A28.9959014Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T02%3A00%3A12.2667349Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:32:25.2569770Z"
+ "CreatedOnDate": "2022-07-27T02:00:10.2200006Z"
},
"properties": {
"provisioningState": "Creating"
@@ -258,21 +361,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-25T15:32:28.1419067Z",
+ "createdAt": "2022-07-27T02:00:12.1087958Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:32:28.1419067Z"
+ "lastModifiedAt": "2022-07-27T02:00:12.1087958Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/927e531c-7c3d-4373-9582-98745940e64e?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bbb901b4-9b40-4021-9861-90c109167fb7?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +383,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:33:00 GMT",
+ "Date": "Wed, 27 Jul 2022 02:00:43 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +391,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5875657c-e800-45cc-88f1-fa3720e7269c",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153300Z:5875657c-e800-45cc-88f1-fa3720e7269c",
+ "x-ms-correlation-request-id": "e721b4b5-1c43-4444-9225-aaa47b534bed",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020043Z:e721b4b5-1c43-4444-9225-aaa47b534bed",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/927e531c-7c3d-4373-9582-98745940e64e",
- "name": "927e531c-7c3d-4373-9582-98745940e64e",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bbb901b4-9b40-4021-9861-90c109167fb7",
+ "name": "bbb901b4-9b40-4021-9861-90c109167fb7",
"status": "Succeeded",
- "startTime": "2022-05-25T15:32:28.9971639Z",
- "endTime": "2022-05-25T15:32:29.0440147Z",
+ "startTime": "2022-07-27T02:00:12.2734301Z",
+ "endTime": "2022-07-27T02:00:12.3203852Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af624df"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af624df?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +423,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:33:00 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A32%3A29.0482966Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 02:00:43 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T02%3A00%3A12.3247615Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,35 +432,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3ffa407e-c45d-4899-a31e-4a79ba4dd5a5",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153300Z:3ffa407e-c45d-4899-a31e-4a79ba4dd5a5",
+ "x-ms-correlation-request-id": "28d178c2-eca1-4f7b-9a46-a2ef91ce298b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020044Z:28d178c2-eca1-4f7b-9a46-a2ef91ce298b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T15%3A32%3A29.0482966Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T02%3A00%3A12.3247615Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:32:25.2569770Z"
+ "CreatedOnDate": "2022-07-27T02:00:10.2200006Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -370,53 +473,53 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-25T15:32:28.1419067Z",
+ "createdAt": "2022-07-27T02:00:12.1087958Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:32:28.1419067Z"
+ "lastModifiedAt": "2022-07-27T02:00:12.1087958Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-af624df?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "23",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2"
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a408f323-df52-492c-ba81-3647ee85698f?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2be0fba-950c-4996-9cea-e399237fb066?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "698",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:33:03 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A33%3A02.459958Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 02:00:46 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T02%3A00%3A45.8816921Z\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": "57c5910a-9495-4e43-ad9a-71e1d7fe16c4",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153303Z:57c5910a-9495-4e43-ad9a-71e1d7fe16c4",
+ "x-ms-correlation-request-id": "d610eddf-b9ff-42b8-b46a-e0a91d4eee23",
+ "x-ms-ratelimit-remaining-subscription-writes": "1197",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020047Z:d610eddf-b9ff-42b8-b46a-e0a91d4eee23",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2",
- "name": "sdk-py-tests-acc-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T15%3A33%3A02.459958Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T02%3A00%3A45.8816921Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:33:01.2437692Z"
+ "CreatedOnDate": "2022-07-27T02:00:44.5245496Z"
},
"properties": {
"provisioningState": "Creating"
@@ -424,21 +527,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-25T15:33:02.3139835Z",
+ "createdAt": "2022-07-27T02:00:45.727929Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:33:02.3139835Z"
+ "lastModifiedAt": "2022-07-27T02:00:45.727929Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a408f323-df52-492c-ba81-3647ee85698f?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2be0fba-950c-4996-9cea-e399237fb066?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -446,7 +549,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:33:33 GMT",
+ "Date": "Wed, 27 Jul 2022 02:01:17 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -454,31 +557,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d9006ac1-4240-4e88-bfee-a7d1971feb94",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153333Z:d9006ac1-4240-4e88-bfee-a7d1971feb94",
+ "x-ms-correlation-request-id": "f9e2f665-e0df-40a2-bdba-96ee75bdcd44",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020117Z:f9e2f665-e0df-40a2-bdba-96ee75bdcd44",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a408f323-df52-492c-ba81-3647ee85698f",
- "name": "a408f323-df52-492c-ba81-3647ee85698f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2be0fba-950c-4996-9cea-e399237fb066",
+ "name": "c2be0fba-950c-4996-9cea-e399237fb066",
"status": "Succeeded",
- "startTime": "2022-05-25T15:33:02.4645562Z",
- "endTime": "2022-05-25T15:33:02.4958323Z",
+ "startTime": "2022-07-27T02:00:45.8804782Z",
+ "endTime": "2022-07-27T02:00:45.9272615Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-af624df"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-af624df?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -486,8 +589,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:33:33 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A33%3A02.5001044Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 02:01:17 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T02%3A00%3A45.9318323Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -495,35 +598,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "695e5e53-8696-41e8-af2f-320068603130",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153334Z:695e5e53-8696-41e8-af2f-320068603130",
+ "x-ms-correlation-request-id": "78958d43-c0b2-42ee-9f05-8cf480658a8f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020118Z:78958d43-c0b2-42ee-9f05-8cf480658a8f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2",
- "name": "sdk-py-tests-acc-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T15%3A33%3A02.5001044Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T02%3A00%3A45.9318323Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:33:01.2437692Z"
+ "CreatedOnDate": "2022-07-27T02:00:44.5245496Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -536,67 +639,69 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-25T15:33:02.3139835Z",
+ "createdAt": "2022-07-27T02:00:45.727929Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:33:02.3139835Z"
+ "lastModifiedAt": "2022-07-27T02:00:45.727929Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
+ "Content-Length": "4234",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:33:34 GMT",
+ "Date": "Wed, 27 Jul 2022 02:01: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": "bdeeeced-b670-4a42-8a9f-b82863f1048c",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153334Z:bdeeeced-b670-4a42-8a9f-b82863f1048c",
- "X-Powered-By": "ASP.NET"
+ "x-ms-correlation-request-id": "6c0fbbda-513c-412b-90ec-e3e600e527c7",
+ "x-ms-original-request-ids": [
+ "7537c22c-b565-4934-ab6a-903da6202966",
+ "cf8a1a9e-3295-4aa9-bef6-b32f1f257464"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": "11986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020119Z:6c0fbbda-513c-412b-90ec-e3e600e527c7"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-86eb264b",
+ "name": "sdk-py-tests-acc-1-86eb264b",
"type": "Microsoft.NetApp/netAppAccounts",
- "etag": "W/\u0022datetime\u00272022-05-25T15%3A32%3A29.0482966Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-22T23%3A12%3A15.7958346Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:32:25.2569770Z"
+ "CreatedOnDate": "2022-07-22T23:12:13.2600696Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -609,36 +714,36 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-25T15:32:28.1419067Z",
+ "createdAt": "2022-07-22T23:12:14.7465971Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:32:28.1419067Z"
+ "lastModifiedAt": "2022-07-22T23:12:14.7465971Z"
}
},
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2",
- "name": "sdk-py-tests-acc-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T15%3A33%3A02.5001044Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T02%3A00%3A12.3247615Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:33:01.2437692Z"
+ "CreatedOnDate": "2022-07-27T02:00:10.2200006Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -651,53 +756,120 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-25T15:33:02.3139835Z",
+ "createdAt": "2022-07-27T02:00:12.1087958Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:33:02.3139835Z"
+ "lastModifiedAt": "2022-07-27T02:00:12.1087958Z"
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T02%3A00%3A45.9318323Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T02:00:44.5245496Z"
+ },
+ "properties": {
+ "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"
+ },
+ "provisioningState": "Succeeded"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-27T02:00:45.727929Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T02:00:45.727929Z"
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
+ "name": "sdk-py-tests-acc-1",
+ "type": "Microsoft.NetApp/netAppAccounts",
+ "etag": "W/\u0022datetime\u00272022-07-22T12%3A00%3A01.0749963Z\u0027\u0022",
+ "location": "southcentralusstage",
+ "tags": {
+ "CreatedOnDate": "2022-07-22T11:59:54.7922660Z"
+ },
+ "properties": {
+ "provisioningState": "Succeeded",
+ "activeDirectories": [],
+ "encryption": {
+ "keySource": "Microsoft.NetApp"
+ }
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-05-20T15:56:13.7706505Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-22T11:59:56.4841706Z"
}
}
]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af624df?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/055046a9-d8a1-4cbf-80d0-568cb1582d70?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51cf6598-9fce-4c34-adb9-8dd9a7c30699?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Wed, 25 May 2022 15:33:34 GMT",
+ "Date": "Wed, 27 Jul 2022 02:01:19 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/055046a9-d8a1-4cbf-80d0-568cb1582d70?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51cf6598-9fce-4c34-adb9-8dd9a7c30699?api-version=2022-03-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": "c30b80c9-ea0c-4454-aa05-7f8fff26c2fb",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153335Z:c30b80c9-ea0c-4454-aa05-7f8fff26c2fb",
+ "x-ms-correlation-request-id": "917237ea-3d08-49b4-8502-e8ce28efeee9",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14998",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020119Z:917237ea-3d08-49b4-8502-e8ce28efeee9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/055046a9-d8a1-4cbf-80d0-568cb1582d70?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51cf6598-9fce-4c34-adb9-8dd9a7c30699?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -705,7 +877,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:34:04 GMT",
+ "Date": "Wed, 27 Jul 2022 02:01:50 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -713,31 +885,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5af111ad-df37-4129-869c-b388e35cac6d",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153405Z:5af111ad-df37-4129-869c-b388e35cac6d",
+ "x-ms-correlation-request-id": "46b8249f-3d2b-4315-8870-81610d1abec8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020150Z:46b8249f-3d2b-4315-8870-81610d1abec8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/055046a9-d8a1-4cbf-80d0-568cb1582d70",
- "name": "055046a9-d8a1-4cbf-80d0-568cb1582d70",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51cf6598-9fce-4c34-adb9-8dd9a7c30699",
+ "name": "51cf6598-9fce-4c34-adb9-8dd9a7c30699",
"status": "Succeeded",
- "startTime": "2022-05-25T15:33:35.0390846Z",
- "endTime": "2022-05-25T15:33:35.0703265Z",
+ "startTime": "2022-07-27T02:01:19.6686009Z",
+ "endTime": "2022-07-27T02:01:19.7154805Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af624df"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/055046a9-d8a1-4cbf-80d0-568cb1582d70?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51cf6598-9fce-4c34-adb9-8dd9a7c30699?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -745,7 +917,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:34:05 GMT",
+ "Date": "Wed, 27 Jul 2022 02:01:50 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -753,19 +925,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d1530d95-ee81-4690-a3b0-7d21d0ffbf32",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153405Z:d1530d95-ee81-4690-a3b0-7d21d0ffbf32",
+ "x-ms-correlation-request-id": "55450745-a9e1-4975-8dad-81afa7d6645e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020150Z:55450745-a9e1-4975-8dad-81afa7d6645e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T15%3A33%3A35.0404341Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T02%3A01%3A19.6658251Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:32:25.2569770Z"
+ "CreatedOnDate": "2022-07-27T02:00:10.2200006Z"
},
"properties": {
"encryption": {
@@ -776,82 +948,82 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-25T15:32:28.1419067Z",
+ "createdAt": "2022-07-27T02:00:12.1087958Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:32:28.1419067Z"
+ "lastModifiedAt": "2022-07-27T02:00:12.1087958Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af624df?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "249",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:34:05 GMT",
+ "Date": "Wed, 27 Jul 2022 02:01:50 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "79d6b34b-54b8-41fb-b934-bfbaed9a7fc6",
+ "x-ms-correlation-request-id": "15efea9c-10fe-4179-9dc8-1e472f660979",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153405Z:79d6b34b-54b8-41fb-b934-bfbaed9a7fc6"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020150Z:15efea9c-10fe-4179-9dc8-1e472f660979"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af624df\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-af624df?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/d287575c-35d9-44fc-8971-bbe6c6cf5102?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f277adab-39a6-4a09-8cdd-9fade3cf0e4f?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Wed, 25 May 2022 15:34:05 GMT",
+ "Date": "Wed, 27 Jul 2022 02:01:51 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d287575c-35d9-44fc-8971-bbe6c6cf5102?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f277adab-39a6-4a09-8cdd-9fade3cf0e4f?api-version=2022-03-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": "7c591e00-35f7-460a-90b6-ab3ff438d793",
- "x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153406Z:7c591e00-35f7-460a-90b6-ab3ff438d793",
+ "x-ms-correlation-request-id": "bac7b37e-b56c-46b3-be81-30633d30ac48",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020151Z:bac7b37e-b56c-46b3-be81-30633d30ac48",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d287575c-35d9-44fc-8971-bbe6c6cf5102?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f277adab-39a6-4a09-8cdd-9fade3cf0e4f?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -859,7 +1031,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:34:35 GMT",
+ "Date": "Wed, 27 Jul 2022 02:02:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -867,31 +1039,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2c63b0f9-3bf0-4399-8c49-815eed8475d1",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153436Z:2c63b0f9-3bf0-4399-8c49-815eed8475d1",
+ "x-ms-correlation-request-id": "a50a07bf-4949-4b45-8c08-8ec342d8b2b3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020221Z:a50a07bf-4949-4b45-8c08-8ec342d8b2b3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d287575c-35d9-44fc-8971-bbe6c6cf5102",
- "name": "d287575c-35d9-44fc-8971-bbe6c6cf5102",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f277adab-39a6-4a09-8cdd-9fade3cf0e4f",
+ "name": "f277adab-39a6-4a09-8cdd-9fade3cf0e4f",
"status": "Succeeded",
- "startTime": "2022-05-25T15:34:06.3320264Z",
- "endTime": "2022-05-25T15:34:06.3632362Z",
+ "startTime": "2022-07-27T02:01:51.2208808Z",
+ "endTime": "2022-07-27T02:01:51.2677719Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-af624df"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d287575c-35d9-44fc-8971-bbe6c6cf5102?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f277adab-39a6-4a09-8cdd-9fade3cf0e4f?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -899,7 +1071,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:34:36 GMT",
+ "Date": "Wed, 27 Jul 2022 02:02:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -907,19 +1079,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e1ed9f67-e2b3-4eda-aace-18570235fbe6",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153436Z:e1ed9f67-e2b3-4eda-aace-18570235fbe6",
+ "x-ms-correlation-request-id": "23564a9e-e27f-41e6-b175-00b6910c99f1",
+ "x-ms-ratelimit-remaining-subscription-reads": "11981",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020221Z:23564a9e-e27f-41e6-b175-00b6910c99f1",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2",
- "name": "sdk-py-tests-acc-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T15%3A34%3A06.3274809Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T02%3A01%3A51.2091199Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:33:01.2437692Z"
+ "CreatedOnDate": "2022-07-27T02:00:44.5245496Z"
},
"properties": {
"encryption": {
@@ -930,41 +1102,41 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-25T15:33:02.3139835Z",
+ "createdAt": "2022-07-27T02:00:45.727929Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:33:02.3139835Z"
+ "lastModifiedAt": "2022-07-27T02:00:45.727929Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-af624df?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "249",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:34:36 GMT",
+ "Date": "Wed, 27 Jul 2022 02:02:22 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fbf6a20d-b64e-4fbb-b611-52bde9d6ea5e",
+ "x-ms-correlation-request-id": "34e2a5b2-62bd-4640-bae0-73402c5b56d1",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153437Z:fbf6a20d-b64e-4fbb-b611-52bde9d6ea5e"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020222Z:34e2a5b2-62bd-4640-bae0-73402c5b56d1"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-af624df\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
}
}
}
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 a3ea2855013e..f61bfc970cf6 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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": "Wed, 25 May 2022 15:38:59 GMT",
+ "Date": "Wed, 27 Jul 2022 02:03:32 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.12794.5 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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": "Wed, 25 May 2022 15:38:59 GMT",
+ "Date": "Wed, 27 Jul 2022 02:03:32 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.12744.11 - NEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - WEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "ca786c51-ceda-4d6c-9b32-643dadc193ce",
+ "client-request-id": "6b768452-561c-4052-95cf-f5a570e17500",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "ca786c51-ceda-4d6c-9b32-643dadc193ce",
+ "client-request-id": "6b768452-561c-4052-95cf-f5a570e17500",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:38:59 GMT",
+ "Date": "Wed, 27 Jul 2022 02:03:33 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12794.5 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - WEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,45 +213,45 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-93b24c0?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "23",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2"
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d0fcbe15-4917-4ab7-a2e6-e4823c6b355f?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2068788-e2e6-459e-91ea-94eaf7bb0df0?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "699",
+ "Content-Length": "700",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:39:08 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A39%3A08.2322983Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 02:03:37 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T02%3A03%3A36.6065929Z\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": "273ac795-38cf-4250-adf8-646d7e159037",
- "x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153909Z:273ac795-38cf-4250-adf8-646d7e159037",
+ "x-ms-correlation-request-id": "b3c67bb9-537d-455a-8e4d-9af269729dec",
+ "x-ms-ratelimit-remaining-subscription-writes": "1195",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020337Z:b3c67bb9-537d-455a-8e4d-9af269729dec",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T15%3A39%3A08.2322983Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T02%3A03%3A36.6065929Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:39:03.5275127Z"
+ "CreatedOnDate": "2022-07-27T02:03:34.5776979Z"
},
"properties": {
"provisioningState": "Creating"
@@ -258,21 +259,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-25T15:39:07.3678171Z",
+ "createdAt": "2022-07-27T02:03:36.4278085Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:39:07.3678171Z"
+ "lastModifiedAt": "2022-07-27T02:03:36.4278085Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d0fcbe15-4917-4ab7-a2e6-e4823c6b355f?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2068788-e2e6-459e-91ea-94eaf7bb0df0?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +281,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:39:38 GMT",
+ "Date": "Wed, 27 Jul 2022 02:04:08 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +289,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fb495de0-7d58-45c0-9d48-9ad39f81b90d",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153939Z:fb495de0-7d58-45c0-9d48-9ad39f81b90d",
+ "x-ms-correlation-request-id": "2683cec6-8714-43b2-98bb-a3e97882d132",
+ "x-ms-ratelimit-remaining-subscription-reads": "11973",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020408Z:2683cec6-8714-43b2-98bb-a3e97882d132",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d0fcbe15-4917-4ab7-a2e6-e4823c6b355f",
- "name": "d0fcbe15-4917-4ab7-a2e6-e4823c6b355f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2068788-e2e6-459e-91ea-94eaf7bb0df0",
+ "name": "d2068788-e2e6-459e-91ea-94eaf7bb0df0",
"status": "Succeeded",
- "startTime": "2022-05-25T15:39:08.2257167Z",
- "endTime": "2022-05-25T15:39:08.2570112Z",
+ "startTime": "2022-07-27T02:03:36.6418604Z",
+ "endTime": "2022-07-27T02:03:36.6732662Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-93b24c0"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-93b24c0?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +321,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:39:39 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A39%3A08.2601887Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 02:04:08 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T02%3A03%3A36.676583Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,35 +330,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "52b93166-e21b-4e9f-8656-dc0ca855921c",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153940Z:52b93166-e21b-4e9f-8656-dc0ca855921c",
+ "x-ms-correlation-request-id": "7d912e62-104c-4314-be6b-41b5d3801050",
+ "x-ms-ratelimit-remaining-subscription-reads": "11972",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020408Z:7d912e62-104c-4314-be6b-41b5d3801050",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T15%3A39%3A08.2601887Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T02%3A03%3A36.676583Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:39:03.5275127Z"
+ "CreatedOnDate": "2022-07-27T02:03:34.5776979Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -370,15 +371,15 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-25T15:39:07.3678171Z",
+ "createdAt": "2022-07-27T02:03:36.4278085Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:39:07.3678171Z"
+ "lastModifiedAt": "2022-07-27T02:03:36.4278085Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-93b24c0?api-version=2022-03-01",
"RequestMethod": "PATCH",
"RequestHeaders": {
"Accept": "application/json",
@@ -386,7 +387,7 @@
"Connection": "keep-alive",
"Content-Length": "28",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
"tags": {
@@ -398,8 +399,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:39:40 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A39%3A40.4407162Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 02:04:10 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T02%3A04%3A09.1573258Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -407,37 +408,37 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2bea2afa-9ecc-4e01-93e5-734c129f6fc3",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153941Z:2bea2afa-9ecc-4e01-93e5-734c129f6fc3",
+ "x-ms-correlation-request-id": "c5fb6f5c-aa23-4b50-85a9-34c5117e45a7",
+ "x-ms-ratelimit-remaining-subscription-writes": "1194",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020410Z:c5fb6f5c-aa23-4b50-85a9-34c5117e45a7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T15%3A39%3A40.4407162Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T02%3A04%3A09.1573258Z\u0027\u0022",
+ "location": "westus2",
"tags": {
"Tag1": "Value2",
- "CreatedOnDate": "2022-05-25T15:39:40.1749490Z"
+ "CreatedOnDate": "2022-07-27T02:04:08.8634271Z"
},
"properties": {
"provisioningState": "Succeeded",
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -449,51 +450,51 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-25T15:39:07.3678171Z",
+ "createdAt": "2022-07-27T02:03:36.4278085Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:39:40.3365809Z"
+ "lastModifiedAt": "2022-07-27T02:04:09.0151307Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-93b24c0?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/de38f5f4-02be-427f-87ce-fecd7387dc8f?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/33644909-622e-4352-af4c-75b9d08607a4?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Wed, 25 May 2022 15:39:41 GMT",
+ "Date": "Wed, 27 Jul 2022 02:04:11 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/de38f5f4-02be-427f-87ce-fecd7387dc8f?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/33644909-622e-4352-af4c-75b9d08607a4?api-version=2022-03-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": "f906e275-e2cb-42b1-9c3b-7c0def26de1d",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153942Z:f906e275-e2cb-42b1-9c3b-7c0def26de1d",
+ "x-ms-correlation-request-id": "1056a700-fb4c-400a-828f-21f1c77ed2cb",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020411Z:1056a700-fb4c-400a-828f-21f1c77ed2cb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/de38f5f4-02be-427f-87ce-fecd7387dc8f?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/33644909-622e-4352-af4c-75b9d08607a4?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -501,7 +502,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:40:12 GMT",
+ "Date": "Wed, 27 Jul 2022 02:04:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -509,31 +510,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "515896bc-83c3-44f2-a76c-5446d834baa4",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154012Z:515896bc-83c3-44f2-a76c-5446d834baa4",
+ "x-ms-correlation-request-id": "12dd910a-b509-4b42-92b9-e3243e78f717",
+ "x-ms-ratelimit-remaining-subscription-reads": "11971",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020441Z:12dd910a-b509-4b42-92b9-e3243e78f717",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/de38f5f4-02be-427f-87ce-fecd7387dc8f",
- "name": "de38f5f4-02be-427f-87ce-fecd7387dc8f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/33644909-622e-4352-af4c-75b9d08607a4",
+ "name": "33644909-622e-4352-af4c-75b9d08607a4",
"status": "Succeeded",
- "startTime": "2022-05-25T15:39:42.2187752Z",
- "endTime": "2022-05-25T15:39:42.2500255Z",
+ "startTime": "2022-07-27T02:04:11.2403008Z",
+ "endTime": "2022-07-27T02:04:11.2715495Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-93b24c0"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/de38f5f4-02be-427f-87ce-fecd7387dc8f?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/33644909-622e-4352-af4c-75b9d08607a4?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -541,7 +542,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:40:12 GMT",
+ "Date": "Wed, 27 Jul 2022 02:04:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -549,20 +550,20 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ad1d7c14-24f6-471f-9eb6-4c3f0a083811",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154012Z:ad1d7c14-24f6-471f-9eb6-4c3f0a083811",
+ "x-ms-correlation-request-id": "af43dd9d-2dbb-4bce-aae3-cc339a74653b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11970",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020441Z:af43dd9d-2dbb-4bce-aae3-cc339a74653b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T15%3A39%3A42.214698Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T02%3A04%3A11.1461467Z\u0027\u0022",
+ "location": "westus2",
"tags": {
"Tag1": "Value2",
- "CreatedOnDate": "2022-05-25T15:39:40.1749490Z"
+ "CreatedOnDate": "2022-07-27T02:04:08.8634271Z"
},
"properties": {
"encryption": {
@@ -573,41 +574,41 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-25T15:39:07.3678171Z",
+ "createdAt": "2022-07-27T02:03:36.4278085Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:39:40.3365809Z"
+ "lastModifiedAt": "2022-07-27T02:04:09.0151307Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-93b24c0?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "249",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:40:12 GMT",
+ "Date": "Wed, 27 Jul 2022 02:04:42 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "52a3f095-3b7c-4097-b647-b998b9d22b28",
+ "x-ms-correlation-request-id": "b7254de4-fe45-4384-a667-5208671564fb",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154012Z:52a3f095-3b7c-4097-b647-b998b9d22b28"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T020442Z:b7254de4-fe45-4384-a667-5208671564fb"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-93b24c0\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
}
}
}
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 407dd118d5af..d56a3efb24dc 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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": "Wed, 25 May 2022 16:20:17 GMT",
+ "Date": "Tue, 26 Jul 2022 21:42: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.12794.5 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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": "Wed, 25 May 2022 16:20:17 GMT",
+ "Date": "Tue, 26 Jul 2022 21:42: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.12794.4 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - WEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "02e78a57-b1d6-4b47-909e-266357b16631",
+ "client-request-id": "34faab6d-c068-41b4-8d26-6f959080041e",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "02e78a57-b1d6-4b47-909e-266357b16631",
+ "client-request-id": "34faab6d-c068-41b4-8d26-6f959080041e",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:20:17 GMT",
+ "Date": "Tue, 26 Jul 2022 21:42:38 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12794.5 - NEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - NEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,67 +213,79 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "93",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2",
+ "properties": {
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ }
+ }
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7cdd053b-91d1-409e-b6c1-be2d28b54b2a?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/210a2494-3498-45ca-ba83-d0a56388244f?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Length": "698",
+ "Content-Length": "746",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:20:27 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T16%3A20%3A26.625604Z\u0027\u0022",
+ "Date": "Tue, 26 Jul 2022 21:42:42 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Retry-After": "3",
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a1c14069-b9dc-4993-a64f-143d264819f5",
- "x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162027Z:a1c14069-b9dc-4993-a64f-143d264819f5",
- "X-Powered-By": "ASP.NET"
+ "x-ms-arm-service-request-id": "46c97b09-7404-43bd-a511-f002d1050911",
+ "x-ms-correlation-request-id": "c0b5b0b3-821e-439d-8ac0-2f1b7e9df6c5",
+ "x-ms-ratelimit-remaining-subscription-writes": "1189",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214242Z:c0b5b0b3-821e-439d-8ac0-2f1b7e9df6c5"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
- "type": "Microsoft.NetApp/netAppAccounts",
- "etag": "W/\u0022datetime\u00272022-05-25T16%3A20%3A26.625604Z\u0027\u0022",
- "location": "southcentralusstage",
+ "name": "sdk-python-tests-vnet-westus2-aac12d96",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96",
+ "etag": "W/\u0022e033a582-3ea7-4f33-a916-f589e1f74161\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T16:20:20.6114629Z"
+ "CreatedOnDate": "2022-07-26T21:42:39.7428141Z"
},
"properties": {
- "provisioningState": "Creating"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T16:20:25.8801579Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T16:20:25.8801579Z"
+ "provisioningState": "Updating",
+ "resourceGuid": "087e0978-cc62-4644-813d-672e9b908a68",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7cdd053b-91d1-409e-b6c1-be2d28b54b2a?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/210a2494-3498-45ca-ba83-d0a56388244f?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,39 +293,34 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:20:57 GMT",
+ "Date": "Tue, 26 Jul 2022 21:42:45 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "e98932bb-ddf7-4410-ab00-787d96addb28",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162058Z:e98932bb-ddf7-4410-ab00-787d96addb28",
- "X-Powered-By": "ASP.NET"
+ "x-ms-arm-service-request-id": "177119a6-9f2a-4af5-b685-911194a3a790",
+ "x-ms-correlation-request-id": "9bab0fda-a755-4c63-b532-8f48674e939e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11943",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214245Z:9bab0fda-a755-4c63-b532-8f48674e939e"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7cdd053b-91d1-409e-b6c1-be2d28b54b2a",
- "name": "7cdd053b-91d1-409e-b6c1-be2d28b54b2a",
- "status": "Succeeded",
- "startTime": "2022-05-25T16:20:26.6259172Z",
- "endTime": "2022-05-25T16:20:26.6572192Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
- }
+ "status": "Succeeded"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,137 +328,129 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:20:58 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T16%3A20%3A26.6608868Z\u0027\u0022",
+ "Date": "Tue, 26 Jul 2022 21:42:45 GMT",
+ "ETag": "W/\u0022c9765218-d256-4e2e-8f44-0fc084e0b9e0\u0022",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "e9024673-bd8a-4b2b-93c9-3d70b7bed854",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162058Z:e9024673-bd8a-4b2b-93c9-3d70b7bed854",
- "X-Powered-By": "ASP.NET"
+ "x-ms-arm-service-request-id": "67947d69-2c81-4871-ae55-2de5d0967cc9",
+ "x-ms-correlation-request-id": "e00e533d-b1ac-4c02-9179-68516364b0c0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11942",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214245Z:e00e533d-b1ac-4c02-9179-68516364b0c0"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
- "type": "Microsoft.NetApp/netAppAccounts",
- "etag": "W/\u0022datetime\u00272022-05-25T16%3A20%3A26.6608868Z\u0027\u0022",
- "location": "southcentralusstage",
+ "name": "sdk-python-tests-vnet-westus2-aac12d96",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96",
+ "etag": "W/\u0022c9765218-d256-4e2e-8f44-0fc084e0b9e0\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T16:20:20.6114629Z"
+ "CreatedOnDate": "2022-07-26T21:42:39.7428141Z"
},
"properties": {
- "activeDirectories": [
- {
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
- "password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
- "status": "Created",
- "smbServerName": "testsmb",
- "organizationalUnit": "CN=Computers",
- "aesEncryption": false,
- "ldapSigning": false,
- "ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
- "encryptDCConnections": false,
- "ldapSearchScope": {}
- }
- ],
- "encryption": {
- "keySource": "Microsoft.NetApp"
+ "provisioningState": "Succeeded",
+ "resourceGuid": "087e0978-cc62-4644-813d-672e9b908a68",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
},
- "provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T16:20:25.8801579Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T16:20:25.8801579Z"
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96/subnets/default?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "150",
+ "Content-Length": "151",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
"properties": {
- "size": 4398046511104,
- "serviceLevel": "Premium",
- "coolAccess": false,
- "encryptionType": "Single"
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "properties": {
+ "serviceName": "Microsoft.Netapp/volumes"
+ }
+ }
+ ]
}
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d91d3012-9373-4422-8e9b-ff729ae5d7e6?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/031301ec-20d9-4a99-b691-3b116ce77dbd?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Length": "917",
+ "Content-Length": "1318",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:21:01 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T16%3A21%3A00.4226006Z\u0027\u0022",
+ "Date": "Tue, 26 Jul 2022 21:42:46 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Retry-After": "3",
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e0621e96-daae-4f17-a302-b589b53751ea",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162101Z:e0621e96-daae-4f17-a302-b589b53751ea",
- "X-Powered-By": "ASP.NET"
+ "x-ms-arm-service-request-id": "34f5c0a3-af2d-4a31-a47e-b26237a85f03",
+ "x-ms-correlation-request-id": "8b218244-b9c5-49ba-be53-47d05ac5e763",
+ "x-ms-ratelimit-remaining-subscription-writes": "1188",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214246Z:8b218244-b9c5-49ba-be53-47d05ac5e763"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools",
- "etag": "W/\u0022datetime\u00272022-05-25T16%3A21%3A00.4226006Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-25T16:20:58.7860675Z"
- },
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96/subnets/default",
+ "etag": "W/\u0022de22946d-c8f7-4d17-808d-0135539587bc\u0022",
"properties": {
- "serviceLevel": "Premium",
- "size": 4398046511104,
- "totalThroughputMibps": 0.0,
- "utilizedThroughputMibps": 0.0,
- "encryptionType": "Single",
- "coolAccess": false,
- "provisioningState": "Creating"
+ "provisioningState": "Updating",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u0022de22946d-c8f7-4d17-808d-0135539587bc\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
},
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T16:21:00.0495192Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T16:21:00.0495192Z"
- }
+ "type": "Microsoft.Network/virtualNetworks/subnets"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d91d3012-9373-4422-8e9b-ff729ae5d7e6?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/031301ec-20d9-4a99-b691-3b116ce77dbd?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -458,39 +458,34 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:21:31 GMT",
+ "Date": "Tue, 26 Jul 2022 21:42:49 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "c41dbd3e-592a-4613-ac19-d5461d0c7675",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162131Z:c41dbd3e-592a-4613-ac19-d5461d0c7675",
- "X-Powered-By": "ASP.NET"
+ "x-ms-arm-service-request-id": "92d16ed8-ee1d-495e-9996-3ecd314feb2c",
+ "x-ms-correlation-request-id": "cf278d39-294d-405e-a31d-cdd0ae7601d5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11941",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214249Z:cf278d39-294d-405e-a31d-cdd0ae7601d5"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d91d3012-9373-4422-8e9b-ff729ae5d7e6",
- "name": "d91d3012-9373-4422-8e9b-ff729ae5d7e6",
- "status": "Succeeded",
- "startTime": "2022-05-25T16:21:00.4316966Z",
- "endTime": "2022-05-25T16:21:01.6193102Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
- }
+ "status": "Succeeded"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96/subnets/default?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -498,399 +493,327 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:21:31 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T16%3A21%3A01.5948514Z\u0027\u0022",
+ "Date": "Tue, 26 Jul 2022 21:42:49 GMT",
+ "ETag": "W/\u00225042a45c-00ee-405a-a1cd-60f93d79ee79\u0022",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "ac493e95-3d9c-4088-8311-8879b5a135f1",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162131Z:ac493e95-3d9c-4088-8311-8879b5a135f1",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools",
- "etag": "W/\u0022datetime\u00272022-05-25T16%3A21%3A01.5948514Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-25T16:20:58.7860675Z"
- },
- "properties": {
- "poolId": "160f6865-9ae1-8b9e-e8f8-5dcc147cbad1",
- "serviceLevel": "Premium",
- "size": 4398046511104,
- "qosType": "Auto",
- "totalThroughputMibps": 256.0,
- "utilizedThroughputMibps": 0.0,
- "encryptionType": "Single",
- "coolAccess": false,
- "provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T16:21:00.0495192Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T16:21:00.0495192Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "PUT",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "800",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
- },
- "RequestBody": {
- "location": "southcentralusstage",
- "properties": {
- "creationToken": "sdk-py-tests-vol-1",
- "serviceLevel": "Premium",
- "usageThreshold": 107374182400,
- "protocolTypes": [
- "NFSv3"
- ],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "coolAccess": false,
- "unixPermissions": "0770",
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled"
- }
- },
- "StatusCode": 201,
- "ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1?api-version=2022-01-01",
- "Cache-Control": "no-cache",
- "Content-Length": "1567",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:21:46 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T16%3A21%3A45.8350241Z\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": "5affb4c2-af29-4157-bd1d-26bfe697e744",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162147Z:5affb4c2-af29-4157-bd1d-26bfe697e744",
- "X-Powered-By": "ASP.NET"
+ "x-ms-arm-service-request-id": "1977bdc4-c84f-480d-892b-74d51d513853",
+ "x-ms-correlation-request-id": "e3473dec-6033-4b04-a2bd-79b8fedaabb9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11940",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214250Z:e3473dec-6033-4b04-a2bd-79b8fedaabb9"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-25T16%3A21%3A45.8350241Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-25T16:21:42.1745275Z"
- },
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96/subnets/default",
+ "etag": "W/\u00225042a45c-00ee-405a-a1cd-60f93d79ee79\u0022",
"properties": {
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "usageThreshold": 107374182400,
- "protocolTypes": [
- "NFSv3"
+ "provisioningState": "Succeeded",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u00225042a45c-00ee-405a-a1cd-60f93d79ee79\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Creating"
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
},
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T16:21:43.4054126Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T16:21:43.4054126Z"
- }
+ "type": "Microsoft.Network/virtualNetworks/subnets"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 16:22: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": "eaaa8b96-0a9f-43d4-b73c-a358bfdf6c36",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162217Z:eaaa8b96-0a9f-43d4-b73c-a358bfdf6c36",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1",
- "name": "bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1",
- "status": "Creating",
- "startTime": "2022-05-25T16:21:45.840103Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1?api-version=2022-01-01",
+ "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-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "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": "Wed, 25 May 2022 16:22:46 GMT",
- "Expires": "-1",
- "Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Date": "Tue, 26 Jul 2022 21:42:49 GMT",
+ "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
+ "Set-Cookie": "[set-cookie;]",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
- "Transfer-Encoding": "chunked",
- "Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0220b42e-1f8a-41e3-be11-cc40ecb84d74",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162247Z:0220b42e-1f8a-41e3-be11-cc40ecb84d74",
- "X-Powered-By": "ASP.NET"
+ "x-ms-ests-server": "2.1.13355.6 - WEULR1 ProdSlices",
+ "X-XSS-Protection": "0"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1",
- "name": "bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1",
- "status": "Creating",
- "startTime": "2022-05-25T16:21:45.840103Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 16:23: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": "214e8529-b5b5-456d-80a5-8fdc2d5f6b98",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162317Z:214e8529-b5b5-456d-80a5-8fdc2d5f6b98",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1",
- "name": "bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1",
- "status": "Creating",
- "startTime": "2022-05-25T16:21:45.840103Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
+ "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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1?api-version=2022-01-01",
+ "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": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "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": "Wed, 25 May 2022 16:23:47 GMT",
- "Expires": "-1",
- "Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Date": "Tue, 26 Jul 2022 21:42:49 GMT",
+ "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
+ "Set-Cookie": "[set-cookie;]",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
- "Transfer-Encoding": "chunked",
- "Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "bf87e0c5-7d3b-4eb2-a707-ac30c0c14152",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162348Z:bf87e0c5-7d3b-4eb2-a707-ac30c0c14152",
- "X-Powered-By": "ASP.NET"
+ "x-ms-ests-server": "2.1.13315.8 - NEULR2 ProdSlices",
+ "X-XSS-Protection": "0"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1",
- "name": "bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1",
- "status": "Creating",
- "startTime": "2022-05-25T16:21:45.840103Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
+ "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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/oauth2/v2.0/token",
+ "RequestMethod": "POST",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
+ "client-request-id": "7f2e0b6b-4223-4482-aa63-c7c27f1d1a60",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "281",
+ "Content-Type": "application/x-www-form-urlencoded",
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.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.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
- "RequestBody": null,
+ "RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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-cache",
- "Content-Encoding": "gzip",
+ "Cache-Control": "no-store, no-cache",
+ "client-request-id": "7f2e0b6b-4223-4482-aa63-c7c27f1d1a60",
+ "Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:24:18 GMT",
+ "Date": "Tue, 26 Jul 2022 21:42:50 GMT",
"Expires": "-1",
+ "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Set-Cookie": "[set-cookie;]",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
- "Transfer-Encoding": "chunked",
- "Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a96e64a7-0dde-4a6e-b89c-0749067160fc",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162418Z:a96e64a7-0dde-4a6e-b89c-0749067160fc",
- "X-Powered-By": "ASP.NET"
+ "x-ms-clitelem": "1,0,0,,",
+ "x-ms-ests-server": "2.1.13355.6 - WEULR1 ProdSlices",
+ "X-XSS-Protection": "0"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1",
- "name": "bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1",
- "status": "Creating",
- "startTime": "2022-05-25T16:21:45.840103Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
+ "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/southcentralusstage/operationResults/bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96?api-version=2022-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "23",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "RequestBody": null,
- "StatusCode": 200,
+ "RequestBody": {
+ "location": "westus2"
+ },
+ "StatusCode": 201,
"ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9b7ed793-5e88-4370-8e97-78f81cd5f5a2?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "702",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:24:48 GMT",
+ "Date": "Tue, 26 Jul 2022 21:42:53 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T21%3A42%3A52.7323346Z\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": "c9e372fb-e48c-4c81-808e-fe70f02e2371",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162448Z:c9e372fb-e48c-4c81-808e-fe70f02e2371",
+ "x-ms-correlation-request-id": "6ab0a822-13e9-4a09-83dd-504023532651",
+ "x-ms-ratelimit-remaining-subscription-writes": "1187",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214253Z:6ab0a822-13e9-4a09-83dd-504023532651",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1",
- "name": "bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1",
- "status": "Creating",
- "startTime": "2022-05-25T16:21:45.840103Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T21%3A42%3A52.7323346Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T21:42:51.4724767Z"
+ },
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "provisioningState": "Creating"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-26T21:42:52.5674726Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-26T21:42:52.5674726Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9b7ed793-5e88-4370-8e97-78f81cd5f5a2?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -898,7 +821,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:25:18 GMT",
+ "Date": "Tue, 26 Jul 2022 21:43:23 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -906,31 +829,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b90f7f48-2d54-4f4b-9906-e8973773e4b2",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162518Z:b90f7f48-2d54-4f4b-9906-e8973773e4b2",
+ "x-ms-correlation-request-id": "7729476a-d250-4219-9e47-e55d6637e444",
+ "x-ms-ratelimit-remaining-subscription-reads": "11939",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214323Z:7729476a-d250-4219-9e47-e55d6637e444",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1",
- "name": "bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1",
- "status": "Creating",
- "startTime": "2022-05-25T16:21:45.840103Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9b7ed793-5e88-4370-8e97-78f81cd5f5a2",
+ "name": "9b7ed793-5e88-4370-8e97-78f81cd5f5a2",
+ "status": "Succeeded",
+ "startTime": "2022-07-26T21:42:52.7347689Z",
+ "endTime": "2022-07-26T21:42:52.7660211Z",
+ "percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -938,7 +861,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:25:48 GMT",
+ "Date": "Tue, 26 Jul 2022 21:43:23 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T21%3A42%3A52.7703771Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -946,180 +870,128 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "398fbe93-a0dc-46c3-a5a0-ae4737959661",
- "x-ms-ratelimit-remaining-subscription-reads": "11988",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162549Z:398fbe93-a0dc-46c3-a5a0-ae4737959661",
+ "x-ms-correlation-request-id": "25364bab-cfd6-4111-a4bf-33ad1c9a5321",
+ "x-ms-ratelimit-remaining-subscription-reads": "11938",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214324Z:25364bab-cfd6-4111-a4bf-33ad1c9a5321",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1",
- "name": "bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1",
- "status": "Creating",
- "startTime": "2022-05-25T16:21:45.840103Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T21%3A42%3A52.7703771Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T21:42:51.4724767Z"
+ },
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "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"
+ },
+ "provisioningState": "Succeeded"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-26T21:42:52.5674726Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-26T21:42:52.5674726Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 16:26: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": "5d158bd5-ae44-4375-b21e-78de33bc6e39",
- "x-ms-ratelimit-remaining-subscription-reads": "11987",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162619Z:5d158bd5-ae44-4375-b21e-78de33bc6e39",
- "X-Powered-By": "ASP.NET"
+ "Content-Length": "138",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1",
- "name": "bd5e86ad-bd1d-4a2f-8261-d7589e22e6b1",
- "status": "Succeeded",
- "startTime": "2022-05-25T16:21:45.840103Z",
- "endTime": "2022-05-25T16:25:52.524758Z",
- "percentComplete": 100.0,
+ "RequestBody": {
+ "location": "westus2",
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "size": 4398046511104,
+ "serviceLevel": "Premium",
+ "coolAccess": false,
+ "encryptionType": "Single"
}
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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/ed6ec6b5-a169-4c64-b043-6022fe2fae80?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "918",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:26:19 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T16%3A25%3A52.5259403Z\u0027\u0022",
+ "Date": "Tue, 26 Jul 2022 21:43:26 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T21%3A43%3A26.0861647Z\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": "fe7395ac-2871-4b67-be6c-f241290a3aff",
- "x-ms-ratelimit-remaining-subscription-reads": "11986",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162620Z:fe7395ac-2871-4b67-be6c-f241290a3aff",
+ "x-ms-correlation-request-id": "605e3628-71b3-4566-9deb-d178ffb342f8",
+ "x-ms-ratelimit-remaining-subscription-writes": "1186",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214326Z:605e3628-71b3-4566-9deb-d178ffb342f8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-25T16%3A25%3A52.5259403Z\u0027\u0022",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T21%3A43%3A26.0861647Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T16:21:42.1745275Z"
+ "CreatedOnDate": "2022-07-26T21:43:24.6082682Z"
},
"properties": {
- "fileSystemId": "b188368b-aeb7-0854-236c-fb215bc20df8",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_93ade68ee53011e9a696c27beff6b5ea_70bea700",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "b188368b-aeb7-0854-236c-fb215bc20df8",
- "fileSystemId": "b188368b-aeb7-0854-236c-fb215bc20df8",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.25,
- "volumeSpecName": "generic",
+ "size": 4398046511104,
+ "totalThroughputMibps": 0.0,
+ "utilizedThroughputMibps": 0.0,
+ "encryptionType": "Single",
"coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true,
- "provisioningState": "Succeeded"
+ "provisioningState": "Creating"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-25T16:21:43.4054126Z",
+ "createdAt": "2022-07-26T21:43:25.8522516Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T16:21:43.4054126Z"
+ "lastModifiedAt": "2022-07-26T21:43:25.8522516Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed6ec6b5-a169-4c64-b043-6022fe2fae80?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1127,8 +999,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:26:30 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T16%3A25%3A52.5259403Z\u0027\u0022",
+ "Date": "Tue, 26 Jul 2022 21:43:56 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1136,99 +1007,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "49467640-241e-4068-bcef-127611ab1fd1",
- "x-ms-ratelimit-remaining-subscription-reads": "11985",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162630Z:49467640-241e-4068-bcef-127611ab1fd1",
+ "x-ms-correlation-request-id": "ce7c8218-5a5e-446b-8b70-4262c0909d83",
+ "x-ms-ratelimit-remaining-subscription-reads": "11937",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214357Z:ce7c8218-5a5e-446b-8b70-4262c0909d83",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-25T16%3A25%3A52.5259403Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-25T16:21:42.1745275Z"
- },
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed6ec6b5-a169-4c64-b043-6022fe2fae80",
+ "name": "ed6ec6b5-a169-4c64-b043-6022fe2fae80",
+ "status": "Succeeded",
+ "startTime": "2022-07-26T21:43:26.0882497Z",
+ "endTime": "2022-07-26T21:43:26.2757728Z",
+ "percentComplete": 100.0,
"properties": {
- "fileSystemId": "b188368b-aeb7-0854-236c-fb215bc20df8",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_93ade68ee53011e9a696c27beff6b5ea_70bea700",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "b188368b-aeb7-0854-236c-fb215bc20df8",
- "fileSystemId": "b188368b-aeb7-0854-236c-fb215bc20df8",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.25,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true,
- "provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T16:21:43.4054126Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T16:21:43.4054126Z"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1236,7 +1039,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:26:30 GMT",
+ "Date": "Tue, 26 Jul 2022 21:43:56 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T21%3A43%3A26.2675237Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1244,155 +1048,140 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "226ce120-10ac-41c3-bacf-a4c62dd2cd2d",
- "x-ms-ratelimit-remaining-subscription-reads": "11984",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162631Z:226ce120-10ac-41c3-bacf-a4c62dd2cd2d",
+ "x-ms-correlation-request-id": "41d0902e-114f-447e-bfcd-d66fb8f04f4d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11936",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214357Z:41d0902e-114f-447e-bfcd-d66fb8f04f4d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "value": [
- {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "name": "sdk-py-tests-acc-1/cbsvault",
- "type": "Microsoft.NetApp/netAppAccounts/vaults",
- "properties": {}
- }
- ]
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T21%3A43%3A26.2675237Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T21:43:24.6082682Z"
+ },
+ "properties": {
+ "poolId": "c6c77a79-f6c1-6b38-5d68-39a03e17843e",
+ "serviceLevel": "Premium",
+ "size": 4398046511104,
+ "qosType": "Auto",
+ "totalThroughputMibps": 256.0,
+ "utilizedThroughputMibps": 0.0,
+ "encryptionType": "Single",
+ "coolAccess": false,
+ "provisioningState": "Succeeded"
+ }
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "PATCH",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96?api-version=2022-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "401",
+ "Content-Length": "779",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
+ "location": "westus2",
"properties": {
+ "creationToken": "sdk-py-tests-vol-3-aac12d96",
"serviceLevel": "Premium",
"usageThreshold": 107374182400,
- "dataProtection": {
- "backup": {
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "backupEnabled": true
- }
- },
+ "protocolTypes": [
+ "NFSv3"
+ ],
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96/subnets/default",
+ "networkFeatures": "Basic",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "coolAccess": false,
+ "unixPermissions": "0770",
+ "avsDataStore": "Disabled",
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0
}
},
- "StatusCode": 202,
+ "StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d74eb81f-2f3e-4aac-9c61-67c67b049b81?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b55764fd-12c3-40ae-b912-1a7b88d86631?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "2386",
+ "Content-Length": "1577",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:26:31 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T16%3A26%3A31.9113407Z\u0027\u0022",
+ "Date": "Tue, 26 Jul 2022 21:44:10 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T21%3A44%3A09.3950723Z\u0027\u0022",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d74eb81f-2f3e-4aac-9c61-67c67b049b81?api-version=2022-01-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": "c207e91b-37e1-4d10-9bbf-11c331eb9e20",
- "x-ms-ratelimit-remaining-subscription-writes": "1196",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162632Z:c207e91b-37e1-4d10-9bbf-11c331eb9e20",
+ "x-ms-correlation-request-id": "17c1eab5-0bb5-4ebc-b614-769d850c8899",
+ "x-ms-ratelimit-remaining-subscription-writes": "1185",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214410Z:17c1eab5-0bb5-4ebc-b614-769d850c8899",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T16%3A26%3A31.9113407Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-26T21%3A44%3A09.3950723Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T16:21:42.1745275Z"
+ "CreatedOnDate": "2022-07-26T21:44:07.9902317Z"
},
"properties": {
- "provisioningState": "Patching",
- "fileSystemId": "b188368b-aeb7-0854-236c-fb215bc20df8",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-aac12d96",
"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_93ade68ee53011e9a696c27beff6b5ea_70bea700",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
- "securityStyle": "Unix",
+ "securityStyle": "unix",
"smbEncryption": false,
"smbContinuouslyAvailable": false,
"encryptionKeySource": "Microsoft.NetApp",
"ldapEnabled": false,
"unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "b188368b-aeb7-0854-236c-fb215bc20df8",
- "fileSystemId": "b188368b-aeb7-0854-236c-fb215bc20df8",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.25,
- "volumeSpecName": "generic",
"coolAccess": false,
"avsDataStore": "Disabled",
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
- "encrypted": true
+ "provisioningState": "Creating"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-25T16:21:43.4054126Z",
+ "createdAt": "2022-07-26T21:44:09.0878991Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T16:21:43.4054126Z"
+ "lastModifiedAt": "2022-07-26T21:44:09.0878991Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d74eb81f-2f3e-4aac-9c61-67c67b049b81?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b55764fd-12c3-40ae-b912-1a7b88d86631?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1400,7 +1189,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:27:02 GMT",
+ "Date": "Tue, 26 Jul 2022 21:44:39 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1408,31 +1197,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e386fcfa-9d3c-4273-b15c-903f6aca6968",
- "x-ms-ratelimit-remaining-subscription-reads": "11983",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162702Z:e386fcfa-9d3c-4273-b15c-903f6aca6968",
+ "x-ms-correlation-request-id": "d7901bbc-fb6c-4806-8551-9b59a5e46683",
+ "x-ms-ratelimit-remaining-subscription-reads": "11935",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214440Z:d7901bbc-fb6c-4806-8551-9b59a5e46683",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d74eb81f-2f3e-4aac-9c61-67c67b049b81",
- "name": "d74eb81f-2f3e-4aac-9c61-67c67b049b81",
- "status": "Succeeded",
- "startTime": "2022-05-25T16:26:31.9057066Z",
- "endTime": "2022-05-25T16:26:41.9341Z",
- "percentComplete": 100.0,
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b55764fd-12c3-40ae-b912-1a7b88d86631",
+ "name": "b55764fd-12c3-40ae-b912-1a7b88d86631",
+ "status": "Creating",
+ "startTime": "2022-07-26T21:44:09.4023716Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/d74eb81f-2f3e-4aac-9c61-67c67b049b81?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b55764fd-12c3-40ae-b912-1a7b88d86631?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1440,7 +1229,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:27:02 GMT",
+ "Date": "Tue, 26 Jul 2022 21:45:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1448,164 +1237,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "54b254e8-fcdf-479b-bb62-052d3c7638e2",
- "x-ms-ratelimit-remaining-subscription-reads": "11982",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162702Z:54b254e8-fcdf-479b-bb62-052d3c7638e2",
+ "x-ms-correlation-request-id": "65d47764-b7d3-4530-9afb-44c5aeff6dda",
+ "x-ms-ratelimit-remaining-subscription-reads": "11934",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214511Z:65d47764-b7d3-4530-9afb-44c5aeff6dda",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-25T16%3A26%3A41.9235948Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-25T16:26:31.4913059Z"
- },
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b55764fd-12c3-40ae-b912-1a7b88d86631",
+ "name": "b55764fd-12c3-40ae-b912-1a7b88d86631",
+ "status": "Creating",
+ "startTime": "2022-07-26T21:44:09.4023716Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "dataProtection": {
- "backup": {
- "backupEnabled": true,
- "policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
- }
- },
- "fileSystemId": "b188368b-aeb7-0854-236c-fb215bc20df8",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
- "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_93ade68ee53011e9a696c27beff6b5ea_70bea700",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "160f6865-9ae1-8b9e-e8f8-5dcc147cbad1",
- "mountTargets": [
- {
- "provisioningState": "",
- "mountTargetId": "b188368b-aeb7-0854-236c-fb215bc20df8",
- "fileSystemId": "b188368b-aeb7-0854-236c-fb215bc20df8",
- "startIp": "",
- "endIp": "",
- "gateway": "",
- "netmask": "",
- "subnet": "",
- "ipAddress": "10.7.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": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T16:21:43.4054126Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T16:26:31.734962Z"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "PUT",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "81",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
- },
- "RequestBody": {
- "location": "southcentralusstage",
- "properties": {
- "useExistingSnapshot": false
- }
- },
- "StatusCode": 201,
- "ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/35b4f905-204f-4157-a1af-7f4e2db91242?api-version=2022-01-01",
- "Cache-Control": "no-cache",
- "Content-Length": "523",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:27:03 GMT",
- "Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/35b4f905-204f-4157-a1af-7f4e2db91242?api-version=2022-01-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": "be5dd8fe-a57c-4e2e-8b29-4d1017b5e746",
- "x-ms-ratelimit-remaining-subscription-writes": "1195",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162703Z:be5dd8fe-a57c-4e2e-8b29-4d1017b5e746",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "provisioningState": "Creating",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/35b4f905-204f-4157-a1af-7f4e2db91242?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b55764fd-12c3-40ae-b912-1a7b88d86631?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1613,7 +1269,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:27:33 GMT",
+ "Date": "Tue, 26 Jul 2022 21:45:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1621,75 +1277,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a9164982-80ae-4020-9147-427cccfc5aa7",
- "x-ms-ratelimit-remaining-subscription-reads": "11981",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162733Z:a9164982-80ae-4020-9147-427cccfc5aa7",
+ "x-ms-correlation-request-id": "7399a082-55d1-4736-b94d-9d4a0e52d6c8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11933",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214541Z:7399a082-55d1-4736-b94d-9d4a0e52d6c8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/35b4f905-204f-4157-a1af-7f4e2db91242",
- "name": "35b4f905-204f-4157-a1af-7f4e2db91242",
- "status": "Succeeded",
- "startTime": "2022-05-25T16:27:02.9003995Z",
- "endTime": "2022-05-25T16:27:04.9786674Z",
- "percentComplete": 100.0,
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b55764fd-12c3-40ae-b912-1a7b88d86631",
+ "name": "b55764fd-12c3-40ae-b912-1a7b88d86631",
+ "status": "Creating",
+ "startTime": "2022-07-26T21:44:09.4023716Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/35b4f905-204f-4157-a1af-7f4e2db91242?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b55764fd-12c3-40ae-b912-1a7b88d86631?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
- },
- "RequestBody": null,
- "StatusCode": 201,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Length": "730",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:27: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": "05ef0a27-6101-4925-95cf-efa3b2e41bfb",
- "x-ms-ratelimit-remaining-subscription-reads": "11980",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162733Z:05ef0a27-6101-4925-95cf-efa3b2e41bfb",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "etag": "5/25/2022 4:27:04 PM",
- "location": "",
- "properties": {
- "fileSystemId": "b188368b-aeb7-0854-236c-fb215bc20df8",
- "creationDate": "0001-01-01T00:00:00Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1697,7 +1309,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:27:44 GMT",
+ "Date": "Tue, 26 Jul 2022 21:46:12 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1705,36 +1317,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a3bfbb36-66e7-4c7f-a1f5-60a90c4b19fd",
- "x-ms-ratelimit-remaining-subscription-reads": "11979",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162744Z:a3bfbb36-66e7-4c7f-a1f5-60a90c4b19fd",
+ "x-ms-correlation-request-id": "2afad157-7283-46fc-95cc-c9183774cbf0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11932",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214612Z:2afad157-7283-46fc-95cc-c9183774cbf0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b55764fd-12c3-40ae-b912-1a7b88d86631",
+ "name": "b55764fd-12c3-40ae-b912-1a7b88d86631",
+ "status": "Creating",
+ "startTime": "2022-07-26T21:44:09.4023716Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b55764fd-12c3-40ae-b912-1a7b88d86631?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1742,7 +1349,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:27:54 GMT",
+ "Date": "Tue, 26 Jul 2022 21:46:42 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1750,36 +1357,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7f5b700b-b284-48eb-80d4-ce404e75afcf",
- "x-ms-ratelimit-remaining-subscription-reads": "11978",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162755Z:7f5b700b-b284-48eb-80d4-ce404e75afcf",
+ "x-ms-correlation-request-id": "8b098f5d-9926-47cb-a4c0-566063e3b3a2",
+ "x-ms-ratelimit-remaining-subscription-reads": "11931",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214642Z:8b098f5d-9926-47cb-a4c0-566063e3b3a2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b55764fd-12c3-40ae-b912-1a7b88d86631",
+ "name": "b55764fd-12c3-40ae-b912-1a7b88d86631",
+ "status": "Creating",
+ "startTime": "2022-07-26T21:44:09.4023716Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b55764fd-12c3-40ae-b912-1a7b88d86631?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1787,7 +1389,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:28:05 GMT",
+ "Date": "Tue, 26 Jul 2022 21:47:12 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1795,36 +1397,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b42f90ee-c7f2-44ed-95c7-14e91145b1a9",
- "x-ms-ratelimit-remaining-subscription-reads": "11977",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162806Z:b42f90ee-c7f2-44ed-95c7-14e91145b1a9",
+ "x-ms-correlation-request-id": "467321b3-169f-47e8-919d-9190a7e66dab",
+ "x-ms-ratelimit-remaining-subscription-reads": "11930",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214712Z:467321b3-169f-47e8-919d-9190a7e66dab",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b55764fd-12c3-40ae-b912-1a7b88d86631",
+ "name": "b55764fd-12c3-40ae-b912-1a7b88d86631",
+ "status": "Creating",
+ "startTime": "2022-07-26T21:44:09.4023716Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b55764fd-12c3-40ae-b912-1a7b88d86631?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1832,7 +1429,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:28:16 GMT",
+ "Date": "Tue, 26 Jul 2022 21:47:43 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1840,36 +1437,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d8ca487d-6dee-4a8b-ab0d-3a7a3f8142e9",
- "x-ms-ratelimit-remaining-subscription-reads": "11976",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162817Z:d8ca487d-6dee-4a8b-ab0d-3a7a3f8142e9",
+ "x-ms-correlation-request-id": "33ecc6c6-e74c-4c89-9212-7a67282b690a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11929",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214743Z:33ecc6c6-e74c-4c89-9212-7a67282b690a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b55764fd-12c3-40ae-b912-1a7b88d86631",
+ "name": "b55764fd-12c3-40ae-b912-1a7b88d86631",
+ "status": "Creating",
+ "startTime": "2022-07-26T21:44:09.4023716Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b55764fd-12c3-40ae-b912-1a7b88d86631?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1877,7 +1469,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:28:27 GMT",
+ "Date": "Tue, 26 Jul 2022 21:48:12 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1885,36 +1477,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2ba4f696-54c2-49fa-ab9f-024c2a4c9f5e",
- "x-ms-ratelimit-remaining-subscription-reads": "11975",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162828Z:2ba4f696-54c2-49fa-ab9f-024c2a4c9f5e",
+ "x-ms-correlation-request-id": "c4c6cff9-dcf9-459e-b773-760e86bf2432",
+ "x-ms-ratelimit-remaining-subscription-reads": "11928",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214813Z:c4c6cff9-dcf9-459e-b773-760e86bf2432",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b55764fd-12c3-40ae-b912-1a7b88d86631",
+ "name": "b55764fd-12c3-40ae-b912-1a7b88d86631",
+ "status": "Creating",
+ "startTime": "2022-07-26T21:44:09.4023716Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b55764fd-12c3-40ae-b912-1a7b88d86631?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1922,7 +1509,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:28:38 GMT",
+ "Date": "Tue, 26 Jul 2022 21:48:43 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1930,36 +1517,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "77dcdc8b-37f2-4e15-9ca1-8d74010a88bc",
- "x-ms-ratelimit-remaining-subscription-reads": "11974",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162839Z:77dcdc8b-37f2-4e15-9ca1-8d74010a88bc",
+ "x-ms-correlation-request-id": "c4da523d-0e74-4595-b45d-865a30d19c29",
+ "x-ms-ratelimit-remaining-subscription-reads": "11927",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214843Z:c4da523d-0e74-4595-b45d-865a30d19c29",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b55764fd-12c3-40ae-b912-1a7b88d86631",
+ "name": "b55764fd-12c3-40ae-b912-1a7b88d86631",
+ "status": "Succeeded",
+ "startTime": "2022-07-26T21:44:09.4023716Z",
+ "endTime": "2022-07-26T21:48:42.7571282Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1967,7 +1549,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:28:49 GMT",
+ "Date": "Tue, 26 Jul 2022 21:48:44 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T21%3A48%3A42.7479508Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1975,36 +1558,90 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a22842e2-b852-4d0f-a226-c3d5cf6276e4",
- "x-ms-ratelimit-remaining-subscription-reads": "11973",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162850Z:a22842e2-b852-4d0f-a226-c3d5cf6276e4",
+ "x-ms-correlation-request-id": "048ef497-debe-4ad7-be3c-cc7d5970a352",
+ "x-ms-ratelimit-remaining-subscription-reads": "11926",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214844Z:048ef497-debe-4ad7-be3c-cc7d5970a352",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T21%3A48%3A42.7479508Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T21:44:07.9902317Z"
+ },
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "fileSystemId": "b7687f60-f2bf-8252-d80e-ba569fa63ac5",
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-3-aac12d96",
+ "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_b1b548f6",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "b7687f60-f2bf-8252-d80e-ba569fa63ac5",
+ "fileSystemId": "b7687f60-f2bf-8252-d80e-ba569fa63ac5",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2012,7 +1649,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:29:00 GMT",
+ "Date": "Tue, 26 Jul 2022 21:48:54 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T21%3A48%3A42.7479508Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2020,36 +1658,90 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0d2ade80-38c4-47b6-a9a4-d4fd6897e2a0",
- "x-ms-ratelimit-remaining-subscription-reads": "11972",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162901Z:0d2ade80-38c4-47b6-a9a4-d4fd6897e2a0",
+ "x-ms-correlation-request-id": "19dbfdd1-3330-45e3-8ae1-a52894e5af75",
+ "x-ms-ratelimit-remaining-subscription-reads": "11925",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214854Z:19dbfdd1-3330-45e3-8ae1-a52894e5af75",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T21%3A48%3A42.7479508Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T21:44:07.9902317Z"
+ },
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
+ "fileSystemId": "b7687f60-f2bf-8252-d80e-ba569fa63ac5",
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-3-aac12d96",
+ "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_b1b548f6",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "b7687f60-f2bf-8252-d80e-ba569fa63ac5",
+ "fileSystemId": "b7687f60-f2bf-8252-d80e-ba569fa63ac5",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/vaults?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2057,7 +1749,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:29:11 GMT",
+ "Date": "Tue, 26 Jul 2022 21:48:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2065,81 +1757,149 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fab8185b-00e0-4ce8-b20a-5dfeb9100b3c",
- "x-ms-ratelimit-remaining-subscription-reads": "11971",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162912Z:fab8185b-00e0-4ce8-b20a-5dfeb9100b3c",
+ "x-ms-correlation-request-id": "5f674470-3646-4fd5-973c-0fdd390868fd",
+ "x-ms-ratelimit-remaining-subscription-reads": "11924",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214855Z:5f674470-3646-4fd5-973c-0fdd390868fd",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
+ "value": [
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/vaults/cbsvault",
+ "name": "sdk-py-tests-acc-1-aac12d96/cbsvault",
+ "type": "Microsoft.NetApp/netAppAccounts/vaults",
+ "properties": {
+ "enabled": true,
+ "vaultId": "6130fdad-3bac-11eb-aba9-0e6a0f269857"
+ }
+ }
+ ]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96?api-version=2022-03-01",
+ "RequestMethod": "PATCH",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "408",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/vaults/cbsvault",
+ "backupEnabled": true
+ }
+ },
+ "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/3e2035b9-f742-4f9a-80a3-2e6e362c5a39?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "2131",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:29:22 GMT",
+ "Date": "Tue, 26 Jul 2022 21:48:55 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T21%3A48%3A55.7872226Z\u0027\u0022",
"Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e2035b9-f742-4f9a-80a3-2e6e362c5a39?api-version=2022-03-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": "3520936c-c96d-4f0b-a1b4-c807eef83b86",
- "x-ms-ratelimit-remaining-subscription-reads": "11970",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162923Z:3520936c-c96d-4f0b-a1b4-c807eef83b86",
+ "x-ms-correlation-request-id": "628b812f-a782-4306-b388-0d7a0174e948",
+ "x-ms-ratelimit-remaining-subscription-writes": "1184",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214855Z:628b812f-a782-4306-b388-0d7a0174e948",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T21%3A48%3A55.7872226Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T21:44:07.9902317Z"
+ },
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "provisioningState": "Patching",
+ "fileSystemId": "b7687f60-f2bf-8252-d80e-ba569fa63ac5",
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-3-aac12d96",
+ "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_b1b548f6",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "b7687f60-f2bf-8252-d80e-ba569fa63ac5",
+ "fileSystemId": "b7687f60-f2bf-8252-d80e-ba569fa63ac5",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e2035b9-f742-4f9a-80a3-2e6e362c5a39?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2147,7 +1907,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:29:33 GMT",
+ "Date": "Tue, 26 Jul 2022 21:49:25 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2155,36 +1915,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0f173179-516e-466d-892f-286ce5a26e9d",
- "x-ms-ratelimit-remaining-subscription-reads": "11969",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162934Z:0f173179-516e-466d-892f-286ce5a26e9d",
+ "x-ms-correlation-request-id": "29c44951-ada2-4b3c-a0e7-1bf2681742db",
+ "x-ms-ratelimit-remaining-subscription-reads": "11923",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214926Z:29c44951-ada2-4b3c-a0e7-1bf2681742db",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e2035b9-f742-4f9a-80a3-2e6e362c5a39",
+ "name": "3e2035b9-f742-4f9a-80a3-2e6e362c5a39",
+ "status": "Succeeded",
+ "startTime": "2022-07-26T21:48:55.7818205Z",
+ "endTime": "2022-07-26T21:48:59.7352243Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e2035b9-f742-4f9a-80a3-2e6e362c5a39?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2192,7 +1947,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:29:44 GMT",
+ "Date": "Tue, 26 Jul 2022 21:49:25 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2200,81 +1955,159 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d0cb1cb7-ebe5-499f-8b26-f9f0a6ee3bbf",
- "x-ms-ratelimit-remaining-subscription-reads": "11968",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162945Z:d0cb1cb7-ebe5-499f-8b26-f9f0a6ee3bbf",
+ "x-ms-correlation-request-id": "bdf19721-aab8-4062-a487-134fef1ce92b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11922",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214926Z:bdf19721-aab8-4062-a487-134fef1ce92b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T21%3A48%3A59.7368821Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T21:48:55.4699396Z"
+ },
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "dataProtection": {
+ "backup": {
+ "backupEnabled": true,
+ "policyEnforced": false,
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/vaults/cbsvault"
+ }
+ },
+ "fileSystemId": "b7687f60-f2bf-8252-d80e-ba569fa63ac5",
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-3-aac12d96",
+ "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_b1b548f6",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96",
+ "poolId": "c6c77a79-f6c1-6b38-5d68-39a03e17843e",
+ "mountTargets": [
+ {
+ "provisioningState": "",
+ "mountTargetId": "b7687f60-f2bf-8252-d80e-ba569fa63ac5",
+ "fileSystemId": "b7687f60-f2bf-8252-d80e-ba569fa63ac5",
+ "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,
+ "provisioningState": "Succeeded"
+ },
+ "systemData": {
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-26T21:48:55.6278019Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "69",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/5d71370a-cd87-4d40-9f6b-f5e4d3c8fd32?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "556",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:29:55 GMT",
+ "Date": "Tue, 26 Jul 2022 21:49:26 GMT",
"Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5d71370a-cd87-4d40-9f6b-f5e4d3c8fd32?api-version=2022-03-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": "534aaba6-7332-47df-87ae-12ab6e595cbc",
- "x-ms-ratelimit-remaining-subscription-reads": "11967",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T162956Z:534aaba6-7332-47df-87ae-12ab6e595cbc",
+ "x-ms-correlation-request-id": "5826a519-fc52-4067-970a-a66dc4068fee",
+ "x-ms-ratelimit-remaining-subscription-writes": "1183",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214927Z:5826a519-fc52-4067-970a-a66dc4068fee",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
"useExistingSnapshot": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5d71370a-cd87-4d40-9f6b-f5e4d3c8fd32?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2282,7 +2115,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:30:07 GMT",
+ "Date": "Tue, 26 Jul 2022 21:49:56 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2290,351 +2123,75 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ba1013a8-06a6-4378-8b65-396790f7db1c",
- "x-ms-ratelimit-remaining-subscription-reads": "11966",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163007Z:ba1013a8-06a6-4378-8b65-396790f7db1c",
+ "x-ms-correlation-request-id": "11a5cf2f-6f22-4ab3-a225-8a95fd0d1ca5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11921",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214957Z:11a5cf2f-6f22-4ab3-a225-8a95fd0d1ca5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5d71370a-cd87-4d40-9f6b-f5e4d3c8fd32",
+ "name": "5d71370a-cd87-4d40-9f6b-f5e4d3c8fd32",
+ "status": "Succeeded",
+ "startTime": "2022-07-26T21:49:26.9116657Z",
+ "endTime": "2022-07-26T21:49:27.2242535Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 16:30: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": "a3e22392-0bfb-4e58-9827-602494322efc",
- "x-ms-ratelimit-remaining-subscription-reads": "11965",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163018Z:a3e22392-0bfb-4e58-9827-602494322efc",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 16:30: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": "19670b26-6317-40d2-b805-2138d8ade329",
- "x-ms-ratelimit-remaining-subscription-reads": "11964",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163029Z:19670b26-6317-40d2-b805-2138d8ade329",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 16:30: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": "5be37e70-ae29-4d36-9d7f-23e9192579be",
- "x-ms-ratelimit-remaining-subscription-reads": "11963",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163040Z:5be37e70-ae29-4d36-9d7f-23e9192579be",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 16: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": "39fdceca-a33b-4598-8a47-e2e588bcc0cc",
- "x-ms-ratelimit-remaining-subscription-reads": "11962",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163051Z:39fdceca-a33b-4598-8a47-e2e588bcc0cc",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 16: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": "eb6f2b33-4024-48c0-9d27-6fed02e4f972",
- "x-ms-ratelimit-remaining-subscription-reads": "11961",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163102Z:eb6f2b33-4024-48c0-9d27-6fed02e4f972",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 16: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": "3316f454-da81-4fc1-85a4-41c1b2c99fde",
- "x-ms-ratelimit-remaining-subscription-reads": "11960",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163113Z:3316f454-da81-4fc1-85a4-41c1b2c99fde",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5d71370a-cd87-4d40-9f6b-f5e4d3c8fd32?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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": "775",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:31:24 GMT",
+ "Date": "Tue, 26 Jul 2022 21:49: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": "b60cffcb-11bd-4212-90c6-40cdc855bc22",
- "x-ms-ratelimit-remaining-subscription-reads": "11959",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163124Z:b60cffcb-11bd-4212-90c6-40cdc855bc22",
+ "x-ms-correlation-request-id": "0b0c9c1e-96f6-4c7f-9993-1740895f42dd",
+ "x-ms-ratelimit-remaining-subscription-reads": "11920",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T214958Z:0b0c9c1e-96f6-4c7f-9993-1740895f42dd",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "etag": "7/26/2022 9:49:27 PM",
+ "location": "",
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
+ "fileSystemId": "b7687f60-f2bf-8252-d80e-ba569fa63ac5",
+ "creationDate": "0001-01-01T00:00:00Z",
+ "backupId": "01e91399-dacd-7713-09e5-1f3b4f8d6d2b",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "failureReason": "None",
+ "useExistingSnapshot": false,
+ "provisioningState": "Creating"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2642,7 +2199,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:31:35 GMT",
+ "Date": "Tue, 26 Jul 2022 21:50:08 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2650,36 +2207,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "31b98179-66e0-4627-a9f9-404e556b41eb",
- "x-ms-ratelimit-remaining-subscription-reads": "11958",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163135Z:31b98179-66e0-4627-a9f9-404e556b41eb",
+ "x-ms-correlation-request-id": "33647fd6-b8c5-4f6c-bcfc-ca8d32280d31",
+ "x-ms-ratelimit-remaining-subscription-reads": "11919",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215009Z:33647fd6-b8c5-4f6c-bcfc-ca8d32280d31",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
+ "creationDate": "2022-07-26T21:49:27Z",
+ "backupId": "01e91399-dacd-7713-09e5-1f3b4f8d6d2b",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2687,7 +2244,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:31:46 GMT",
+ "Date": "Tue, 26 Jul 2022 21:50:20 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2695,36 +2252,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "cd67e448-aed9-46b8-9bf2-a3b15ccbe9bf",
- "x-ms-ratelimit-remaining-subscription-reads": "11957",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163146Z:cd67e448-aed9-46b8-9bf2-a3b15ccbe9bf",
+ "x-ms-correlation-request-id": "1ce6add6-daf5-424d-ae3a-a47c65389f2b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11918",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215020Z:1ce6add6-daf5-424d-ae3a-a47c65389f2b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
+ "creationDate": "2022-07-26T21:49:27Z",
+ "backupId": "01e91399-dacd-7713-09e5-1f3b4f8d6d2b",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2732,7 +2289,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:31:56 GMT",
+ "Date": "Tue, 26 Jul 2022 21:50:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2740,36 +2297,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "de0d219b-3c76-4bb8-9b2a-7c0bfde1e10a",
- "x-ms-ratelimit-remaining-subscription-reads": "11956",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163157Z:de0d219b-3c76-4bb8-9b2a-7c0bfde1e10a",
+ "x-ms-correlation-request-id": "2142d696-17f4-4445-a436-ac5be5c52214",
+ "x-ms-ratelimit-remaining-subscription-reads": "11917",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215030Z:2142d696-17f4-4445-a436-ac5be5c52214",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
+ "creationDate": "2022-07-26T21:49:27Z",
+ "backupId": "01e91399-dacd-7713-09e5-1f3b4f8d6d2b",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2777,7 +2334,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:32:08 GMT",
+ "Date": "Tue, 26 Jul 2022 21:50:40 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2785,36 +2342,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "130827af-6cc2-4ddc-8967-b76fdb93b384",
- "x-ms-ratelimit-remaining-subscription-reads": "11955",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163209Z:130827af-6cc2-4ddc-8967-b76fdb93b384",
+ "x-ms-correlation-request-id": "9f18d848-bbe0-4375-8746-533e4798fdf1",
+ "x-ms-ratelimit-remaining-subscription-reads": "11916",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215041Z:9f18d848-bbe0-4375-8746-533e4798fdf1",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
+ "creationDate": "2022-07-26T21:49:27Z",
+ "backupId": "01e91399-dacd-7713-09e5-1f3b4f8d6d2b",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2822,7 +2379,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:32:19 GMT",
+ "Date": "Tue, 26 Jul 2022 21:50:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2830,36 +2387,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3af2dc3a-25ff-4ac4-a939-5b072fe23bad",
- "x-ms-ratelimit-remaining-subscription-reads": "11954",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163220Z:3af2dc3a-25ff-4ac4-a939-5b072fe23bad",
+ "x-ms-correlation-request-id": "f348cfa3-a9c8-4e7e-aceb-cb10226d01bb",
+ "x-ms-ratelimit-remaining-subscription-reads": "11915",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215052Z:f348cfa3-a9c8-4e7e-aceb-cb10226d01bb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
+ "creationDate": "2022-07-26T21:49:27Z",
+ "backupId": "01e91399-dacd-7713-09e5-1f3b4f8d6d2b",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2867,7 +2424,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:32:30 GMT",
+ "Date": "Tue, 26 Jul 2022 21:51:01 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2875,36 +2432,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "deba8ab4-62ab-419e-b209-e8ad0153031a",
- "x-ms-ratelimit-remaining-subscription-reads": "11953",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163231Z:deba8ab4-62ab-419e-b209-e8ad0153031a",
+ "x-ms-correlation-request-id": "77d7f288-9d3a-46ab-80e8-d556856f8260",
+ "x-ms-ratelimit-remaining-subscription-reads": "11914",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215102Z:77d7f288-9d3a-46ab-80e8-d556856f8260",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
+ "creationDate": "2022-07-26T21:49:27Z",
+ "backupId": "01e91399-dacd-7713-09e5-1f3b4f8d6d2b",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2912,7 +2469,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:32:41 GMT",
+ "Date": "Tue, 26 Jul 2022 21:51:12 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2920,36 +2477,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "085585e4-5f8b-46b3-bd74-4ff9829c483c",
- "x-ms-ratelimit-remaining-subscription-reads": "11952",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163242Z:085585e4-5f8b-46b3-bd74-4ff9829c483c",
+ "x-ms-correlation-request-id": "0dbc7ce9-0c38-4513-b0f1-ff1833af3f89",
+ "x-ms-ratelimit-remaining-subscription-reads": "11913",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215113Z:0dbc7ce9-0c38-4513-b0f1-ff1833af3f89",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
+ "creationDate": "2022-07-26T21:49:27Z",
+ "backupId": "01e91399-dacd-7713-09e5-1f3b4f8d6d2b",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2957,7 +2514,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:32:52 GMT",
+ "Date": "Tue, 26 Jul 2022 21:51:23 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2965,36 +2522,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8be52d8c-9672-4083-8a72-ffde0e60da94",
- "x-ms-ratelimit-remaining-subscription-reads": "11951",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163253Z:8be52d8c-9672-4083-8a72-ffde0e60da94",
+ "x-ms-correlation-request-id": "74adf314-7879-4ded-af42-cf8df6574570",
+ "x-ms-ratelimit-remaining-subscription-reads": "11912",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215123Z:74adf314-7879-4ded-af42-cf8df6574570",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
+ "creationDate": "2022-07-26T21:49:27Z",
+ "backupId": "01e91399-dacd-7713-09e5-1f3b4f8d6d2b",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3002,7 +2559,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:33:03 GMT",
+ "Date": "Tue, 26 Jul 2022 21:51:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3010,36 +2567,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "686b3110-171a-4357-b53e-e7f0e6ac002d",
- "x-ms-ratelimit-remaining-subscription-reads": "11950",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163303Z:686b3110-171a-4357-b53e-e7f0e6ac002d",
+ "x-ms-correlation-request-id": "38283885-7a31-4fc1-a4ea-a9df6d8132b2",
+ "x-ms-ratelimit-remaining-subscription-reads": "11911",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215134Z:38283885-7a31-4fc1-a4ea-a9df6d8132b2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
+ "creationDate": "2022-07-26T21:49:27Z",
+ "backupId": "01e91399-dacd-7713-09e5-1f3b4f8d6d2b",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3047,7 +2604,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:33:14 GMT",
+ "Date": "Tue, 26 Jul 2022 21:51:44 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3055,36 +2612,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "45c73606-11cb-45a9-90f2-42e71845e186",
- "x-ms-ratelimit-remaining-subscription-reads": "11949",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163314Z:45c73606-11cb-45a9-90f2-42e71845e186",
+ "x-ms-correlation-request-id": "c05b6b9e-3017-4a7f-aed2-07e56351c3ba",
+ "x-ms-ratelimit-remaining-subscription-reads": "11910",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215144Z:c05b6b9e-3017-4a7f-aed2-07e56351c3ba",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
+ "creationDate": "2022-07-26T21:49:27Z",
+ "backupId": "01e91399-dacd-7713-09e5-1f3b4f8d6d2b",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3092,7 +2649,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:33:26 GMT",
+ "Date": "Tue, 26 Jul 2022 21:51:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3100,36 +2657,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f77a952a-642d-478d-8f9e-ba847a8f16e8",
- "x-ms-ratelimit-remaining-subscription-reads": "11948",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163326Z:f77a952a-642d-478d-8f9e-ba847a8f16e8",
+ "x-ms-correlation-request-id": "8573c46a-432e-4d77-900b-e548918f8ec0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11909",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215155Z:8573c46a-432e-4d77-900b-e548918f8ec0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
+ "creationDate": "2022-07-26T21:49:27Z",
+ "backupId": "01e91399-dacd-7713-09e5-1f3b4f8d6d2b",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3137,7 +2694,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:33:36 GMT",
+ "Date": "Tue, 26 Jul 2022 21:52:05 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3145,36 +2702,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "af7f7677-fa0c-4823-ab5a-8dbf787c0a3c",
- "x-ms-ratelimit-remaining-subscription-reads": "11947",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163336Z:af7f7677-fa0c-4823-ab5a-8dbf787c0a3c",
+ "x-ms-correlation-request-id": "65bbb441-50e2-4fb5-8116-faf97a7ca8f3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11908",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215205Z:65bbb441-50e2-4fb5-8116-faf97a7ca8f3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
+ "creationDate": "2022-07-26T21:49:27Z",
+ "backupId": "01e91399-dacd-7713-09e5-1f3b4f8d6d2b",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3182,7 +2739,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:33:47 GMT",
+ "Date": "Tue, 26 Jul 2022 21:52:15 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3190,36 +2747,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1a1f9534-4ea6-4fd2-94ea-142faeb497c9",
- "x-ms-ratelimit-remaining-subscription-reads": "11946",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163348Z:1a1f9534-4ea6-4fd2-94ea-142faeb497c9",
+ "x-ms-correlation-request-id": "1aaa4bde-0b5b-4ac6-bf0c-45c6f29aaf46",
+ "x-ms-ratelimit-remaining-subscription-reads": "11907",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215216Z:1aaa4bde-0b5b-4ac6-bf0c-45c6f29aaf46",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
+ "creationDate": "2022-07-26T21:49:31Z",
+ "backupId": "01e91399-dacd-7713-09e5-1f3b4f8d6d2b",
+ "size": 339968,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3227,7 +2784,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:33:58 GMT",
+ "Date": "Tue, 26 Jul 2022 21:52:16 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3235,81 +2792,543 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7b4f1490-0e53-4f8b-ad04-ac56c45b8e06",
- "x-ms-ratelimit-remaining-subscription-reads": "11945",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163359Z:7b4f1490-0e53-4f8b-ad04-ac56c45b8e06",
+ "x-ms-correlation-request-id": "410b99cb-11fb-4ce1-bab1-e974dc4fb0d7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11906",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215216Z:410b99cb-11fb-4ce1-bab1-e974dc4fb0d7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 16:34: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": "f39c5f5f-e4c6-4cc2-9bb7-eee198d5694a",
- "x-ms-ratelimit-remaining-subscription-reads": "11944",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163410Z:f39c5f5f-e4c6-4cc2-9bb7-eee198d5694a",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
+ "value": [
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-1825",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-1825",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T11:19:54Z",
+ "backupId": "4bd0276d-c371-976b-4d84-48f0b1d0b473",
+ "size": 339968,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-7246",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-1574",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-1574",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T11:55:51Z",
+ "backupId": "e45d5d10-3d65-201b-c697-0e9473be08ad",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-2724",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-6163",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-6163",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T14:23:19Z",
+ "backupId": "58ee530d-86d8-519d-616c-bac680098410",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-6011",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-5797",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-5797",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T15:02:21Z",
+ "backupId": "36776a8e-f849-8bb0-9725-3f74dccc77da",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-8710",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-9586",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-9586",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T15:32:25Z",
+ "backupId": "6bc9f230-e226-5cdb-1b24-c3b6a484660b",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-6781",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-2941",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-2941",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T15:58:23Z",
+ "backupId": "1f1c6b9b-851b-f559-1435-b4fcc1af5c48",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-7822",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-431",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-431",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T16:08:22Z",
+ "backupId": "368eccf2-e212-7be4-b588-47ba874b4b63",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-7973",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-7953",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-7953",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T16:21:43Z",
+ "backupId": "873e51fb-64e9-e342-c1d1-1a04eeab6c53",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-4116",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-1494",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-1494",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T16:46:30Z",
+ "backupId": "90ec0719-0341-fb84-5f53-24d59278823b",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-2539",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-407",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-407",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T17:01:59Z",
+ "backupId": "6574427f-1a12-1fe8-d94f-5ec8250bb9d5",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-6804",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-1434",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-1434",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T17:17:35Z",
+ "backupId": "19f54b06-c926-1c6b-85f7-0a5cb4f2df0e",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-719",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-9348",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-9348",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T17:59:31Z",
+ "backupId": "a8569742-967e-2d95-506e-27c9687aa217",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-9441",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-4466",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-4466",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T18:30:59Z",
+ "backupId": "77bbc3d5-a6a8-f626-944b-886912f68529",
+ "size": 352256,
+ "backupType": "Manual",
+ "label": "adHocBackup2",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-7067",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-5190",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-5190",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T18:55:18Z",
+ "backupId": "4e4cf360-d77c-e37c-fcbb-2c79f89e4d68",
+ "size": 352256,
+ "backupType": "Manual",
+ "label": "adHocBackup2",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-7183",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-4930",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-4930",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T19:21:32Z",
+ "backupId": "38c2b191-0807-0733-781d-463707c05468",
+ "size": 352256,
+ "backupType": "Manual",
+ "label": "adHocBackup2",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-2191",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-1999",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-1999",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T20:12:35Z",
+ "backupId": "07911d51-e4bb-1ad9-4e25-3cd9e1f7fb8e",
+ "size": 352256,
+ "backupType": "Manual",
+ "label": "adHocBackup2",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-2675",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-3200",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-3200",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-15T09:54:28Z",
+ "backupId": "85d51660-24ca-4df5-62f2-db5407965554",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-8658",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-4085",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-4085",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-15T10:29:45Z",
+ "backupId": "ed8aa2ca-6982-caca-7306-1e406329e489",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-1546",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-1061",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-1061",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-15T13:33:46Z",
+ "backupId": "5bb3006b-8416-2f8c-bd06-e4aea1666e29",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-7594",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-113",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-113",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-15T14:30:48Z",
+ "backupId": "b74dd99e-e441-990c-e0b7-18151ccaad98",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-9003",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-4503",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-4503",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-15T14:59:27Z",
+ "backupId": "5e04f71f-ab25-47f3-9b53-c5f64aa25be5",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-1636",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-3134",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-3134",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-15T15:18:06Z",
+ "backupId": "adc3da88-7273-55ab-2b8a-d557b59af309",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-5632",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-8851",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-8851",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-15T16:01:34Z",
+ "backupId": "7c190bd0-7f48-df97-e716-33ec49bd9858",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-563",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-9165",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-9165",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-18T11:12:22Z",
+ "backupId": "5c6583de-170a-a2fd-fb22-f3f5a6a23882",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "updatedLabel",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-5072",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-6330",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-6330",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-20T00:28:30Z",
+ "backupId": "f98f5a5f-aa1b-83a3-b2af-ca45efe632f3",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-6612",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/sdk-py-tests-backup-4",
+ "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-backup-4",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-26T17:05:10Z",
+ "backupId": "f1054c1a-ce6a-8473-d19b-d97d90673a9e",
+ "size": 360448,
+ "backupType": "Manual",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "sdk-py-tests-vol-3-51142cdf",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/sdk-py-tests-backup-2-51142cdf",
+ "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-backup-2-51142cdf",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-26T20:57:10Z",
+ "backupId": "4f0e52b4-badb-9e57-be30-8344c736e9d5",
+ "size": 339968,
+ "backupType": "Manual",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "sdk-py-tests-vol-3-51142cdf",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/sdk-py-tests-backup-1-51142cdf",
+ "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-backup-1-51142cdf",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-26T21:36:19Z",
+ "backupId": "85eba5f0-3102-a5fb-b74c-eaaaf05d04ba",
+ "size": 339968,
+ "backupType": "Manual",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "sdk-py-tests-vol-3-51142cdf",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/sdk-py-tests-backup-1-aac12d96",
+ "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-backup-1-aac12d96",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-26T21:49:31Z",
+ "backupId": "01e91399-dacd-7713-09e5-1f3b4f8d6d2b",
+ "size": 339968,
+ "backupType": "Manual",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96?api-version=2022-03-01",
+ "RequestMethod": "DELETE",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "0",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/641e3d60-2107-45b4-9497-f8a748fc9ed8?api-version=2022-03-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "0",
+ "Date": "Tue, 26 Jul 2022 21:52:17 GMT",
+ "Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/641e3d60-2107-45b4-9497-f8a748fc9ed8?api-version=2022-03-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": "c8d5d503-d42f-40cd-a54b-73e03a20706d",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14999",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215217Z:c8d5d503-d42f-40cd-a54b-73e03a20706d",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": null
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/641e3d60-2107-45b4-9497-f8a748fc9ed8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3317,7 +3336,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:34:22 GMT",
+ "Date": "Tue, 26 Jul 2022 21:52:47 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3325,36 +3344,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f340a685-ae80-40ae-86e5-a85a1b3ebfa7",
- "x-ms-ratelimit-remaining-subscription-reads": "11943",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163423Z:f340a685-ae80-40ae-86e5-a85a1b3ebfa7",
+ "x-ms-correlation-request-id": "cc1277e5-ee01-499e-865e-226308b5cc0f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11905",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215248Z:cc1277e5-ee01-499e-865e-226308b5cc0f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/641e3d60-2107-45b4-9497-f8a748fc9ed8",
+ "name": "641e3d60-2107-45b4-9497-f8a748fc9ed8",
+ "status": "Deleting",
+ "startTime": "2022-07-26T21:52:17.559568Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/641e3d60-2107-45b4-9497-f8a748fc9ed8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3362,7 +3376,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:34:33 GMT",
+ "Date": "Tue, 26 Jul 2022 21:53:17 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3370,36 +3384,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c2dc3d73-115f-41ac-9ff4-cd802859731a",
- "x-ms-ratelimit-remaining-subscription-reads": "11942",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163433Z:c2dc3d73-115f-41ac-9ff4-cd802859731a",
+ "x-ms-correlation-request-id": "4165568f-7a62-450a-80ec-b46ef300182a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11904",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215318Z:4165568f-7a62-450a-80ec-b46ef300182a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/641e3d60-2107-45b4-9497-f8a748fc9ed8",
+ "name": "641e3d60-2107-45b4-9497-f8a748fc9ed8",
+ "status": "Deleting",
+ "startTime": "2022-07-26T21:52:17.559568Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/641e3d60-2107-45b4-9497-f8a748fc9ed8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3407,7 +3416,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:34:44 GMT",
+ "Date": "Tue, 26 Jul 2022 21:53:48 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3415,36 +3424,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7c0c407d-8bf0-4fb5-8ff6-82e922091ce8",
- "x-ms-ratelimit-remaining-subscription-reads": "11941",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163444Z:7c0c407d-8bf0-4fb5-8ff6-82e922091ce8",
+ "x-ms-correlation-request-id": "8db33de2-97bc-4fd3-8d79-ff03b42c8de9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11903",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215348Z:8db33de2-97bc-4fd3-8d79-ff03b42c8de9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/641e3d60-2107-45b4-9497-f8a748fc9ed8",
+ "name": "641e3d60-2107-45b4-9497-f8a748fc9ed8",
+ "status": "Succeeded",
+ "startTime": "2022-07-26T21:52:17.559568Z",
+ "endTime": "2022-07-26T21:53:32.7067015Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/641e3d60-2107-45b4-9497-f8a748fc9ed8?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3452,7 +3456,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:34:54 GMT",
+ "Date": "Tue, 26 Jul 2022 21:53:48 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3460,164 +3464,254 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8107c26f-1c88-41af-b23d-0bf9eb9e473f",
- "x-ms-ratelimit-remaining-subscription-reads": "11940",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163455Z:8107c26f-1c88-41af-b23d-0bf9eb9e473f",
+ "x-ms-correlation-request-id": "aba29113-8a0e-4aac-9347-c1ba190b56a7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11902",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215348Z:aba29113-8a0e-4aac-9347-c1ba190b56a7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T21%3A52%3A17.517436Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T21:48:55.4699396Z"
+ },
"properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "dataProtection": {
+ "backup": {
+ "backupEnabled": true,
+ "policyEnforced": false,
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/vaults/cbsvault"
+ }
+ },
+ "fileSystemId": "b7687f60-f2bf-8252-d80e-ba569fa63ac5",
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-3-aac12d96",
+ "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_b1b548f6",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96",
+ "poolId": "c6c77a79-f6c1-6b38-5d68-39a03e17843e",
+ "mountTargets": [
+ {
+ "provisioningState": "",
+ "mountTargetId": "b7687f60-f2bf-8252-d80e-ba569fa63ac5",
+ "fileSystemId": "b7687f60-f2bf-8252-d80e-ba569fa63ac5",
+ "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,
+ "provisioningState": "Deleting"
+ },
+ "systemData": {
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-26T21:48:55.6278019Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/accountBackups?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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": "320",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:34:55 GMT",
+ "Date": "Tue, 26 Jul 2022 21:57: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": "81f1f9fd-03cb-4cff-afa0-edddb4f7a358",
- "x-ms-ratelimit-remaining-subscription-reads": "11939",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163456Z:81f1f9fd-03cb-4cff-afa0-edddb4f7a358",
- "X-Powered-By": "ASP.NET"
+ "x-ms-correlation-request-id": "6771560d-2057-4704-9596-ba8e1b9f07a3",
+ "x-ms-failure-cause": "gateway",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215713Z:6771560d-2057-4704-9596-ba8e1b9f07a3"
},
"ResponseBody": {
- "value": [
- {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/accountBackups/ps266",
- "name": "sdk-py-tests-acc-1/ps266",
- "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2021-07-13T16:11:20Z",
- "backupId": "750af0a8-7223-5c69-2e7a-00a629bb92a9",
- "size": 0,
- "backupType": "Manual",
- "label": "powershellBackupTest2",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - Could not spawn additional jobs for volume backup. Please wait for the ongoing jobs to finish and try again.",
- "volumeName": "ps7841",
- "useExistingSnapshot": false
- }
- },
- {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/accountBackups/ps4177",
- "name": "sdk-py-tests-acc-1/ps4177",
- "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2021-07-13T16:11:06Z",
- "backupId": "ea3c8071-076e-674f-e2c6-8f071d4a9043",
- "size": 331776,
- "backupType": "Manual",
- "provisioningState": "Succeeded",
- "failureReason": "None",
- "volumeName": "ps7841",
- "useExistingSnapshot": false
- }
- },
- {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/accountBackups/ps2088",
- "name": "sdk-py-tests-acc-1/ps2088",
- "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2021-07-13T16:38:44Z",
- "backupId": "b8d46456-4b45-ae98-6752-ba096d91ebb1",
- "size": 331776,
- "backupType": "Manual",
- "provisioningState": "Succeeded",
- "failureReason": "None",
- "volumeName": "ps5378",
- "useExistingSnapshot": false
- }
- },
- {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/accountBackups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-25T16:27:04Z",
- "backupId": "eab5cc2c-7092-7f5b-2751-31119bcd75ee",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- ]
+ "error": {
+ "code": "ResourceNotFound",
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/sdk-py-tests-backup-1-aac12d96?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/ad9b7792-71bb-4690-a0c4-97fd51c7d370?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38e92392-d946-4a29-9e23-590755ce9fd1?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Wed, 25 May 2022 16:34:56 GMT",
+ "Date": "Tue, 26 Jul 2022 21:57:15 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ad9b7792-71bb-4690-a0c4-97fd51c7d370?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38e92392-d946-4a29-9e23-590755ce9fd1?api-version=2022-03-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": "cef347b5-29cc-463e-a347-d52dfb52d777",
+ "x-ms-correlation-request-id": "81147b78-abbd-49f3-a32e-915b7bc52414",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163456Z:cef347b5-29cc-463e-a347-d52dfb52d777",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215715Z:81147b78-abbd-49f3-a32e-915b7bc52414",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ad9b7792-71bb-4690-a0c4-97fd51c7d370?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38e92392-d946-4a29-9e23-590755ce9fd1?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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, 26 Jul 2022 21:57: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": "589048c1-5302-41fc-b814-f911d9e31550",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215745Z:589048c1-5302-41fc-b814-f911d9e31550",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38e92392-d946-4a29-9e23-590755ce9fd1",
+ "name": "38e92392-d946-4a29-9e23-590755ce9fd1",
+ "status": "Deleting",
+ "startTime": "2022-07-26T21:57:15.0581602Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/38e92392-d946-4a29-9e23-590755ce9fd1?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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, 26 Jul 2022 21:58: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": "e2f82bff-c793-4432-b24f-e69298cdae58",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215815Z:e2f82bff-c793-4432-b24f-e69298cdae58",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38e92392-d946-4a29-9e23-590755ce9fd1",
+ "name": "38e92392-d946-4a29-9e23-590755ce9fd1",
+ "status": "Deleting",
+ "startTime": "2022-07-26T21:57:15.0581602Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/38e92392-d946-4a29-9e23-590755ce9fd1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3625,7 +3719,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:35:26 GMT",
+ "Date": "Tue, 26 Jul 2022 21:58:46 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3633,31 +3727,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a76cf07e-41c4-4b04-b05b-0ca56c8a26ff",
- "x-ms-ratelimit-remaining-subscription-reads": "11938",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163527Z:a76cf07e-41c4-4b04-b05b-0ca56c8a26ff",
+ "x-ms-correlation-request-id": "c80d2060-9d85-446a-a094-f87c1690d186",
+ "x-ms-ratelimit-remaining-subscription-reads": "11996",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215846Z:c80d2060-9d85-446a-a094-f87c1690d186",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ad9b7792-71bb-4690-a0c4-97fd51c7d370",
- "name": "ad9b7792-71bb-4690-a0c4-97fd51c7d370",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38e92392-d946-4a29-9e23-590755ce9fd1",
+ "name": "38e92392-d946-4a29-9e23-590755ce9fd1",
"status": "Deleting",
- "startTime": "2022-05-25T16:34:56.7637164Z",
+ "startTime": "2022-07-26T21:57:15.0581602Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/ad9b7792-71bb-4690-a0c4-97fd51c7d370?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38e92392-d946-4a29-9e23-590755ce9fd1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3665,7 +3759,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:35:56 GMT",
+ "Date": "Tue, 26 Jul 2022 21:59:16 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3673,31 +3767,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a631dff5-0bd6-437e-91c2-0aa3bcb61c91",
- "x-ms-ratelimit-remaining-subscription-reads": "11937",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163557Z:a631dff5-0bd6-437e-91c2-0aa3bcb61c91",
+ "x-ms-correlation-request-id": "77bbb2ec-73cc-4a9e-833b-7051c2de25cf",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215916Z:77bbb2ec-73cc-4a9e-833b-7051c2de25cf",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ad9b7792-71bb-4690-a0c4-97fd51c7d370",
- "name": "ad9b7792-71bb-4690-a0c4-97fd51c7d370",
- "status": "Deleting",
- "startTime": "2022-05-25T16:34:56.7637164Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38e92392-d946-4a29-9e23-590755ce9fd1",
+ "name": "38e92392-d946-4a29-9e23-590755ce9fd1",
+ "status": "Succeeded",
+ "startTime": "2022-07-26T21:57:15.0581602Z",
+ "endTime": "2022-07-26T21:59:04.6004367Z",
+ "percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/ad9b7792-71bb-4690-a0c4-97fd51c7d370?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38e92392-d946-4a29-9e23-590755ce9fd1?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3705,7 +3799,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:36:27 GMT",
+ "Date": "Tue, 26 Jul 2022 21:59:16 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3713,31 +3807,26 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1f7f2b9e-1e8f-4db8-93b5-2dd8a29086f3",
- "x-ms-ratelimit-remaining-subscription-reads": "11936",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163627Z:1f7f2b9e-1e8f-4db8-93b5-2dd8a29086f3",
+ "x-ms-correlation-request-id": "7e079ce5-9d1c-4c45-8119-33328c5bfe53",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215916Z:7e079ce5-9d1c-4c45-8119-33328c5bfe53",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ad9b7792-71bb-4690-a0c4-97fd51c7d370",
- "name": "ad9b7792-71bb-4690-a0c4-97fd51c7d370",
- "status": "Succeeded",
- "startTime": "2022-05-25T16:34:56.7637164Z",
- "endTime": "2022-05-25T16:36:00.597521Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/sdk-py-tests-backup-1-aac12d96",
+ "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-backup-1-aac12d96",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ad9b7792-71bb-4690-a0c4-97fd51c7d370?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3745,7 +3834,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:36:27 GMT",
+ "Date": "Tue, 26 Jul 2022 21:59:16 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3753,362 +3842,483 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e25d0adb-c5c5-4899-a515-e1cfc1073492",
- "x-ms-ratelimit-remaining-subscription-reads": "11935",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163627Z:e25d0adb-c5c5-4899-a515-e1cfc1073492",
+ "x-ms-correlation-request-id": "5db3ae76-607f-44ec-b284-3858316d6593",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215917Z:5db3ae76-607f-44ec-b284-3858316d6593",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-25T16%3A35%3A51.5271479Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-25T16:26:31.4913059Z"
- },
- "properties": {
- "dataProtection": {
- "backup": {
- "backupEnabled": true,
- "policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
+ "value": [
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-1825",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-1825",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T11:19:54Z",
+ "backupId": "4bd0276d-c371-976b-4d84-48f0b1d0b473",
+ "size": 339968,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-7246",
+ "useExistingSnapshot": false
}
},
- "fileSystemId": "b188368b-aeb7-0854-236c-fb215bc20df8",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
- "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"
- }
- ]
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-1574",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-1574",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T11:55:51Z",
+ "backupId": "e45d5d10-3d65-201b-c697-0e9473be08ad",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-2724",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-6163",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-6163",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T14:23:19Z",
+ "backupId": "58ee530d-86d8-519d-616c-bac680098410",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-6011",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-5797",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-5797",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T15:02:21Z",
+ "backupId": "36776a8e-f849-8bb0-9725-3f74dccc77da",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-8710",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-9586",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-9586",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T15:32:25Z",
+ "backupId": "6bc9f230-e226-5cdb-1b24-c3b6a484660b",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-6781",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-2941",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-2941",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T15:58:23Z",
+ "backupId": "1f1c6b9b-851b-f559-1435-b4fcc1af5c48",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-7822",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-431",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-431",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T16:08:22Z",
+ "backupId": "368eccf2-e212-7be4-b588-47ba874b4b63",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-7973",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-7953",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-7953",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T16:21:43Z",
+ "backupId": "873e51fb-64e9-e342-c1d1-1a04eeab6c53",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-4116",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-1494",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-1494",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T16:46:30Z",
+ "backupId": "90ec0719-0341-fb84-5f53-24d59278823b",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-2539",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-407",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-407",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T17:01:59Z",
+ "backupId": "6574427f-1a12-1fe8-d94f-5ec8250bb9d5",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-6804",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-1434",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-1434",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T17:17:35Z",
+ "backupId": "19f54b06-c926-1c6b-85f7-0a5cb4f2df0e",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-719",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-9348",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-9348",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T17:59:31Z",
+ "backupId": "a8569742-967e-2d95-506e-27c9687aa217",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-9441",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-4466",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-4466",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T18:30:59Z",
+ "backupId": "77bbc3d5-a6a8-f626-944b-886912f68529",
+ "size": 352256,
+ "backupType": "Manual",
+ "label": "adHocBackup2",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-7067",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-5190",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-5190",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T18:55:18Z",
+ "backupId": "4e4cf360-d77c-e37c-fcbb-2c79f89e4d68",
+ "size": 352256,
+ "backupType": "Manual",
+ "label": "adHocBackup2",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-7183",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-4930",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-4930",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T19:21:32Z",
+ "backupId": "38c2b191-0807-0733-781d-463707c05468",
+ "size": 352256,
+ "backupType": "Manual",
+ "label": "adHocBackup2",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-2191",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-1999",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-1999",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T20:12:35Z",
+ "backupId": "07911d51-e4bb-1ad9-4e25-3cd9e1f7fb8e",
+ "size": 352256,
+ "backupType": "Manual",
+ "label": "adHocBackup2",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-2675",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-3200",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-3200",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-15T09:54:28Z",
+ "backupId": "85d51660-24ca-4df5-62f2-db5407965554",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-8658",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-4085",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-4085",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-15T10:29:45Z",
+ "backupId": "ed8aa2ca-6982-caca-7306-1e406329e489",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-1546",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-1061",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-1061",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-15T13:33:46Z",
+ "backupId": "5bb3006b-8416-2f8c-bd06-e4aea1666e29",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-7594",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-113",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-113",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-15T14:30:48Z",
+ "backupId": "b74dd99e-e441-990c-e0b7-18151ccaad98",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-9003",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-4503",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-4503",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-15T14:59:27Z",
+ "backupId": "5e04f71f-ab25-47f3-9b53-c5f64aa25be5",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-1636",
+ "useExistingSnapshot": false
+ }
},
- "protocolTypes": [
- "NFSv3"
- ],
- "baremetalTenantId": "DELETED_baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_70bea700",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "160f6865-9ae1-8b9e-e8f8-5dcc147cbad1",
- "mountTargets": [
- {
- "provisioningState": "",
- "mountTargetId": "b188368b-aeb7-0854-236c-fb215bc20df8",
- "fileSystemId": "b188368b-aeb7-0854-236c-fb215bc20df8",
- "startIp": "",
- "endIp": "",
- "gateway": "",
- "netmask": "",
- "subnet": "",
- "ipAddress": "10.7.0.4"
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-3134",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-3134",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-15T15:18:06Z",
+ "backupId": "adc3da88-7273-55ab-2b8a-d557b59af309",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-5632",
+ "useExistingSnapshot": false
}
- ],
- "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": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T16:21:43.4054126Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T16:26:31.734962Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
- },
- "RequestBody": null,
- "StatusCode": 404,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Length": "306",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:39:49 GMT",
- "Expires": "-1",
- "Pragma": "no-cache",
- "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
- "X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "32ea26cd-a6ee-4667-973e-dc623986c58d",
- "x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T163949Z:32ea26cd-a6ee-4667-973e-dc623986c58d"
- },
- "ResponseBody": {
- "error": {
- "code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/accountBackups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "DELETE",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
- },
- "RequestBody": null,
- "StatusCode": 202,
- "ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f0a563ea-8e78-4e9f-92f5-6a1e1f72b7e3?api-version=2022-01-01",
- "Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Wed, 25 May 2022 16:40:03 GMT",
- "Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f0a563ea-8e78-4e9f-92f5-6a1e1f72b7e3?api-version=2022-01-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": "2ac0a6fb-aa0b-4cd4-a2be-96f9af932d83",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T164004Z:2ac0a6fb-aa0b-4cd4-a2be-96f9af932d83",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": null
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f0a563ea-8e78-4e9f-92f5-6a1e1f72b7e3?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 16:40: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": "a4572beb-d01a-46fc-a918-03ec22960c5c",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T164034Z:a4572beb-d01a-46fc-a918-03ec22960c5c",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f0a563ea-8e78-4e9f-92f5-6a1e1f72b7e3",
- "name": "f0a563ea-8e78-4e9f-92f5-6a1e1f72b7e3",
- "status": "Deleting",
- "startTime": "2022-05-25T16:40:04.0338406Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/accountBackups/sdk-py-tests-backup-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f0a563ea-8e78-4e9f-92f5-6a1e1f72b7e3?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 16:41: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": "9f7307cd-aabd-459c-81d5-68ffed7218fd",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T164104Z:9f7307cd-aabd-459c-81d5-68ffed7218fd",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f0a563ea-8e78-4e9f-92f5-6a1e1f72b7e3",
- "name": "f0a563ea-8e78-4e9f-92f5-6a1e1f72b7e3",
- "status": "Succeeded",
- "startTime": "2022-05-25T16:40:04.0338406Z",
- "endTime": "2022-05-25T16:40:54.5777226Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/accountBackups/sdk-py-tests-backup-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f0a563ea-8e78-4e9f-92f5-6a1e1f72b7e3?api-version=2022-01-01\u0026operationResultResponseType=Location",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 16:41: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": "56fa0800-86d7-4192-9771-30f770c29ed7",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T164104Z:56fa0800-86d7-4192-9771-30f770c29ed7",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/accountBackups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
- "location": "southcentralusstage"
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/accountBackups?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 16:41: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": "6cd8f429-9db5-4a33-957b-b3fa7ae3f663",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T164105Z:6cd8f429-9db5-4a33-957b-b3fa7ae3f663",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "value": [
+ },
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/accountBackups/ps266",
- "name": "sdk-py-tests-acc-1/ps266",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-8851",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-8851",
"type": "Microsoft.NetApp/netAppAccounts/accountBackups",
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2021-07-13T16:11:20Z",
- "backupId": "750af0a8-7223-5c69-2e7a-00a629bb92a9",
- "size": 0,
+ "creationDate": "2022-07-15T16:01:34Z",
+ "backupId": "7c190bd0-7f48-df97-e716-33ec49bd9858",
+ "size": 331776,
"backupType": "Manual",
- "label": "powershellBackupTest2",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - Could not spawn additional jobs for volume backup. Please wait for the ongoing jobs to finish and try again.",
- "volumeName": "ps7841",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-563",
"useExistingSnapshot": false
}
},
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/accountBackups/ps4177",
- "name": "sdk-py-tests-acc-1/ps4177",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-9165",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-9165",
"type": "Microsoft.NetApp/netAppAccounts/accountBackups",
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2021-07-13T16:11:06Z",
- "backupId": "ea3c8071-076e-674f-e2c6-8f071d4a9043",
+ "creationDate": "2022-07-18T11:12:22Z",
+ "backupId": "5c6583de-170a-a2fd-fb22-f3f5a6a23882",
"size": 331776,
"backupType": "Manual",
+ "label": "updatedLabel",
"provisioningState": "Succeeded",
"failureReason": "None",
- "volumeName": "ps7841",
+ "volumeName": "volumeName-5072",
"useExistingSnapshot": false
}
},
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/accountBackups/ps2088",
- "name": "sdk-py-tests-acc-1/ps2088",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/backup-6330",
+ "name": "sdk-py-tests-acc-1-aac12d96/backup-6330",
"type": "Microsoft.NetApp/netAppAccounts/accountBackups",
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2021-07-13T16:38:44Z",
- "backupId": "b8d46456-4b45-ae98-6752-ba096d91ebb1",
+ "creationDate": "2022-07-20T00:28:30Z",
+ "backupId": "f98f5a5f-aa1b-83a3-b2af-ca45efe632f3",
"size": 331776,
"backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-6612",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/sdk-py-tests-backup-4",
+ "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-backup-4",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-26T17:05:10Z",
+ "backupId": "f1054c1a-ce6a-8473-d19b-d97d90673a9e",
+ "size": 360448,
+ "backupType": "Manual",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "sdk-py-tests-vol-3-51142cdf",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/sdk-py-tests-backup-2-51142cdf",
+ "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-backup-2-51142cdf",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-26T20:57:10Z",
+ "backupId": "4f0e52b4-badb-9e57-be30-8344c736e9d5",
+ "size": 339968,
+ "backupType": "Manual",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "sdk-py-tests-vol-3-51142cdf",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/sdk-py-tests-backup-1-51142cdf",
+ "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-backup-1-51142cdf",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-26T21:36:19Z",
+ "backupId": "85eba5f0-3102-a5fb-b74c-eaaaf05d04ba",
+ "size": 339968,
+ "backupType": "Manual",
"provisioningState": "Succeeded",
"failureReason": "None",
- "volumeName": "ps5378",
+ "volumeName": "sdk-py-tests-vol-3-51142cdf",
"useExistingSnapshot": false
}
}
@@ -4116,43 +4326,43 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/dffc76ca-3d62-4fd5-aa99-893cc9eafbbe?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/914d968b-cc95-44ac-94d6-f389edb9855a?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Wed, 25 May 2022 16:41:15 GMT",
+ "Date": "Tue, 26 Jul 2022 21:59:27 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dffc76ca-3d62-4fd5-aa99-893cc9eafbbe?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/914d968b-cc95-44ac-94d6-f389edb9855a?api-version=2022-03-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": "f8e88edb-3c28-4038-b2d0-d3bfe5653680",
+ "x-ms-correlation-request-id": "58f7f755-6fdb-451e-be68-b727e5ec2d31",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T164116Z:f8e88edb-3c28-4038-b2d0-d3bfe5653680",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215927Z:58f7f755-6fdb-451e-be68-b727e5ec2d31",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dffc76ca-3d62-4fd5-aa99-893cc9eafbbe?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/914d968b-cc95-44ac-94d6-f389edb9855a?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4160,7 +4370,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:41:45 GMT",
+ "Date": "Tue, 26 Jul 2022 21:59:57 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4168,31 +4378,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b6290234-7dc5-42db-b6d4-6bc59623d3f6",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T164146Z:b6290234-7dc5-42db-b6d4-6bc59623d3f6",
+ "x-ms-correlation-request-id": "892c77fb-e4b0-4f67-9b1d-4a5b566bdfa8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215958Z:892c77fb-e4b0-4f67-9b1d-4a5b566bdfa8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dffc76ca-3d62-4fd5-aa99-893cc9eafbbe",
- "name": "dffc76ca-3d62-4fd5-aa99-893cc9eafbbe",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/914d968b-cc95-44ac-94d6-f389edb9855a",
+ "name": "914d968b-cc95-44ac-94d6-f389edb9855a",
"status": "Succeeded",
- "startTime": "2022-05-25T16:41:16.2670011Z",
- "endTime": "2022-05-25T16:41:20.9410961Z",
+ "startTime": "2022-07-26T21:59:27.8242074Z",
+ "endTime": "2022-07-26T21:59:28.1205115Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/dffc76ca-3d62-4fd5-aa99-893cc9eafbbe?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/914d968b-cc95-44ac-94d6-f389edb9855a?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4200,7 +4410,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:41:45 GMT",
+ "Date": "Tue, 26 Jul 2022 21:59:58 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4208,211 +4418,203 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7b9452a4-3962-4f7e-a29d-3b9571f3efc4",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T164146Z:7b9452a4-3962-4f7e-a29d-3b9571f3efc4",
+ "x-ms-correlation-request-id": "dfb97c17-95a0-4894-828b-9b18a2f7abef",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T215958Z:dfb97c17-95a0-4894-828b-9b18a2f7abef",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T16%3A41%3A16.2696768Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-26T21%3A59%3A27.8229689Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T16:20:58.7860675Z"
+ "CreatedOnDate": "2022-07-26T21:43:24.6082682Z"
},
"properties": {
- "poolId": "160f6865-9ae1-8b9e-e8f8-5dcc147cbad1",
+ "poolId": "c6c77a79-f6c1-6b38-5d68-39a03e17843e",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1",
"qosType": "Auto",
"totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T16:21:00.0495192Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T16:21:00.0495192Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Wed, 25 May 2022 16:41:56 GMT",
+ "Date": "Tue, 26 Jul 2022 22:00:08 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2593709e-f103-4c7e-830e-b9c2defba199",
+ "x-ms-correlation-request-id": "bfaa61f6-f261-42b8-a3ec-4463da3ebdcb",
"x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T164157Z:2593709e-f103-4c7e-830e-b9c2defba199"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T220008Z:bfaa61f6-f261-42b8-a3ec-4463da3ebdcb"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Wed, 25 May 2022 16:42:07 GMT",
+ "Date": "Tue, 26 Jul 2022 22:00:19 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "cbe6a39d-e29f-4b1c-b775-f4eaa9db7c9f",
+ "x-ms-correlation-request-id": "b1bcf834-1466-4c49-ba3b-6c90acfe94a5",
"x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T164207Z:cbe6a39d-e29f-4b1c-b775-f4eaa9db7c9f"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T220019Z:b1bcf834-1466-4c49-ba3b-6c90acfe94a5"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Wed, 25 May 2022 16:42:17 GMT",
+ "Date": "Tue, 26 Jul 2022 22:00:29 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "42d3bb46-f279-4aa3-ad63-e911ab1b9ec4",
+ "x-ms-correlation-request-id": "43b10718-e30e-444e-877c-17c7b8962ff9",
"x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T164217Z:42d3bb46-f279-4aa3-ad63-e911ab1b9ec4"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T220029Z:43b10718-e30e-444e-877c-17c7b8962ff9"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Wed, 25 May 2022 16:42:28 GMT",
+ "Date": "Tue, 26 Jul 2022 22:00:39 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d1e8bc8c-b360-4551-9232-6943bab847e4",
+ "x-ms-correlation-request-id": "a7d4172e-aad4-4806-a315-664b00edae62",
"x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T164228Z:d1e8bc8c-b360-4551-9232-6943bab847e4"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T220039Z:a7d4172e-aad4-4806-a315-664b00edae62"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:42:38 GMT",
+ "Date": "Tue, 26 Jul 2022 22:00:50 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d1af866e-5fca-4bb3-9c04-2fe82302798a",
+ "x-ms-correlation-request-id": "7b6f73e4-b8fc-476d-a8f1-9d7726f190a6",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T164238Z:d1af866e-5fca-4bb3-9c04-2fe82302798a"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T220050Z:7b6f73e4-b8fc-476d-a8f1-9d7726f190a6"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/b4ffa1d4-adbe-4c0a-95f2-e36a261ce4d4?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0cc22889-c9e7-47e8-88cb-2a3c21137853?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Wed, 25 May 2022 16:42:39 GMT",
+ "Date": "Tue, 26 Jul 2022 22:00:51 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b4ffa1d4-adbe-4c0a-95f2-e36a261ce4d4?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0cc22889-c9e7-47e8-88cb-2a3c21137853?api-version=2022-03-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": "1438ea8f-bc74-4a84-82f1-918486daaccf",
+ "x-ms-correlation-request-id": "491d7b49-1068-403b-b186-a92404a59ab5",
"x-ms-ratelimit-remaining-subscription-deletes": "14993",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T164239Z:1438ea8f-bc74-4a84-82f1-918486daaccf",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T220051Z:491d7b49-1068-403b-b186-a92404a59ab5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b4ffa1d4-adbe-4c0a-95f2-e36a261ce4d4?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0cc22889-c9e7-47e8-88cb-2a3c21137853?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4420,7 +4622,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:43:09 GMT",
+ "Date": "Tue, 26 Jul 2022 22:01:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4428,31 +4630,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "61adfa2a-2f52-4b70-8edd-4b6c0ad7f4b2",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T164310Z:61adfa2a-2f52-4b70-8edd-4b6c0ad7f4b2",
+ "x-ms-correlation-request-id": "2c1f2926-4f24-46ef-a03a-a6914af6f212",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T220122Z:2c1f2926-4f24-46ef-a03a-a6914af6f212",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b4ffa1d4-adbe-4c0a-95f2-e36a261ce4d4",
- "name": "b4ffa1d4-adbe-4c0a-95f2-e36a261ce4d4",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0cc22889-c9e7-47e8-88cb-2a3c21137853",
+ "name": "0cc22889-c9e7-47e8-88cb-2a3c21137853",
"status": "Succeeded",
- "startTime": "2022-05-25T16:42:39.7515218Z",
- "endTime": "2022-05-25T16:42:39.7827801Z",
+ "startTime": "2022-07-26T22:00:51.7208811Z",
+ "endTime": "2022-07-26T22:00:51.7833878Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b4ffa1d4-adbe-4c0a-95f2-e36a261ce4d4?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0cc22889-c9e7-47e8-88cb-2a3c21137853?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4460,7 +4662,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:43:10 GMT",
+ "Date": "Tue, 26 Jul 2022 22:01:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4468,19 +4670,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "582bdbf0-8e6c-434f-8293-40f926583d4b",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T164310Z:582bdbf0-8e6c-434f-8293-40f926583d4b",
+ "x-ms-correlation-request-id": "2c13313c-0735-4f97-b7af-499ca19add1a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T220122Z:2c13313c-0735-4f97-b7af-499ca19add1a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T16%3A42%3A39.7567241Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-26T22%3A00%3A51.7212159Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T16:20:20.6114629Z"
+ "CreatedOnDate": "2022-07-26T21:42:51.4724767Z"
},
"properties": {
"encryption": {
@@ -4491,41 +4693,41 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-25T16:20:25.8801579Z",
+ "createdAt": "2022-07-26T21:42:52.5674726Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T16:20:25.8801579Z"
+ "lastModifiedAt": "2022-07-26T21:42:52.5674726Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:43:12 GMT",
+ "Date": "Tue, 26 Jul 2022 22:01:22 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "02327d6b-2f9c-4514-8048-b54f78ecd281",
+ "x-ms-correlation-request-id": "f9043f3a-a1b7-4e0c-992c-903b65b4c3d7",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T164312Z:02327d6b-2f9c-4514-8048-b54f78ecd281"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T220122Z:f9043f3a-a1b7-4e0c-992c-903b65b4c3d7"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
}
}
}
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 762d3c779846..cd47dab97d0c 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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": "Wed, 25 May 2022 15:09:18 GMT",
+ "Date": "Wed, 27 Jul 2022 10:10:00 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.12794.5 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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": "Wed, 25 May 2022 15:09:18 GMT",
+ "Date": "Wed, 27 Jul 2022 10:10:00 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.12794.4 - NEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - WEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "14902d11-ba18-4e1b-9d3c-2da5496ce1fd",
+ "client-request-id": "a5ed718f-edcc-4039-a171-4041614a2793",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "14902d11-ba18-4e1b-9d3c-2da5496ce1fd",
+ "client-request-id": "a5ed718f-edcc-4039-a171-4041614a2793",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:09:18 GMT",
+ "Date": "Wed, 27 Jul 2022 10:10:00 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12794.5 - NEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - NEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,67 +213,81 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "93",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2",
+ "properties": {
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ }
+ }
},
- "StatusCode": 201,
+ "StatusCode": 200,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f69d9016-2de7-44bc-8de4-8093ae9f4d37?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/8bac8ce2-7f79-4a5c-8547-9b46de5a7892?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Length": "699",
+ "Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:09:28 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A09%3A27.4944592Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 10:10:06 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Retry-After": "3",
+ "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": "95a535f4-54c9-494b-b8fb-0f02ecd45435",
+ "x-ms-arm-service-request-id": "acb6f36a-b1aa-452a-b00d-c592bd63b42e",
+ "x-ms-correlation-request-id": "6150d6a8-5c71-488e-bbd2-d109b64b20d3",
"x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T150928Z:95a535f4-54c9-494b-b8fb-0f02ecd45435",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101006Z:6150d6a8-5c71-488e-bbd2-d109b64b20d3"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
- "type": "Microsoft.NetApp/netAppAccounts",
- "etag": "W/\u0022datetime\u00272022-05-25T15%3A09%3A27.4944592Z\u0027\u0022",
- "location": "southcentralusstage",
+ "name": "sdk-python-tests-vnet-westus2-219c2c63",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63",
+ "etag": "W/\u00223f70cd44-c5bf-4da0-927f-fb625ceabab3\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:09:23.7548122Z"
+ "CreatedOnDate": "2022-07-27T10:10:02.5851486Z"
},
"properties": {
- "provisioningState": "Creating"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:09:26.7615882Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:09:26.7615882Z"
+ "provisioningState": "Updating",
+ "resourceGuid": "460b7661-a6e0-4799-bfe9-3d439030b432",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f69d9016-2de7-44bc-8de4-8093ae9f4d37?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8bac8ce2-7f79-4a5c-8547-9b46de5a7892?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,39 +295,34 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:09:58 GMT",
+ "Date": "Wed, 27 Jul 2022 10:10:09 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "af0181fe-29fb-46f4-8bd3-a1c37cb23dc0",
+ "x-ms-arm-service-request-id": "2567fd40-194f-479d-85b2-4f2dbbdabec8",
+ "x-ms-correlation-request-id": "2d0e4e67-4764-4a2a-b984-7874df34ab15",
"x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T150959Z:af0181fe-29fb-46f4-8bd3-a1c37cb23dc0",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101009Z:2d0e4e67-4764-4a2a-b984-7874df34ab15"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f69d9016-2de7-44bc-8de4-8093ae9f4d37",
- "name": "f69d9016-2de7-44bc-8de4-8093ae9f4d37",
- "status": "Succeeded",
- "startTime": "2022-05-25T15:09:27.5029715Z",
- "endTime": "2022-05-25T15:09:27.534197Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
- }
+ "status": "Succeeded"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,137 +330,129 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:09:58 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A09%3A27.5379589Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 10:10:10 GMT",
+ "ETag": "W/\u0022c9fc3d5b-dad7-4a80-bd03-57e039892af7\u0022",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "1c977ff5-7383-4322-8b3f-8f61af4f5ecd",
+ "x-ms-arm-service-request-id": "dfbf5981-0375-4842-b428-aeb0e100ae81",
+ "x-ms-correlation-request-id": "98c7e8a9-338b-454e-93bc-33fc9a47e202",
"x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T150959Z:1c977ff5-7383-4322-8b3f-8f61af4f5ecd",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101011Z:98c7e8a9-338b-454e-93bc-33fc9a47e202"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
- "type": "Microsoft.NetApp/netAppAccounts",
- "etag": "W/\u0022datetime\u00272022-05-25T15%3A09%3A27.5379589Z\u0027\u0022",
- "location": "southcentralusstage",
+ "name": "sdk-python-tests-vnet-westus2-219c2c63",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63",
+ "etag": "W/\u0022c9fc3d5b-dad7-4a80-bd03-57e039892af7\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:09:23.7548122Z"
+ "CreatedOnDate": "2022-07-27T10:10:02.5851486Z"
},
"properties": {
- "activeDirectories": [
- {
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
- "password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
- "status": "Created",
- "smbServerName": "testsmb",
- "organizationalUnit": "CN=Computers",
- "aesEncryption": false,
- "ldapSigning": false,
- "ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
- "encryptDCConnections": false,
- "ldapSearchScope": {}
- }
- ],
- "encryption": {
- "keySource": "Microsoft.NetApp"
+ "provisioningState": "Succeeded",
+ "resourceGuid": "460b7661-a6e0-4799-bfe9-3d439030b432",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
},
- "provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:09:26.7615882Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:09:26.7615882Z"
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "150",
+ "Content-Length": "151",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
"properties": {
- "size": 4398046511104,
- "serviceLevel": "Premium",
- "coolAccess": false,
- "encryptionType": "Single"
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "properties": {
+ "serviceName": "Microsoft.Netapp/volumes"
+ }
+ }
+ ]
}
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/94ba140e-489a-458b-8631-8ab851933fb9?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6ac32e20-1354-4f75-84ab-71bd56422ead?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Length": "917",
+ "Content-Length": "1318",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:10:02 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A10%3A02.0068501Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 10:10:11 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Retry-After": "3",
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "16590095-6550-401a-b203-731291e3690e",
+ "x-ms-arm-service-request-id": "1f0d7cb2-c7ac-4b4b-acc6-6e2a5908b8fa",
+ "x-ms-correlation-request-id": "71decdf7-c2ee-4776-a149-357cd66accc3",
"x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151003Z:16590095-6550-401a-b203-731291e3690e",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101012Z:71decdf7-c2ee-4776-a149-357cd66accc3"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools",
- "etag": "W/\u0022datetime\u00272022-05-25T15%3A10%3A02.0068501Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-25T15:09:59.8999882Z"
- },
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default",
+ "etag": "W/\u0022ce0a7049-a825-42ad-aa90-786e12f18491\u0022",
"properties": {
- "serviceLevel": "Premium",
- "size": 4398046511104,
- "totalThroughputMibps": 0.0,
- "utilizedThroughputMibps": 0.0,
- "encryptionType": "Single",
- "coolAccess": false,
- "provisioningState": "Creating"
+ "provisioningState": "Updating",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u0022ce0a7049-a825-42ad-aa90-786e12f18491\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
},
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:10:01.6134394Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:10:01.6134394Z"
- }
+ "type": "Microsoft.Network/virtualNetworks/subnets"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/94ba140e-489a-458b-8631-8ab851933fb9?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6ac32e20-1354-4f75-84ab-71bd56422ead?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -458,39 +460,34 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:10:33 GMT",
+ "Date": "Wed, 27 Jul 2022 10:10:15 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "5e7baded-dd3a-4ba5-b54d-2d9d72e679ae",
+ "x-ms-arm-service-request-id": "5857bd74-03e8-4e9c-98da-c396b04fe024",
+ "x-ms-correlation-request-id": "e3ea082f-5e1d-46cc-ab10-cf1604ab27ea",
"x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151033Z:5e7baded-dd3a-4ba5-b54d-2d9d72e679ae",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101015Z:e3ea082f-5e1d-46cc-ab10-cf1604ab27ea"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/94ba140e-489a-458b-8631-8ab851933fb9",
- "name": "94ba140e-489a-458b-8631-8ab851933fb9",
- "status": "Succeeded",
- "startTime": "2022-05-25T15:10:02.0073331Z",
- "endTime": "2022-05-25T15:10:02.6948612Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
- }
+ "status": "Succeeded"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -498,1114 +495,367 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:10:33 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A10%3A02.6907773Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 10:10:16 GMT",
+ "ETag": "W/\u00224a72e102-cb17-4e59-831b-eb2bc3d68219\u0022",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "27a659db-cc1c-405e-9bbf-8a247f7dbfd4",
+ "x-ms-arm-service-request-id": "c9db8ed5-1b19-4e38-835e-c0061061c55f",
+ "x-ms-correlation-request-id": "fa034b2c-d695-42ad-acb9-0d1ba1366607",
"x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151033Z:27a659db-cc1c-405e-9bbf-8a247f7dbfd4",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools",
- "etag": "W/\u0022datetime\u00272022-05-25T15%3A10%3A02.6907773Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-25T15:09:59.8999882Z"
- },
- "properties": {
- "poolId": "0d7cd2ad-0a61-5ffe-38be-da7fd5163705",
- "serviceLevel": "Premium",
- "size": 4398046511104,
- "qosType": "Auto",
- "totalThroughputMibps": 256.0,
- "utilizedThroughputMibps": 0.0,
- "encryptionType": "Single",
- "coolAccess": false,
- "provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:10:01.6134394Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:10:01.6134394Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "PUT",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "800",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
- },
- "RequestBody": {
- "location": "southcentralusstage",
- "properties": {
- "creationToken": "sdk-py-tests-vol-1",
- "serviceLevel": "Premium",
- "usageThreshold": 107374182400,
- "protocolTypes": [
- "NFSv3"
- ],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "coolAccess": false,
- "unixPermissions": "0770",
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled"
- }
- },
- "StatusCode": 201,
- "ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b42c779-bded-4161-b4f5-08217ac5e9c1?api-version=2022-01-01",
- "Cache-Control": "no-cache",
- "Content-Length": "1567",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:10:47 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A10%3A47.2723425Z\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": "5a93192e-d68d-4159-9217-440421f5e353",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151048Z:5a93192e-d68d-4159-9217-440421f5e353",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101017Z:fa034b2c-d695-42ad-acb9-0d1ba1366607"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-25T15%3A10%3A47.2723425Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-25T15:10:44.0171996Z"
- },
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default",
+ "etag": "W/\u00224a72e102-cb17-4e59-831b-eb2bc3d68219\u0022",
"properties": {
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "usageThreshold": 107374182400,
- "protocolTypes": [
- "NFSv3"
+ "provisioningState": "Succeeded",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u00224a72e102-cb17-4e59-831b-eb2bc3d68219\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Creating"
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
},
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:10:45.0304213Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:10:45.0304213Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b42c779-bded-4161-b4f5-08217ac5e9c1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:11: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": "ba8d5eaf-964f-4752-a776-d3f8ed86e6c1",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151118Z:ba8d5eaf-964f-4752-a776-d3f8ed86e6c1",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b42c779-bded-4161-b4f5-08217ac5e9c1",
- "name": "4b42c779-bded-4161-b4f5-08217ac5e9c1",
- "status": "Creating",
- "startTime": "2022-05-25T15:10:47.2740686Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
+ "type": "Microsoft.Network/virtualNetworks/subnets"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b42c779-bded-4161-b4f5-08217ac5e9c1?api-version=2022-01-01",
+ "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-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "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": "Wed, 25 May 2022 15:11:47 GMT",
- "Expires": "-1",
- "Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Date": "Wed, 27 Jul 2022 10:10:17 GMT",
+ "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
+ "Set-Cookie": "[set-cookie;]",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
- "Transfer-Encoding": "chunked",
- "Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "dc844b91-9a05-4429-80c5-6f8e606fa9e4",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151148Z:dc844b91-9a05-4429-80c5-6f8e606fa9e4",
- "X-Powered-By": "ASP.NET"
+ "x-ms-ests-server": "2.1.13355.6 - NEULR1 ProdSlices",
+ "X-XSS-Protection": "0"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b42c779-bded-4161-b4f5-08217ac5e9c1",
- "name": "4b42c779-bded-4161-b4f5-08217ac5e9c1",
- "status": "Creating",
- "startTime": "2022-05-25T15:10:47.2740686Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b42c779-bded-4161-b4f5-08217ac5e9c1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:12: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": "dabfeb11-9091-4bd4-8fc7-014a8ea8d95d",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151218Z:dabfeb11-9091-4bd4-8fc7-014a8ea8d95d",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b42c779-bded-4161-b4f5-08217ac5e9c1",
- "name": "4b42c779-bded-4161-b4f5-08217ac5e9c1",
- "status": "Creating",
- "startTime": "2022-05-25T15:10:47.2740686Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
+ "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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b42c779-bded-4161-b4f5-08217ac5e9c1?api-version=2022-01-01",
+ "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": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "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": "Wed, 25 May 2022 15:12:48 GMT",
- "Expires": "-1",
- "Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Date": "Wed, 27 Jul 2022 10:10:17 GMT",
+ "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
+ "Set-Cookie": "[set-cookie;]",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
- "Transfer-Encoding": "chunked",
- "Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6e71dbab-853c-4767-bba4-ae53d5a8f8e5",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151248Z:6e71dbab-853c-4767-bba4-ae53d5a8f8e5",
- "X-Powered-By": "ASP.NET"
+ "x-ms-ests-server": "2.1.13315.8 - WEULR1 ProdSlices",
+ "X-XSS-Protection": "0"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b42c779-bded-4161-b4f5-08217ac5e9c1",
- "name": "4b42c779-bded-4161-b4f5-08217ac5e9c1",
- "status": "Creating",
- "startTime": "2022-05-25T15:10:47.2740686Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
+ "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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b42c779-bded-4161-b4f5-08217ac5e9c1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/oauth2/v2.0/token",
+ "RequestMethod": "POST",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
+ "client-request-id": "336d6c72-8f4a-4d06-a3a7-e62daa518583",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "281",
+ "Content-Type": "application/x-www-form-urlencoded",
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.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.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
- "RequestBody": null,
+ "RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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-cache",
- "Content-Encoding": "gzip",
+ "Cache-Control": "no-store, no-cache",
+ "client-request-id": "336d6c72-8f4a-4d06-a3a7-e62daa518583",
+ "Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:13:19 GMT",
+ "Date": "Wed, 27 Jul 2022 10:10:17 GMT",
"Expires": "-1",
+ "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Set-Cookie": "[set-cookie;]",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
- "Transfer-Encoding": "chunked",
- "Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a109de82-03c9-4cbb-ad49-47128e3f004d",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151319Z:a109de82-03c9-4cbb-ad49-47128e3f004d",
- "X-Powered-By": "ASP.NET"
+ "x-ms-clitelem": "1,0,0,,",
+ "x-ms-ests-server": "2.1.13355.6 - WEULR1 ProdSlices",
+ "X-XSS-Protection": "0"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b42c779-bded-4161-b4f5-08217ac5e9c1",
- "name": "4b42c779-bded-4161-b4f5-08217ac5e9c1",
- "status": "Creating",
- "startTime": "2022-05-25T15:10:47.2740686Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
+ "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/southcentralusstage/operationResults/4b42c779-bded-4161-b4f5-08217ac5e9c1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63?api-version=2022-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:13: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": "74f99e59-f7c9-4710-9f74-e3ed4ec5ce88",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151349Z:74f99e59-f7c9-4710-9f74-e3ed4ec5ce88",
- "X-Powered-By": "ASP.NET"
+ "Content-Length": "23",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b42c779-bded-4161-b4f5-08217ac5e9c1",
- "name": "4b42c779-bded-4161-b4f5-08217ac5e9c1",
- "status": "Creating",
- "startTime": "2022-05-25T15:10:47.2740686Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b42c779-bded-4161-b4f5-08217ac5e9c1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "RequestBody": {
+ "location": "westus2"
},
- "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/ad150860-1086-4bee-8079-58204aabcb14?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "702",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:14:19 GMT",
+ "Date": "Wed, 27 Jul 2022 10:10:22 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T10%3A10%3A21.6478408Z\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": "b64bb5d2-f5eb-4b7f-af18-7f44bd06c86a",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151419Z:b64bb5d2-f5eb-4b7f-af18-7f44bd06c86a",
+ "x-ms-correlation-request-id": "4122e43c-9fd0-45a8-97ca-988dfb53dac6",
+ "x-ms-ratelimit-remaining-subscription-writes": "1197",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101022Z:4122e43c-9fd0-45a8-97ca-988dfb53dac6",
"X-Powered-By": "ASP.NET"
},
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b42c779-bded-4161-b4f5-08217ac5e9c1",
- "name": "4b42c779-bded-4161-b4f5-08217ac5e9c1",
- "status": "Creating",
- "startTime": "2022-05-25T15:10:47.2740686Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b42c779-bded-4161-b4f5-08217ac5e9c1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:14: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": "d1c714f8-8d7a-45e7-9cbb-23ade296bf04",
- "x-ms-ratelimit-remaining-subscription-reads": "11988",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151449Z:d1c714f8-8d7a-45e7-9cbb-23ade296bf04",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b42c779-bded-4161-b4f5-08217ac5e9c1",
- "name": "4b42c779-bded-4161-b4f5-08217ac5e9c1",
- "status": "Creating",
- "startTime": "2022-05-25T15:10:47.2740686Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b42c779-bded-4161-b4f5-08217ac5e9c1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:15: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": "27021fe6-3025-4e02-a929-f18059d20808",
- "x-ms-ratelimit-remaining-subscription-reads": "11987",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151520Z:27021fe6-3025-4e02-a929-f18059d20808",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b42c779-bded-4161-b4f5-08217ac5e9c1",
- "name": "4b42c779-bded-4161-b4f5-08217ac5e9c1",
- "status": "Succeeded",
- "startTime": "2022-05-25T15:10:47.2740686Z",
- "endTime": "2022-05-25T15:14:54.6845071Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:15:19 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A14%3A54.6853039Z\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": "21211f27-542b-4545-a506-036dcf69619d",
- "x-ms-ratelimit-remaining-subscription-reads": "11986",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151520Z:21211f27-542b-4545-a506-036dcf69619d",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-25T15%3A14%3A54.6853039Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-25T15:10:44.0171996Z"
- },
- "properties": {
- "fileSystemId": "68063ef3-5cdb-3e32-e3d3-35d025832caa",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_93ade68ee53011e9a696c27beff6b5ea_9abfac5a",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "68063ef3-5cdb-3e32-e3d3-35d025832caa",
- "fileSystemId": "68063ef3-5cdb-3e32-e3d3-35d025832caa",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.25,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true,
- "provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:10:45.0304213Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:10:45.0304213Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:15:30 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A14%3A54.6853039Z\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": "668b7671-78cd-4f06-b127-0bb94faff6f7",
- "x-ms-ratelimit-remaining-subscription-reads": "11985",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151530Z:668b7671-78cd-4f06-b127-0bb94faff6f7",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-25T15%3A14%3A54.6853039Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-25T15:10:44.0171996Z"
- },
- "properties": {
- "fileSystemId": "68063ef3-5cdb-3e32-e3d3-35d025832caa",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_93ade68ee53011e9a696c27beff6b5ea_9abfac5a",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "68063ef3-5cdb-3e32-e3d3-35d025832caa",
- "fileSystemId": "68063ef3-5cdb-3e32-e3d3-35d025832caa",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.25,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true,
- "provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:10:45.0304213Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:10:45.0304213Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:15: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": "b08bb03b-9658-4e44-bac2-9bdf6fd20107",
- "x-ms-ratelimit-remaining-subscription-reads": "11984",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151531Z:b08bb03b-9658-4e44-bac2-9bdf6fd20107",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "value": [
- {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "name": "sdk-py-tests-acc-1/cbsvault",
- "type": "Microsoft.NetApp/netAppAccounts/vaults",
- "properties": {}
- }
- ]
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "PATCH",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "401",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "backupEnabled": true
- }
- },
- "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/southcentralusstage/operationResults/39526967-cba3-4b1e-90ae-02cdae49e924?api-version=2022-01-01",
- "Cache-Control": "no-cache",
- "Content-Length": "2385",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:15:31 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A15%3A31.637106Z\u0027\u0022",
- "Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/39526967-cba3-4b1e-90ae-02cdae49e924?api-version=2022-01-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": "df79bc32-4021-4586-8313-20c9deae533d",
- "x-ms-ratelimit-remaining-subscription-writes": "1196",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151531Z:df79bc32-4021-4586-8313-20c9deae533d",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-25T15%3A15%3A31.637106Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-25T15:10:44.0171996Z"
- },
- "properties": {
- "provisioningState": "Patching",
- "fileSystemId": "68063ef3-5cdb-3e32-e3d3-35d025832caa",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_93ade68ee53011e9a696c27beff6b5ea_9abfac5a",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "68063ef3-5cdb-3e32-e3d3-35d025832caa",
- "fileSystemId": "68063ef3-5cdb-3e32-e3d3-35d025832caa",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.25,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:10:45.0304213Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:10:45.0304213Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/39526967-cba3-4b1e-90ae-02cdae49e924?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:16: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": "bf23cd16-c9c8-439c-9cc8-3e12351bca37",
- "x-ms-ratelimit-remaining-subscription-reads": "11983",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151602Z:bf23cd16-c9c8-439c-9cc8-3e12351bca37",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/39526967-cba3-4b1e-90ae-02cdae49e924",
- "name": "39526967-cba3-4b1e-90ae-02cdae49e924",
- "status": "Succeeded",
- "startTime": "2022-05-25T15:15:31.6419356Z",
- "endTime": "2022-05-25T15:15:41.4787569Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/39526967-cba3-4b1e-90ae-02cdae49e924?api-version=2022-01-01\u0026operationResultResponseType=Location",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:16: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": "a81d7d26-f467-4b29-8fef-203831c7ce69",
- "x-ms-ratelimit-remaining-subscription-reads": "11982",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151602Z:a81d7d26-f467-4b29-8fef-203831c7ce69",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-25T15%3A15%3A41.4814574Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-25T15:15:31.2516864Z"
- },
- "properties": {
- "dataProtection": {
- "backup": {
- "backupEnabled": true,
- "policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
- }
- },
- "fileSystemId": "68063ef3-5cdb-3e32-e3d3-35d025832caa",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
- "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_93ade68ee53011e9a696c27beff6b5ea_9abfac5a",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "0d7cd2ad-0a61-5ffe-38be-da7fd5163705",
- "mountTargets": [
- {
- "provisioningState": "",
- "mountTargetId": "68063ef3-5cdb-3e32-e3d3-35d025832caa",
- "fileSystemId": "68063ef3-5cdb-3e32-e3d3-35d025832caa",
- "startIp": "",
- "endIp": "",
- "gateway": "",
- "netmask": "",
- "subnet": "",
- "ipAddress": "10.7.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"
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T10%3A10%3A21.6478408Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T10:10:18.7907469Z"
+ },
+ "properties": {
+ "provisioningState": "Creating"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-25T15:10:45.0304213Z",
+ "createdAt": "2022-07-27T10:10:20.6906997Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:15:31.5200821Z"
+ "lastModifiedAt": "2022-07-27T10:10:20.6906997Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "PUT",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ad150860-1086-4bee-8079-58204aabcb14?api-version=2022-03-01",
+ "RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "81",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
- },
- "RequestBody": {
- "location": "southcentralusstage",
- "properties": {
- "useExistingSnapshot": false
- }
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "StatusCode": 201,
+ "RequestBody": null,
+ "StatusCode": 200,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/63455f14-2b4e-458f-b911-99a7d39f0c51?api-version=2022-01-01",
"Cache-Control": "no-cache",
- "Content-Length": "523",
+ "Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:16:03 GMT",
+ "Date": "Wed, 27 Jul 2022 10:10:53 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/63455f14-2b4e-458f-b911-99a7d39f0c51?api-version=2022-01-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": "3e3bf47c-2f4c-4384-998d-0609d97a4e54",
- "x-ms-ratelimit-remaining-subscription-writes": "1195",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151603Z:3e3bf47c-2f4c-4384-998d-0609d97a4e54",
+ "x-ms-correlation-request-id": "662f369d-8dba-473d-9fd9-17ff0e9efb1a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101054Z:662f369d-8dba-473d-9fd9-17ff0e9efb1a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ad150860-1086-4bee-8079-58204aabcb14",
+ "name": "ad150860-1086-4bee-8079-58204aabcb14",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T10:10:21.6558202Z",
+ "endTime": "2022-07-27T10:10:21.6871425Z",
+ "percentComplete": 100.0,
"properties": {
- "provisioningState": "Creating",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/63455f14-2b4e-458f-b911-99a7d39f0c51?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1613,7 +863,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:16:32 GMT",
+ "Date": "Wed, 27 Jul 2022 10:10:54 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T10%3A10%3A21.7029479Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1621,75 +872,128 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7f2280ad-489d-4db4-99a1-246d8a21574e",
- "x-ms-ratelimit-remaining-subscription-reads": "11981",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151633Z:7f2280ad-489d-4db4-99a1-246d8a21574e",
+ "x-ms-correlation-request-id": "53d6ca6a-bde2-4f7f-b31a-cf40d60ddd35",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101054Z:53d6ca6a-bde2-4f7f-b31a-cf40d60ddd35",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/63455f14-2b4e-458f-b911-99a7d39f0c51",
- "name": "63455f14-2b4e-458f-b911-99a7d39f0c51",
- "status": "Succeeded",
- "startTime": "2022-05-25T15:16:03.2161221Z",
- "endTime": "2022-05-25T15:16:05.169299Z",
- "percentComplete": 100.0,
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T10%3A10%3A21.7029479Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T10:10:18.7907469Z"
+ },
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1"
+ "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"
+ },
+ "provisioningState": "Succeeded"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-27T10:10:20.6906997Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T10:10:20.6906997Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/63455f14-2b4e-458f-b911-99a7d39f0c51?api-version=2022-01-01\u0026operationResultResponseType=Location",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "138",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "RequestBody": {
+ "location": "westus2",
+ "properties": {
+ "size": 4398046511104,
+ "serviceLevel": "Premium",
+ "coolAccess": false,
+ "encryptionType": "Single"
+ }
},
- "RequestBody": null,
"StatusCode": 201,
"ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dd021cbf-a22c-4644-8d0f-08f844fa9778?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "730",
+ "Content-Length": "918",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:16:33 GMT",
+ "Date": "Wed, 27 Jul 2022 10:10:57 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T10%3A10%3A56.1392944Z\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": "227850a8-7490-4b26-abc9-7711f26f1a08",
- "x-ms-ratelimit-remaining-subscription-reads": "11980",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151633Z:227850a8-7490-4b26-abc9-7711f26f1a08",
+ "x-ms-correlation-request-id": "3ba46e7c-bf70-4d27-86b6-26c3a652c40e",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101057Z:3ba46e7c-bf70-4d27-86b6-26c3a652c40e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "etag": "5/25/2022 3:16:05 PM",
- "location": "",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T10%3A10%3A56.1392944Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T10:10:54.8386807Z"
+ },
"properties": {
- "fileSystemId": "68063ef3-5cdb-3e32-e3d3-35d025832caa",
- "creationDate": "0001-01-01T00:00:00Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
- "size": 0,
- "backupType": "Manual",
- "failureReason": "None",
- "useExistingSnapshot": false,
+ "serviceLevel": "Premium",
+ "size": 4398046511104,
+ "totalThroughputMibps": 0.0,
+ "utilizedThroughputMibps": 0.0,
+ "encryptionType": "Single",
+ "coolAccess": false,
"provisioningState": "Creating"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-27T10:10:55.9295112Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T10:10:55.9295112Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dd021cbf-a22c-4644-8d0f-08f844fa9778?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1697,7 +1001,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:16:44 GMT",
+ "Date": "Wed, 27 Jul 2022 10:11:27 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1705,36 +1009,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9d1eeb0e-152c-4336-9c8b-36069b7c5dc8",
- "x-ms-ratelimit-remaining-subscription-reads": "11979",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151644Z:9d1eeb0e-152c-4336-9c8b-36069b7c5dc8",
+ "x-ms-correlation-request-id": "e8ccf811-9771-4d1d-a0d4-5bdcacb39a02",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101127Z:e8ccf811-9771-4d1d-a0d4-5bdcacb39a02",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dd021cbf-a22c-4644-8d0f-08f844fa9778",
+ "name": "dd021cbf-a22c-4644-8d0f-08f844fa9778",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T10:10:56.1426089Z",
+ "endTime": "2022-07-27T10:10:56.4082972Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1742,7 +1041,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:16:54 GMT",
+ "Date": "Wed, 27 Jul 2022 10:11:27 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T10%3A10%3A56.4101977Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1750,81 +1050,140 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d64441d3-52d6-4320-b794-684032c23152",
- "x-ms-ratelimit-remaining-subscription-reads": "11978",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151655Z:d64441d3-52d6-4320-b794-684032c23152",
+ "x-ms-correlation-request-id": "017b9794-e043-4d58-b718-85ee713a172e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101128Z:017b9794-e043-4d58-b718-85ee713a172e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T10%3A10%3A56.4101977Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T10:10:54.8386807Z"
+ },
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "poolId": "eb848bef-3c8d-5920-6c0d-451ea08c7708",
+ "serviceLevel": "Premium",
+ "size": 4398046511104,
+ "qosType": "Auto",
+ "totalThroughputMibps": 256.0,
+ "utilizedThroughputMibps": 0.0,
+ "encryptionType": "Single",
+ "coolAccess": false,
+ "provisioningState": "Succeeded"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63?api-version=2022-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "779",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "RequestBody": null,
- "StatusCode": 200,
+ "RequestBody": {
+ "location": "westus2",
+ "properties": {
+ "creationToken": "sdk-py-tests-vol-3-219c2c63",
+ "serviceLevel": "Premium",
+ "usageThreshold": 107374182400,
+ "protocolTypes": [
+ "NFSv3"
+ ],
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default",
+ "networkFeatures": "Basic",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "coolAccess": false,
+ "unixPermissions": "0770",
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0
+ }
+ },
+ "StatusCode": 201,
"ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d46ce-f54c-4514-af03-85a4804c185a?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "1577",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:17:05 GMT",
+ "Date": "Wed, 27 Jul 2022 10:11:40 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T10%3A11%3A40.1143688Z\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": "5539043f-d907-4926-8ef5-b0d2d9e3e99a",
- "x-ms-ratelimit-remaining-subscription-reads": "11977",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151706Z:5539043f-d907-4926-8ef5-b0d2d9e3e99a",
+ "x-ms-correlation-request-id": "f1d70d8c-5f70-4c3f-a478-8e2ba444a42d",
+ "x-ms-ratelimit-remaining-subscription-writes": "1195",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101141Z:f1d70d8c-5f70-4c3f-a478-8e2ba444a42d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T10%3A11%3A40.1143688Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T10:11:38.5584296Z"
+ },
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-3-219c2c63",
+ "usageThreshold": 107374182400,
+ "protocolTypes": [
+ "NFSv3"
+ ],
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default",
+ "networkFeatures": "Basic",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Creating"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-27T10:11:39.8210118Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T10:11:39.8210118Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d46ce-f54c-4514-af03-85a4804c185a?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1832,7 +1191,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:17:16 GMT",
+ "Date": "Wed, 27 Jul 2022 10:12:11 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1840,36 +1199,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f6f8f168-ed92-451d-ad9c-db9b6785cda5",
- "x-ms-ratelimit-remaining-subscription-reads": "11976",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151717Z:f6f8f168-ed92-451d-ad9c-db9b6785cda5",
+ "x-ms-correlation-request-id": "45c08788-c0d1-42b5-99ac-94aaa80f5b15",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101211Z:45c08788-c0d1-42b5-99ac-94aaa80f5b15",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d46ce-f54c-4514-af03-85a4804c185a",
+ "name": "488d46ce-f54c-4514-af03-85a4804c185a",
+ "status": "Creating",
+ "startTime": "2022-07-27T10:11:40.1082094Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d46ce-f54c-4514-af03-85a4804c185a?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1877,7 +1231,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:17:27 GMT",
+ "Date": "Wed, 27 Jul 2022 10:12:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1885,36 +1239,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6b73cfab-d51d-4121-837d-004ba28389b1",
- "x-ms-ratelimit-remaining-subscription-reads": "11975",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151728Z:6b73cfab-d51d-4121-837d-004ba28389b1",
+ "x-ms-correlation-request-id": "69bfc508-3ded-45c0-ac9a-32c1c62db751",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101241Z:69bfc508-3ded-45c0-ac9a-32c1c62db751",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d46ce-f54c-4514-af03-85a4804c185a",
+ "name": "488d46ce-f54c-4514-af03-85a4804c185a",
+ "status": "Creating",
+ "startTime": "2022-07-27T10:11:40.1082094Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d46ce-f54c-4514-af03-85a4804c185a?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1922,7 +1271,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:17:39 GMT",
+ "Date": "Wed, 27 Jul 2022 10:13:11 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1930,36 +1279,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0417b2e9-4ce1-42ad-aec3-b63b7b3cc749",
- "x-ms-ratelimit-remaining-subscription-reads": "11974",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151739Z:0417b2e9-4ce1-42ad-aec3-b63b7b3cc749",
+ "x-ms-correlation-request-id": "e6425f1e-40dd-426e-a32b-491e2c2ac38e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101312Z:e6425f1e-40dd-426e-a32b-491e2c2ac38e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d46ce-f54c-4514-af03-85a4804c185a",
+ "name": "488d46ce-f54c-4514-af03-85a4804c185a",
+ "status": "Creating",
+ "startTime": "2022-07-27T10:11:40.1082094Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d46ce-f54c-4514-af03-85a4804c185a?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1967,7 +1311,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:17:50 GMT",
+ "Date": "Wed, 27 Jul 2022 10:13:42 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1975,36 +1319,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "64144e16-0f1f-4fd8-914f-6d8c85efcc1a",
- "x-ms-ratelimit-remaining-subscription-reads": "11973",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151750Z:64144e16-0f1f-4fd8-914f-6d8c85efcc1a",
+ "x-ms-correlation-request-id": "37f0386b-a847-4ab6-94e1-72a2e0d401e3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101342Z:37f0386b-a847-4ab6-94e1-72a2e0d401e3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d46ce-f54c-4514-af03-85a4804c185a",
+ "name": "488d46ce-f54c-4514-af03-85a4804c185a",
+ "status": "Creating",
+ "startTime": "2022-07-27T10:11:40.1082094Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d46ce-f54c-4514-af03-85a4804c185a?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2012,7 +1351,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:18:01 GMT",
+ "Date": "Wed, 27 Jul 2022 10:14:12 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2020,36 +1359,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "07f659c0-76df-42f8-ae14-7aef1b9ce6e7",
- "x-ms-ratelimit-remaining-subscription-reads": "11972",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151801Z:07f659c0-76df-42f8-ae14-7aef1b9ce6e7",
+ "x-ms-correlation-request-id": "24f1a203-4a66-4cde-8c95-e86b8773d27d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101412Z:24f1a203-4a66-4cde-8c95-e86b8773d27d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d46ce-f54c-4514-af03-85a4804c185a",
+ "name": "488d46ce-f54c-4514-af03-85a4804c185a",
+ "status": "Creating",
+ "startTime": "2022-07-27T10:11:40.1082094Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d46ce-f54c-4514-af03-85a4804c185a?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2057,7 +1391,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:18:11 GMT",
+ "Date": "Wed, 27 Jul 2022 10:14:42 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2065,36 +1399,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "573d2aca-3406-4a94-87ea-fbcecf658d39",
- "x-ms-ratelimit-remaining-subscription-reads": "11971",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151812Z:573d2aca-3406-4a94-87ea-fbcecf658d39",
+ "x-ms-correlation-request-id": "882315cd-e041-4006-a048-14e8b480c582",
+ "x-ms-ratelimit-remaining-subscription-reads": "11986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101442Z:882315cd-e041-4006-a048-14e8b480c582",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d46ce-f54c-4514-af03-85a4804c185a",
+ "name": "488d46ce-f54c-4514-af03-85a4804c185a",
+ "status": "Creating",
+ "startTime": "2022-07-27T10:11:40.1082094Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d46ce-f54c-4514-af03-85a4804c185a?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2102,7 +1431,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:18:22 GMT",
+ "Date": "Wed, 27 Jul 2022 10:15:12 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2110,36 +1439,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9786b026-b055-4087-a666-2424bd708c4f",
- "x-ms-ratelimit-remaining-subscription-reads": "11970",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151822Z:9786b026-b055-4087-a666-2424bd708c4f",
+ "x-ms-correlation-request-id": "03c493fc-3230-4050-9600-f8d59add5ffe",
+ "x-ms-ratelimit-remaining-subscription-reads": "11985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101513Z:03c493fc-3230-4050-9600-f8d59add5ffe",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d46ce-f54c-4514-af03-85a4804c185a",
+ "name": "488d46ce-f54c-4514-af03-85a4804c185a",
+ "status": "Creating",
+ "startTime": "2022-07-27T10:11:40.1082094Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d46ce-f54c-4514-af03-85a4804c185a?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2147,7 +1471,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:18:33 GMT",
+ "Date": "Wed, 27 Jul 2022 10:15:42 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2155,36 +1479,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "72e8e716-515c-4410-bdd8-dcd2f01bb56b",
- "x-ms-ratelimit-remaining-subscription-reads": "11969",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151834Z:72e8e716-515c-4410-bdd8-dcd2f01bb56b",
+ "x-ms-correlation-request-id": "c6503989-3072-4cf8-bb8c-2f2607e0efcc",
+ "x-ms-ratelimit-remaining-subscription-reads": "11984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101543Z:c6503989-3072-4cf8-bb8c-2f2607e0efcc",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d46ce-f54c-4514-af03-85a4804c185a",
+ "name": "488d46ce-f54c-4514-af03-85a4804c185a",
+ "status": "Creating",
+ "startTime": "2022-07-27T10:11:40.1082094Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d46ce-f54c-4514-af03-85a4804c185a?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2192,7 +1511,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:18:44 GMT",
+ "Date": "Wed, 27 Jul 2022 10:16:13 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2200,36 +1519,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5f97e808-6dbf-47f7-a274-a6e9b0a6b7fc",
- "x-ms-ratelimit-remaining-subscription-reads": "11968",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151845Z:5f97e808-6dbf-47f7-a274-a6e9b0a6b7fc",
+ "x-ms-correlation-request-id": "32d9f39d-edec-487d-a746-00396aef678a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11983",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101613Z:32d9f39d-edec-487d-a746-00396aef678a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d46ce-f54c-4514-af03-85a4804c185a",
+ "name": "488d46ce-f54c-4514-af03-85a4804c185a",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T10:11:40.1082094Z",
+ "endTime": "2022-07-27T10:15:49.2020067Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2237,7 +1551,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:18:55 GMT",
+ "Date": "Wed, 27 Jul 2022 10:16:14 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T10%3A15%3A49.2198085Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2245,36 +1560,90 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "03806888-7cf7-40d8-9398-2bdd63bea545",
- "x-ms-ratelimit-remaining-subscription-reads": "11967",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151856Z:03806888-7cf7-40d8-9398-2bdd63bea545",
+ "x-ms-correlation-request-id": "3a79cc55-a92c-49df-8be0-4cf84350cd16",
+ "x-ms-ratelimit-remaining-subscription-reads": "11982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101615Z:3a79cc55-a92c-49df-8be0-4cf84350cd16",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T10%3A15%3A49.2198085Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T10:11:38.5584296Z"
+ },
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "fileSystemId": "e74db28d-4b1b-6275-0883-1f0603a8f238",
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-3-219c2c63",
+ "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_e5d44cb3",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "e74db28d-4b1b-6275-0883-1f0603a8f238",
+ "fileSystemId": "e74db28d-4b1b-6275-0883-1f0603a8f238",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2282,7 +1651,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:19:06 GMT",
+ "Date": "Wed, 27 Jul 2022 10:16:25 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T10%3A15%3A49.2198085Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2290,36 +1660,90 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "10b6eed1-0ecc-4a4b-8a56-79a1a8752fbb",
- "x-ms-ratelimit-remaining-subscription-reads": "11966",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151907Z:10b6eed1-0ecc-4a4b-8a56-79a1a8752fbb",
+ "x-ms-correlation-request-id": "b82fb5ec-6f2e-41bc-b1a2-b0cbc4504436",
+ "x-ms-ratelimit-remaining-subscription-reads": "11981",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101625Z:b82fb5ec-6f2e-41bc-b1a2-b0cbc4504436",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T10%3A15%3A49.2198085Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T10:11:38.5584296Z"
+ },
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "fileSystemId": "e74db28d-4b1b-6275-0883-1f0603a8f238",
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-3-219c2c63",
+ "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_e5d44cb3",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "e74db28d-4b1b-6275-0883-1f0603a8f238",
+ "fileSystemId": "e74db28d-4b1b-6275-0883-1f0603a8f238",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/vaults?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2327,7 +1751,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:19:17 GMT",
+ "Date": "Wed, 27 Jul 2022 10:16:25 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2335,81 +1759,149 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "cf39ad18-0e70-4d96-af21-b5a85055d240",
- "x-ms-ratelimit-remaining-subscription-reads": "11965",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151917Z:cf39ad18-0e70-4d96-af21-b5a85055d240",
+ "x-ms-correlation-request-id": "fd600cef-8cff-4dda-8083-a55d1219af0d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11980",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101625Z:fd600cef-8cff-4dda-8083-a55d1219af0d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
+ "value": [
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/vaults/cbsvault",
+ "name": "sdk-py-tests-acc-1-219c2c63/cbsvault",
+ "type": "Microsoft.NetApp/netAppAccounts/vaults",
+ "properties": {
+ "enabled": true,
+ "vaultId": "6130fdad-3bac-11eb-aba9-0e6a0f269857"
+ }
+ }
+ ]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63?api-version=2022-03-01",
+ "RequestMethod": "PATCH",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "408",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/vaults/cbsvault",
+ "backupEnabled": true
+ }
+ },
+ "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/ece4c479-8845-4f43-996b-aca2cba10374?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "2130",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:19:27 GMT",
+ "Date": "Wed, 27 Jul 2022 10:16:26 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T10%3A16%3A26.475088Z\u0027\u0022",
"Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ece4c479-8845-4f43-996b-aca2cba10374?api-version=2022-03-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": "51ced893-3390-4bed-a097-ccfe2be49190",
- "x-ms-ratelimit-remaining-subscription-reads": "11964",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151928Z:51ced893-3390-4bed-a097-ccfe2be49190",
+ "x-ms-correlation-request-id": "35d315ef-c4c1-4f87-80f6-1538f9b9bf40",
+ "x-ms-ratelimit-remaining-subscription-writes": "1194",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101626Z:35d315ef-c4c1-4f87-80f6-1538f9b9bf40",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T10%3A16%3A26.475088Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T10:11:38.5584296Z"
+ },
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "provisioningState": "Patching",
+ "fileSystemId": "e74db28d-4b1b-6275-0883-1f0603a8f238",
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-3-219c2c63",
+ "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_e5d44cb3",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "e74db28d-4b1b-6275-0883-1f0603a8f238",
+ "fileSystemId": "e74db28d-4b1b-6275-0883-1f0603a8f238",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ece4c479-8845-4f43-996b-aca2cba10374?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2417,7 +1909,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:19:39 GMT",
+ "Date": "Wed, 27 Jul 2022 10:16:56 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2425,36 +1917,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fd40bc0e-d9cc-4f37-9e2a-0a493e9c297c",
- "x-ms-ratelimit-remaining-subscription-reads": "11963",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151939Z:fd40bc0e-d9cc-4f37-9e2a-0a493e9c297c",
+ "x-ms-correlation-request-id": "96754ded-54fd-499e-92ab-83cdb1c09a8f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11979",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101656Z:96754ded-54fd-499e-92ab-83cdb1c09a8f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ece4c479-8845-4f43-996b-aca2cba10374",
+ "name": "ece4c479-8845-4f43-996b-aca2cba10374",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T10:16:26.4947777Z",
+ "endTime": "2022-07-27T10:16:30.6013547Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ece4c479-8845-4f43-996b-aca2cba10374?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2462,7 +1949,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:19:50 GMT",
+ "Date": "Wed, 27 Jul 2022 10:16:56 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2470,81 +1957,159 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3980bd8a-6294-4fed-95e8-aac90ad49994",
- "x-ms-ratelimit-remaining-subscription-reads": "11962",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T151950Z:3980bd8a-6294-4fed-95e8-aac90ad49994",
+ "x-ms-correlation-request-id": "e1d4a9dc-6d0a-4218-af8a-ac24465b47a9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11978",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101657Z:e1d4a9dc-6d0a-4218-af8a-ac24465b47a9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T10%3A16%3A30.6076802Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T10:16:26.1687627Z"
+ },
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "dataProtection": {
+ "backup": {
+ "backupEnabled": true,
+ "policyEnforced": false,
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/vaults/cbsvault"
+ }
+ },
+ "fileSystemId": "e74db28d-4b1b-6275-0883-1f0603a8f238",
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-3-219c2c63",
+ "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_e5d44cb3",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63",
+ "poolId": "eb848bef-3c8d-5920-6c0d-451ea08c7708",
+ "mountTargets": [
+ {
+ "provisioningState": "",
+ "mountTargetId": "e74db28d-4b1b-6275-0883-1f0603a8f238",
+ "fileSystemId": "e74db28d-4b1b-6275-0883-1f0603a8f238",
+ "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,
+ "provisioningState": "Succeeded"
+ },
+ "systemData": {
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T10:16:26.3404792Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "69",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/a6f68b46-bc81-46ac-8073-902e58d1a75b?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "556",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:20:01 GMT",
+ "Date": "Wed, 27 Jul 2022 10:16:57 GMT",
"Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a6f68b46-bc81-46ac-8073-902e58d1a75b?api-version=2022-03-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": "b8ea5e81-d39e-41aa-82fa-4cb52e05e74d",
- "x-ms-ratelimit-remaining-subscription-reads": "11961",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152001Z:b8ea5e81-d39e-41aa-82fa-4cb52e05e74d",
+ "x-ms-correlation-request-id": "b434e9a7-e7b4-4d1c-a092-05e193fcaa80",
+ "x-ms-ratelimit-remaining-subscription-writes": "1193",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101657Z:b434e9a7-e7b4-4d1c-a092-05e193fcaa80",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
"useExistingSnapshot": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a6f68b46-bc81-46ac-8073-902e58d1a75b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2552,7 +2117,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:20:12 GMT",
+ "Date": "Wed, 27 Jul 2022 10:17:27 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2560,81 +2125,75 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4c9770ec-3135-44f5-a2a0-3935ee824724",
- "x-ms-ratelimit-remaining-subscription-reads": "11960",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152012Z:4c9770ec-3135-44f5-a2a0-3935ee824724",
+ "x-ms-correlation-request-id": "b1194c61-f584-403c-804e-331852ad1483",
+ "x-ms-ratelimit-remaining-subscription-reads": "11977",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101728Z:b1194c61-f584-403c-804e-331852ad1483",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a6f68b46-bc81-46ac-8073-902e58d1a75b",
+ "name": "a6f68b46-bc81-46ac-8073-902e58d1a75b",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T10:16:57.7377853Z",
+ "endTime": "2022-07-27T10:16:58.019064Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a6f68b46-bc81-46ac-8073-902e58d1a75b?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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": "776",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:20:23 GMT",
+ "Date": "Wed, 27 Jul 2022 10:17: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": "ce9fed4b-7b5e-4ec4-bcc6-4795222b2d3e",
- "x-ms-ratelimit-remaining-subscription-reads": "11959",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152023Z:ce9fed4b-7b5e-4ec4-bcc6-4795222b2d3e",
+ "x-ms-correlation-request-id": "ad99a17c-a0e9-4317-a7fd-2848c4b69a5e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11976",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101728Z:ad99a17c-a0e9-4317-a7fd-2848c4b69a5e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "etag": "7/27/2022 10:16:58 AM",
+ "location": "",
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
+ "fileSystemId": "e74db28d-4b1b-6275-0883-1f0603a8f238",
+ "creationDate": "0001-01-01T00:00:00Z",
+ "backupId": "79a049c1-5963-2c38-42ba-6f9b198b9922",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "failureReason": "None",
+ "useExistingSnapshot": false,
+ "provisioningState": "Creating"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2642,7 +2201,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:20:34 GMT",
+ "Date": "Wed, 27 Jul 2022 10:17:38 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2650,36 +2209,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a29b0b74-b353-4794-b4d5-0159786b8585",
- "x-ms-ratelimit-remaining-subscription-reads": "11958",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152034Z:a29b0b74-b353-4794-b4d5-0159786b8585",
+ "x-ms-correlation-request-id": "1c5e5300-fba1-4963-a9e9-5a87a7ed0e4c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11975",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101739Z:1c5e5300-fba1-4963-a9e9-5a87a7ed0e4c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
+ "creationDate": "2022-07-27T10:16:58Z",
+ "backupId": "79a049c1-5963-2c38-42ba-6f9b198b9922",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2687,7 +2246,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:20:45 GMT",
+ "Date": "Wed, 27 Jul 2022 10:17:49 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2695,36 +2254,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0b3bf530-3ed9-42d3-a12c-d6d2fb029601",
- "x-ms-ratelimit-remaining-subscription-reads": "11957",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152045Z:0b3bf530-3ed9-42d3-a12c-d6d2fb029601",
+ "x-ms-correlation-request-id": "105fc981-62aa-4620-92c4-1f46f61d2774",
+ "x-ms-ratelimit-remaining-subscription-reads": "11974",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101749Z:105fc981-62aa-4620-92c4-1f46f61d2774",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
+ "creationDate": "2022-07-27T10:16:58Z",
+ "backupId": "79a049c1-5963-2c38-42ba-6f9b198b9922",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2732,7 +2291,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:20:56 GMT",
+ "Date": "Wed, 27 Jul 2022 10:17:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2740,36 +2299,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "85de58cf-62e2-4f13-81e2-129d08d68dce",
- "x-ms-ratelimit-remaining-subscription-reads": "11956",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152056Z:85de58cf-62e2-4f13-81e2-129d08d68dce",
+ "x-ms-correlation-request-id": "05c46545-a38d-4a9a-acd2-5636142be238",
+ "x-ms-ratelimit-remaining-subscription-reads": "11973",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101800Z:05c46545-a38d-4a9a-acd2-5636142be238",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
+ "creationDate": "2022-07-27T10:16:58Z",
+ "backupId": "79a049c1-5963-2c38-42ba-6f9b198b9922",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2777,7 +2336,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:21:07 GMT",
+ "Date": "Wed, 27 Jul 2022 10:18:09 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2785,36 +2344,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5e26a164-ae3e-49ce-977c-f264bd06328c",
- "x-ms-ratelimit-remaining-subscription-reads": "11955",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152107Z:5e26a164-ae3e-49ce-977c-f264bd06328c",
+ "x-ms-correlation-request-id": "20b99f77-2a43-4aff-8ba0-910775899e20",
+ "x-ms-ratelimit-remaining-subscription-reads": "11972",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101810Z:20b99f77-2a43-4aff-8ba0-910775899e20",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
+ "creationDate": "2022-07-27T10:16:58Z",
+ "backupId": "79a049c1-5963-2c38-42ba-6f9b198b9922",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2822,7 +2381,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:21:17 GMT",
+ "Date": "Wed, 27 Jul 2022 10:18:20 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2830,36 +2389,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a18dedfb-c9e8-46c0-94c7-e7a6f3ad526a",
- "x-ms-ratelimit-remaining-subscription-reads": "11954",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152118Z:a18dedfb-c9e8-46c0-94c7-e7a6f3ad526a",
+ "x-ms-correlation-request-id": "cba18bb2-d98a-4c46-96a3-985ef581d27e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11971",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101821Z:cba18bb2-d98a-4c46-96a3-985ef581d27e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
+ "creationDate": "2022-07-27T10:16:58Z",
+ "backupId": "79a049c1-5963-2c38-42ba-6f9b198b9922",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2867,7 +2426,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:21:28 GMT",
+ "Date": "Wed, 27 Jul 2022 10:18:31 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2875,36 +2434,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "30184b10-d809-470e-8b2d-2681909c4059",
- "x-ms-ratelimit-remaining-subscription-reads": "11953",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152129Z:30184b10-d809-470e-8b2d-2681909c4059",
+ "x-ms-correlation-request-id": "e8cb2c29-aada-4c72-b6b1-f521db79f1a7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11970",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101831Z:e8cb2c29-aada-4c72-b6b1-f521db79f1a7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
+ "creationDate": "2022-07-27T10:16:58Z",
+ "backupId": "79a049c1-5963-2c38-42ba-6f9b198b9922",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2912,7 +2471,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:21:39 GMT",
+ "Date": "Wed, 27 Jul 2022 10:18:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2920,36 +2479,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3a6f2ddd-ad75-4d90-bd3c-870304041541",
- "x-ms-ratelimit-remaining-subscription-reads": "11952",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152140Z:3a6f2ddd-ad75-4d90-bd3c-870304041541",
+ "x-ms-correlation-request-id": "7169aa81-1568-4073-9d27-daa69ee71ea0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11969",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101842Z:7169aa81-1568-4073-9d27-daa69ee71ea0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
+ "creationDate": "2022-07-27T10:16:58Z",
+ "backupId": "79a049c1-5963-2c38-42ba-6f9b198b9922",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2957,7 +2516,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:21:50 GMT",
+ "Date": "Wed, 27 Jul 2022 10:18:52 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2965,36 +2524,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "33a5b793-b3d4-4e89-a4f2-15ca148eb9db",
- "x-ms-ratelimit-remaining-subscription-reads": "11951",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152151Z:33a5b793-b3d4-4e89-a4f2-15ca148eb9db",
+ "x-ms-correlation-request-id": "0a4e3543-b4b7-4118-9eee-37224084b3ed",
+ "x-ms-ratelimit-remaining-subscription-reads": "11968",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101852Z:0a4e3543-b4b7-4118-9eee-37224084b3ed",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
+ "creationDate": "2022-07-27T10:16:58Z",
+ "backupId": "79a049c1-5963-2c38-42ba-6f9b198b9922",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3002,7 +2561,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:22:01 GMT",
+ "Date": "Wed, 27 Jul 2022 10:19:02 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3010,36 +2569,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "365f565c-3805-4df6-89bf-9beea8dfa7ff",
- "x-ms-ratelimit-remaining-subscription-reads": "11950",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152202Z:365f565c-3805-4df6-89bf-9beea8dfa7ff",
+ "x-ms-correlation-request-id": "1fd6d58d-abb2-4911-9795-c53b46a95f5a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11967",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101903Z:1fd6d58d-abb2-4911-9795-c53b46a95f5a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
+ "creationDate": "2022-07-27T10:16:58Z",
+ "backupId": "79a049c1-5963-2c38-42ba-6f9b198b9922",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3047,7 +2606,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:22:12 GMT",
+ "Date": "Wed, 27 Jul 2022 10:19:13 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3055,36 +2614,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "63766978-1792-4d6c-8629-c287fbf90629",
- "x-ms-ratelimit-remaining-subscription-reads": "11949",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152212Z:63766978-1792-4d6c-8629-c287fbf90629",
+ "x-ms-correlation-request-id": "1b361f2c-5d74-43d1-8c6a-24bde549e9bf",
+ "x-ms-ratelimit-remaining-subscription-reads": "11966",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101913Z:1b361f2c-5d74-43d1-8c6a-24bde549e9bf",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
+ "creationDate": "2022-07-27T10:16:58Z",
+ "backupId": "79a049c1-5963-2c38-42ba-6f9b198b9922",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3092,7 +2651,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:22:23 GMT",
+ "Date": "Wed, 27 Jul 2022 10:19:24 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3100,36 +2659,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7e2a526f-f0be-4cce-a96f-9f3d034ae44d",
- "x-ms-ratelimit-remaining-subscription-reads": "11948",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152223Z:7e2a526f-f0be-4cce-a96f-9f3d034ae44d",
+ "x-ms-correlation-request-id": "9b7f6c3c-2c78-4bf6-98c0-f7f09da52ed8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11965",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101924Z:9b7f6c3c-2c78-4bf6-98c0-f7f09da52ed8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
+ "creationDate": "2022-07-27T10:16:58Z",
+ "backupId": "79a049c1-5963-2c38-42ba-6f9b198b9922",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3137,7 +2696,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:22:34 GMT",
+ "Date": "Wed, 27 Jul 2022 10:19:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3145,36 +2704,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0ea1bc0a-87e6-45d2-bdb9-d25eb2a406a3",
- "x-ms-ratelimit-remaining-subscription-reads": "11947",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152235Z:0ea1bc0a-87e6-45d2-bdb9-d25eb2a406a3",
+ "x-ms-correlation-request-id": "217eb071-49d3-475a-b1c2-8e858ed2f0ac",
+ "x-ms-ratelimit-remaining-subscription-reads": "11964",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101934Z:217eb071-49d3-475a-b1c2-8e858ed2f0ac",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
+ "creationDate": "2022-07-27T10:16:58Z",
+ "backupId": "79a049c1-5963-2c38-42ba-6f9b198b9922",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3182,7 +2741,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:22:45 GMT",
+ "Date": "Wed, 27 Jul 2022 10:19:44 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3190,36 +2749,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2e25f87d-283a-455d-a2e7-c887ac35d40d",
- "x-ms-ratelimit-remaining-subscription-reads": "11946",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152246Z:2e25f87d-283a-455d-a2e7-c887ac35d40d",
+ "x-ms-correlation-request-id": "aa986111-6ffe-41ba-ab36-d353ecfcd51c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11963",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101945Z:aa986111-6ffe-41ba-ab36-d353ecfcd51c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
+ "creationDate": "2022-07-27T10:16:58Z",
+ "backupId": "79a049c1-5963-2c38-42ba-6f9b198b9922",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3227,7 +2786,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:22:56 GMT",
+ "Date": "Wed, 27 Jul 2022 10:19:55 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3235,36 +2794,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "74653e2d-2236-4ff7-8fd4-324602ad5f81",
- "x-ms-ratelimit-remaining-subscription-reads": "11945",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152257Z:74653e2d-2236-4ff7-8fd4-324602ad5f81",
+ "x-ms-correlation-request-id": "a72b93b0-d3d9-4ea4-b138-b2c6f082aacd",
+ "x-ms-ratelimit-remaining-subscription-reads": "11962",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T101956Z:a72b93b0-d3d9-4ea4-b138-b2c6f082aacd",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
+ "creationDate": "2022-07-27T10:16:58Z",
+ "backupId": "79a049c1-5963-2c38-42ba-6f9b198b9922",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3272,7 +2831,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:23:07 GMT",
+ "Date": "Wed, 27 Jul 2022 10:20:05 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3280,36 +2839,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5f7de927-bfbc-4fd3-8e84-dec5fd332808",
- "x-ms-ratelimit-remaining-subscription-reads": "11944",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152307Z:5f7de927-bfbc-4fd3-8e84-dec5fd332808",
+ "x-ms-correlation-request-id": "95cd7852-eae9-47b4-a3f7-e138aa66dca6",
+ "x-ms-ratelimit-remaining-subscription-reads": "11961",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102006Z:95cd7852-eae9-47b4-a3f7-e138aa66dca6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
+ "creationDate": "2022-07-27T10:16:58Z",
+ "backupId": "79a049c1-5963-2c38-42ba-6f9b198b9922",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3317,7 +2876,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:23:18 GMT",
+ "Date": "Wed, 27 Jul 2022 10:20:17 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3325,36 +2884,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0c7344f2-00d3-4bf4-914d-0b7327f2e986",
- "x-ms-ratelimit-remaining-subscription-reads": "11943",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152318Z:0c7344f2-00d3-4bf4-914d-0b7327f2e986",
+ "x-ms-correlation-request-id": "0dc43123-1706-4c79-9325-451c958cbb83",
+ "x-ms-ratelimit-remaining-subscription-reads": "11960",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102017Z:0dc43123-1706-4c79-9325-451c958cbb83",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
+ "creationDate": "2022-07-27T10:16:58Z",
+ "backupId": "79a049c1-5963-2c38-42ba-6f9b198b9922",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3362,7 +2921,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:23:28 GMT",
+ "Date": "Wed, 27 Jul 2022 10:20:27 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3370,36 +2929,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1ff60c00-beb8-47a4-a47d-31e0881de1fd",
- "x-ms-ratelimit-remaining-subscription-reads": "11942",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152329Z:1ff60c00-beb8-47a4-a47d-31e0881de1fd",
+ "x-ms-correlation-request-id": "97576ee9-2634-4e65-b0ac-b1bf19566709",
+ "x-ms-ratelimit-remaining-subscription-reads": "11959",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102027Z:97576ee9-2634-4e65-b0ac-b1bf19566709",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
+ "creationDate": "2022-07-27T10:16:58Z",
+ "backupId": "79a049c1-5963-2c38-42ba-6f9b198b9922",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3407,7 +2966,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:23:39 GMT",
+ "Date": "Wed, 27 Jul 2022 10:20:37 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3415,36 +2974,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2517aa3e-e0d9-4c1c-b78e-22365b44a3ab",
- "x-ms-ratelimit-remaining-subscription-reads": "11941",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152340Z:2517aa3e-e0d9-4c1c-b78e-22365b44a3ab",
+ "x-ms-correlation-request-id": "87338944-788e-4752-a305-15c394920914",
+ "x-ms-ratelimit-remaining-subscription-reads": "11958",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102038Z:87338944-788e-4752-a305-15c394920914",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
+ "creationDate": "2022-07-27T10:16:58Z",
+ "backupId": "79a049c1-5963-2c38-42ba-6f9b198b9922",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3452,7 +3011,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:23:50 GMT",
+ "Date": "Wed, 27 Jul 2022 10:20:48 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3460,36 +3019,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d43b4872-88fc-49db-aa5c-55e7fc768da9",
- "x-ms-ratelimit-remaining-subscription-reads": "11940",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152351Z:d43b4872-88fc-49db-aa5c-55e7fc768da9",
+ "x-ms-correlation-request-id": "39bf60e8-2a10-447a-a5cf-6eeed8c4f1a3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11957",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102048Z:39bf60e8-2a10-447a-a5cf-6eeed8c4f1a3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
- "size": 0,
+ "creationDate": "2022-07-27T10:17:07Z",
+ "backupId": "79a049c1-5963-2c38-42ba-6f9b198b9922",
+ "size": 331776,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/accountBackups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/accountBackups/sdk-py-tests-backup-1-219c2c63?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3497,7 +3056,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:23:51 GMT",
+ "Date": "Wed, 27 Jul 2022 10:20:48 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3505,36 +3064,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "13cde2d8-7d6d-4995-983c-e174bc984f9a",
- "x-ms-ratelimit-remaining-subscription-reads": "11939",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152352Z:13cde2d8-7d6d-4995-983c-e174bc984f9a",
+ "x-ms-correlation-request-id": "c9b18e6a-0506-4a6a-af0c-7d57d2b320e8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11956",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102049Z:c9b18e6a-0506-4a6a-af0c-7d57d2b320e8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/accountBackups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:16:05Z",
- "backupId": "f25013a0-4b10-c336-0e7d-8a2605c11ffc",
- "size": 0,
+ "creationDate": "2022-07-27T10:17:07Z",
+ "backupId": "79a049c1-5963-2c38-42ba-6f9b198b9922",
+ "size": 331776,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/vaults?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3542,7 +3101,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:23:51 GMT",
+ "Date": "Wed, 27 Jul 2022 10:20:49 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3550,32 +3109,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c4c569f6-857b-4d7f-b1a4-47e5f8ac9472",
- "x-ms-ratelimit-remaining-subscription-reads": "11938",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152352Z:c4c569f6-857b-4d7f-b1a4-47e5f8ac9472",
+ "x-ms-correlation-request-id": "864cdf25-3b7e-4633-ae79-ddbfffc688bf",
+ "x-ms-ratelimit-remaining-subscription-reads": "11955",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102049Z:864cdf25-3b7e-4633-ae79-ddbfffc688bf",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "name": "sdk-py-tests-acc-1/cbsvault",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/vaults/cbsvault",
+ "name": "sdk-py-tests-acc-1-219c2c63/cbsvault",
"type": "Microsoft.NetApp/netAppAccounts/vaults",
- "properties": {}
+ "properties": {
+ "enabled": true,
+ "vaultId": "6130fdad-3bac-11eb-aba9-0e6a0f269857"
+ }
}
]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63?api-version=2022-03-01",
"RequestMethod": "PATCH",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "402",
+ "Content-Length": "409",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
"properties": {
@@ -3583,7 +3145,7 @@
"usageThreshold": 107374182400,
"dataProtection": {
"backup": {
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/vaults/cbsvault",
"backupEnabled": false
}
},
@@ -3594,44 +3156,44 @@
},
"StatusCode": 202,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ce4bb3e-99c5-4a8a-bb1f-6ee7f15b575d?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b1e0ec4c-e33f-4b1b-850e-5eb26c68108c?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "2638",
+ "Content-Length": "2544",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:23:52 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A23%3A53.1092906Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 10:20:49 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T10%3A20%3A50.3138934Z\u0027\u0022",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ce4bb3e-99c5-4a8a-bb1f-6ee7f15b575d?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b1e0ec4c-e33f-4b1b-850e-5eb26c68108c?api-version=2022-03-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": "507a0080-e325-47e6-9100-15f063f37331",
- "x-ms-ratelimit-remaining-subscription-writes": "1194",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152353Z:507a0080-e325-47e6-9100-15f063f37331",
+ "x-ms-correlation-request-id": "b884e76f-4bb6-4a76-a5ba-e7f5bb83088d",
+ "x-ms-ratelimit-remaining-subscription-writes": "1192",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102050Z:b884e76f-4bb6-4a76-a5ba-e7f5bb83088d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T15%3A23%3A53.1092906Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T10%3A20%3A50.3138934Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:15:31.2516864Z"
+ "CreatedOnDate": "2022-07-27T10:16:26.1687627Z"
},
"properties": {
"dataProtection": {
"backup": {
"backupEnabled": true,
"policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/vaults/cbsvault"
}
},
"provisioningState": "Patching",
- "fileSystemId": "68063ef3-5cdb-3e32-e3d3-35d025832caa",
+ "fileSystemId": "e74db28d-4b1b-6275-0883-1f0603a8f238",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-219c2c63",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -3657,10 +3219,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_9abfac5a",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_e5d44cb3",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -3672,9 +3234,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "68063ef3-5cdb-3e32-e3d3-35d025832caa",
- "fileSystemId": "68063ef3-5cdb-3e32-e3d3-35d025832caa",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "e74db28d-4b1b-6275-0883-1f0603a8f238",
+ "fileSystemId": "e74db28d-4b1b-6275-0883-1f0603a8f238",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -3685,27 +3247,23 @@
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true
+ "maximumNumberOfFiles": 100000000
},
"systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:10:45.0304213Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:15:31.5200821Z"
+ "lastModifiedAt": "2022-07-27T10:16:26.3404792Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ce4bb3e-99c5-4a8a-bb1f-6ee7f15b575d?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b1e0ec4c-e33f-4b1b-850e-5eb26c68108c?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3713,7 +3271,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:24:23 GMT",
+ "Date": "Wed, 27 Jul 2022 10:21:19 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3721,31 +3279,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "73a7a675-8f0f-4a15-acce-7aebd1f93f2d",
- "x-ms-ratelimit-remaining-subscription-reads": "11937",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152423Z:73a7a675-8f0f-4a15-acce-7aebd1f93f2d",
+ "x-ms-correlation-request-id": "d956e23d-ff09-403e-9af4-ef26e6f6f658",
+ "x-ms-ratelimit-remaining-subscription-reads": "11954",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102120Z:d956e23d-ff09-403e-9af4-ef26e6f6f658",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ce4bb3e-99c5-4a8a-bb1f-6ee7f15b575d",
- "name": "4ce4bb3e-99c5-4a8a-bb1f-6ee7f15b575d",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b1e0ec4c-e33f-4b1b-850e-5eb26c68108c",
+ "name": "b1e0ec4c-e33f-4b1b-850e-5eb26c68108c",
"status": "Succeeded",
- "startTime": "2022-05-25T15:23:53.1064029Z",
- "endTime": "2022-05-25T15:24:03.5444029Z",
+ "startTime": "2022-07-27T10:20:50.2898844Z",
+ "endTime": "2022-07-27T10:20:55.9935971Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/4ce4bb3e-99c5-4a8a-bb1f-6ee7f15b575d?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b1e0ec4c-e33f-4b1b-850e-5eb26c68108c?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3753,7 +3311,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:24:23 GMT",
+ "Date": "Wed, 27 Jul 2022 10:21:20 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3761,32 +3319,32 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2e6b3ab0-5721-49b9-ad38-f034fe9f77ef",
- "x-ms-ratelimit-remaining-subscription-reads": "11936",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152423Z:2e6b3ab0-5721-49b9-ad38-f034fe9f77ef",
+ "x-ms-correlation-request-id": "7db28b64-e703-4952-8904-1f9d0eaf80eb",
+ "x-ms-ratelimit-remaining-subscription-reads": "11953",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102121Z:7db28b64-e703-4952-8904-1f9d0eaf80eb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T15%3A24%3A03.5482995Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T10%3A20%3A56.0135921Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:15:31.2516864Z"
+ "CreatedOnDate": "2022-07-27T10:20:50.0092439Z"
},
"properties": {
"dataProtection": {
"backup": {
"backupEnabled": false,
"policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/vaults/cbsvault"
}
},
- "fileSystemId": "68063ef3-5cdb-3e32-e3d3-35d025832caa",
+ "fileSystemId": "e74db28d-4b1b-6275-0883-1f0603a8f238",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
+ "creationToken": "sdk-py-tests-vol-3-219c2c63",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -3814,25 +3372,25 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_9abfac5a",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_e5d44cb3",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "0d7cd2ad-0a61-5ffe-38be-da7fd5163705",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63",
+ "poolId": "eb848bef-3c8d-5920-6c0d-451ea08c7708",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "68063ef3-5cdb-3e32-e3d3-35d025832caa",
- "fileSystemId": "68063ef3-5cdb-3e32-e3d3-35d025832caa",
+ "mountTargetId": "e74db28d-4b1b-6275-0883-1f0603a8f238",
+ "fileSystemId": "e74db28d-4b1b-6275-0883-1f0603a8f238",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -3851,28 +3409,23 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"encrypted": true,
- "smbAccessBasedEnumeration": "Disabled",
- "smbNonBrowsable": "Disabled",
"provisioningState": "Succeeded"
},
"systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:10:45.0304213Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:23:53.0010412Z"
+ "lastModifiedAt": "2022-07-27T10:20:50.165262Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
@@ -3880,15 +3433,15 @@
"Cache-Control": "no-cache",
"Content-Length": "77",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:24:26 GMT",
+ "Date": "Wed, 27 Jul 2022 10:21: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": "663056c2-7739-47aa-8549-d7de7e697c93",
- "x-ms-ratelimit-remaining-subscription-reads": "11935",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152426Z:663056c2-7739-47aa-8549-d7de7e697c93",
+ "x-ms-correlation-request-id": "2ffc58a6-c9d3-4336-8d49-bea6be353497",
+ "x-ms-ratelimit-remaining-subscription-reads": "11952",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102123Z:2ffc58a6-c9d3-4336-8d49-bea6be353497",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -3899,83 +3452,43 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/ed6b9b8a-9421-4cc2-91f1-06b57f517a75?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/43051035-b585-40ba-b22c-e3a518e06394?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Wed, 25 May 2022 15:24:26 GMT",
+ "Date": "Wed, 27 Jul 2022 10:21:24 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ed6b9b8a-9421-4cc2-91f1-06b57f517a75?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/43051035-b585-40ba-b22c-e3a518e06394?api-version=2022-03-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": "7675770b-cf57-435b-969a-105b15ea109b",
+ "x-ms-correlation-request-id": "d7fb0b2f-defc-45cf-a15d-61b126c4cce5",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152427Z:7675770b-cf57-435b-969a-105b15ea109b",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102124Z:d7fb0b2f-defc-45cf-a15d-61b126c4cce5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ed6b9b8a-9421-4cc2-91f1-06b57f517a75?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:24: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": "43b422f4-9b5b-42df-9633-d6aae87e5e85",
- "x-ms-ratelimit-remaining-subscription-reads": "11934",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152457Z:43b422f4-9b5b-42df-9633-d6aae87e5e85",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ed6b9b8a-9421-4cc2-91f1-06b57f517a75",
- "name": "ed6b9b8a-9421-4cc2-91f1-06b57f517a75",
- "status": "Deleting",
- "startTime": "2022-05-25T15:24:27.0924632Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ed6b9b8a-9421-4cc2-91f1-06b57f517a75?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/43051035-b585-40ba-b22c-e3a518e06394?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3983,7 +3496,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:25:26 GMT",
+ "Date": "Wed, 27 Jul 2022 10:21:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3991,31 +3504,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c19d4a77-daa3-40f2-984c-20a350f01cc1",
- "x-ms-ratelimit-remaining-subscription-reads": "11933",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152527Z:c19d4a77-daa3-40f2-984c-20a350f01cc1",
+ "x-ms-correlation-request-id": "f4ca0f69-855e-449a-8fa5-4792562b91d0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11951",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102154Z:f4ca0f69-855e-449a-8fa5-4792562b91d0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ed6b9b8a-9421-4cc2-91f1-06b57f517a75",
- "name": "ed6b9b8a-9421-4cc2-91f1-06b57f517a75",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/43051035-b585-40ba-b22c-e3a518e06394",
+ "name": "43051035-b585-40ba-b22c-e3a518e06394",
"status": "Deleting",
- "startTime": "2022-05-25T15:24:27.0924632Z",
+ "startTime": "2022-07-27T10:21:24.1641811Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/ed6b9b8a-9421-4cc2-91f1-06b57f517a75?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/43051035-b585-40ba-b22c-e3a518e06394?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4023,7 +3536,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:25:57 GMT",
+ "Date": "Wed, 27 Jul 2022 10:22:24 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4031,31 +3544,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0f35ac16-b06e-47a4-81d3-f2d83c80eb41",
- "x-ms-ratelimit-remaining-subscription-reads": "11932",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152557Z:0f35ac16-b06e-47a4-81d3-f2d83c80eb41",
+ "x-ms-correlation-request-id": "b824c19b-709a-4a34-9a14-c9ef207b8c32",
+ "x-ms-ratelimit-remaining-subscription-reads": "11950",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102225Z:b824c19b-709a-4a34-9a14-c9ef207b8c32",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ed6b9b8a-9421-4cc2-91f1-06b57f517a75",
- "name": "ed6b9b8a-9421-4cc2-91f1-06b57f517a75",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/43051035-b585-40ba-b22c-e3a518e06394",
+ "name": "43051035-b585-40ba-b22c-e3a518e06394",
"status": "Succeeded",
- "startTime": "2022-05-25T15:24:27.0924632Z",
- "endTime": "2022-05-25T15:25:42.6536855Z",
+ "startTime": "2022-07-27T10:21:24.1641811Z",
+ "endTime": "2022-07-27T10:22:06.2218852Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/ed6b9b8a-9421-4cc2-91f1-06b57f517a75?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/43051035-b585-40ba-b22c-e3a518e06394?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4063,7 +3576,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:25:58 GMT",
+ "Date": "Wed, 27 Jul 2022 10:22:25 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4071,32 +3584,32 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3112be31-a142-49eb-b589-38d1356703ae",
- "x-ms-ratelimit-remaining-subscription-reads": "11931",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152558Z:3112be31-a142-49eb-b589-38d1356703ae",
+ "x-ms-correlation-request-id": "3ac41f2f-688f-4e67-bf3f-6245b72deb9d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11949",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102226Z:3ac41f2f-688f-4e67-bf3f-6245b72deb9d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T15%3A25%3A25.6851492Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T10%3A21%3A24.1632918Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:15:31.2516864Z"
+ "CreatedOnDate": "2022-07-27T10:20:50.0092439Z"
},
"properties": {
"dataProtection": {
"backup": {
"backupEnabled": false,
"policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/vaults/cbsvault"
}
},
- "fileSystemId": "68063ef3-5cdb-3e32-e3d3-35d025832caa",
+ "fileSystemId": "e74db28d-4b1b-6275-0883-1f0603a8f238",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
+ "creationToken": "sdk-py-tests-vol-3-219c2c63",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -4124,25 +3637,25 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "DELETED_baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_9abfac5a",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_e5d44cb3",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "0d7cd2ad-0a61-5ffe-38be-da7fd5163705",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63",
+ "poolId": "eb848bef-3c8d-5920-6c0d-451ea08c7708",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "68063ef3-5cdb-3e32-e3d3-35d025832caa",
- "fileSystemId": "68063ef3-5cdb-3e32-e3d3-35d025832caa",
+ "mountTargetId": "e74db28d-4b1b-6275-0883-1f0603a8f238",
+ "fileSystemId": "e74db28d-4b1b-6275-0883-1f0603a8f238",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -4161,89 +3674,84 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"encrypted": true,
- "smbAccessBasedEnumeration": "Disabled",
- "smbNonBrowsable": "Disabled",
"provisioningState": "Deleting"
},
"systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:10:45.0304213Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:23:53.0010412Z"
+ "lastModifiedAt": "2022-07-27T10:20:50.165262Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "306",
+ "Content-Length": "320",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:29:20 GMT",
+ "Date": "Wed, 27 Jul 2022 10:25:47 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "440b7f5b-519c-46c7-a7d2-bfd966105441",
+ "x-ms-correlation-request-id": "c137750e-b4ff-44df-a9b8-ae82520d6a59",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152921Z:440b7f5b-519c-46c7-a7d2-bfd966105441"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102548Z:c137750e-b4ff-44df-a9b8-ae82520d6a59"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/ab67faf0-51a9-4769-bd61-c4a8065520b7?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c5ba3454-4534-4b15-b87e-5ec61f6bf7e3?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Wed, 25 May 2022 15:29:32 GMT",
+ "Date": "Wed, 27 Jul 2022 10:25:59 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ab67faf0-51a9-4769-bd61-c4a8065520b7?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c5ba3454-4534-4b15-b87e-5ec61f6bf7e3?api-version=2022-03-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": "698d00cb-7fdc-4dd5-8f10-8efd56d99d0f",
+ "x-ms-correlation-request-id": "a8605411-992d-4d39-a194-5d79f21df8aa",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T152933Z:698d00cb-7fdc-4dd5-8f10-8efd56d99d0f",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102600Z:a8605411-992d-4d39-a194-5d79f21df8aa",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ab67faf0-51a9-4769-bd61-c4a8065520b7?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c5ba3454-4534-4b15-b87e-5ec61f6bf7e3?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4251,7 +3759,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:30:02 GMT",
+ "Date": "Wed, 27 Jul 2022 10:26:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4259,31 +3767,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "703b6fba-2dee-4a0d-b98f-6473af8b62a9",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153003Z:703b6fba-2dee-4a0d-b98f-6473af8b62a9",
+ "x-ms-correlation-request-id": "d0591755-dfba-4c3b-b8ee-a7f77ae69353",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102630Z:d0591755-dfba-4c3b-b8ee-a7f77ae69353",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ab67faf0-51a9-4769-bd61-c4a8065520b7",
- "name": "ab67faf0-51a9-4769-bd61-c4a8065520b7",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c5ba3454-4534-4b15-b87e-5ec61f6bf7e3",
+ "name": "c5ba3454-4534-4b15-b87e-5ec61f6bf7e3",
"status": "Succeeded",
- "startTime": "2022-05-25T15:29:33.1240773Z",
- "endTime": "2022-05-25T15:29:36.483458Z",
+ "startTime": "2022-07-27T10:26:00.446754Z",
+ "endTime": "2022-07-27T10:26:00.8372986Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/ab67faf0-51a9-4769-bd61-c4a8065520b7?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c5ba3454-4534-4b15-b87e-5ec61f6bf7e3?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4291,7 +3799,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:30:03 GMT",
+ "Date": "Wed, 27 Jul 2022 10:26:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4299,211 +3807,203 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "38900821-f083-4521-81fc-082bea20ee99",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153003Z:38900821-f083-4521-81fc-082bea20ee99",
+ "x-ms-correlation-request-id": "583edae1-15bc-46cd-b927-36a2c043e1a0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11996",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102631Z:583edae1-15bc-46cd-b927-36a2c043e1a0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T15%3A29%3A33.120194Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T10%3A26%3A00.4253085Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:09:59.8999882Z"
+ "CreatedOnDate": "2022-07-27T10:10:54.8386807Z"
},
"properties": {
- "poolId": "0d7cd2ad-0a61-5ffe-38be-da7fd5163705",
+ "poolId": "eb848bef-3c8d-5920-6c0d-451ea08c7708",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1",
"qosType": "Auto",
"totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:10:01.6134394Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:10:01.6134394Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Wed, 25 May 2022 15:30:13 GMT",
+ "Date": "Wed, 27 Jul 2022 10:26:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5471925e-3939-4501-a141-a3751bde7d64",
+ "x-ms-correlation-request-id": "7da63d38-09a2-4e63-b310-e4d9c5c8f5ad",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153014Z:5471925e-3939-4501-a141-a3751bde7d64"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102641Z:7da63d38-09a2-4e63-b310-e4d9c5c8f5ad"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Wed, 25 May 2022 15:30:23 GMT",
+ "Date": "Wed, 27 Jul 2022 10:26:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "eff4ea43-6da4-4386-8f9e-f3b33131ace2",
+ "x-ms-correlation-request-id": "6acabd9f-86a4-4342-941a-4c8832b3ab78",
"x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153024Z:eff4ea43-6da4-4386-8f9e-f3b33131ace2"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102651Z:6acabd9f-86a4-4342-941a-4c8832b3ab78"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Wed, 25 May 2022 15:30:33 GMT",
+ "Date": "Wed, 27 Jul 2022 10:27:01 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c17efc08-eb53-4f20-a302-1c4ee4fa961b",
+ "x-ms-correlation-request-id": "8c9a1a29-b699-4378-bb88-d484fd048360",
"x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153034Z:c17efc08-eb53-4f20-a302-1c4ee4fa961b"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102702Z:8c9a1a29-b699-4378-bb88-d484fd048360"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Wed, 25 May 2022 15:30:44 GMT",
+ "Date": "Wed, 27 Jul 2022 10:27:11 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "618c0b71-b9da-4cdf-887b-960f7dd25e9b",
+ "x-ms-correlation-request-id": "da01aeee-0a57-474c-a51e-4f2ca5f0e15f",
"x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153045Z:618c0b71-b9da-4cdf-887b-960f7dd25e9b"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102712Z:da01aeee-0a57-474c-a51e-4f2ca5f0e15f"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:30:54 GMT",
+ "Date": "Wed, 27 Jul 2022 10:27:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9dc45917-dc34-4144-b07a-a3b0a8b89136",
+ "x-ms-correlation-request-id": "48c26a96-d53a-468b-ba24-49fa50a40412",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153055Z:9dc45917-dc34-4144-b07a-a3b0a8b89136"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102722Z:48c26a96-d53a-468b-ba24-49fa50a40412"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/cd5b111b-9bbb-450a-a6d0-bf3797e89efa?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/80043eca-3180-4218-8514-9129630e2c83?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Wed, 25 May 2022 15:30:55 GMT",
+ "Date": "Wed, 27 Jul 2022 10:27:23 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cd5b111b-9bbb-450a-a6d0-bf3797e89efa?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/80043eca-3180-4218-8514-9129630e2c83?api-version=2022-03-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": "1b79b94f-da3f-44b9-a519-b140003c8b2c",
+ "x-ms-correlation-request-id": "8f862889-5483-478b-bb4b-9ef8220d13ba",
"x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153056Z:1b79b94f-da3f-44b9-a519-b140003c8b2c",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102724Z:8f862889-5483-478b-bb4b-9ef8220d13ba",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cd5b111b-9bbb-450a-a6d0-bf3797e89efa?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/80043eca-3180-4218-8514-9129630e2c83?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4511,7 +4011,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:31:26 GMT",
+ "Date": "Wed, 27 Jul 2022 10:27:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4519,31 +4019,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c8aed394-70b6-406c-bfd5-5a4e2e4464c2",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153126Z:c8aed394-70b6-406c-bfd5-5a4e2e4464c2",
+ "x-ms-correlation-request-id": "9e817f7d-3ce3-43f5-a3f4-293d5d4f2782",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102754Z:9e817f7d-3ce3-43f5-a3f4-293d5d4f2782",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cd5b111b-9bbb-450a-a6d0-bf3797e89efa",
- "name": "cd5b111b-9bbb-450a-a6d0-bf3797e89efa",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/80043eca-3180-4218-8514-9129630e2c83",
+ "name": "80043eca-3180-4218-8514-9129630e2c83",
"status": "Succeeded",
- "startTime": "2022-05-25T15:30:56.3482957Z",
- "endTime": "2022-05-25T15:30:56.3951746Z",
+ "startTime": "2022-07-27T10:27:24.2698607Z",
+ "endTime": "2022-07-27T10:27:24.3636267Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cd5b111b-9bbb-450a-a6d0-bf3797e89efa?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/80043eca-3180-4218-8514-9129630e2c83?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4551,7 +4051,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:31:26 GMT",
+ "Date": "Wed, 27 Jul 2022 10:27:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4559,19 +4059,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ee562167-298b-4e4d-84e4-fd636dfc1142",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153126Z:ee562167-298b-4e4d-84e4-fd636dfc1142",
+ "x-ms-correlation-request-id": "7f497343-8b18-4968-9f8b-3d00b56cb4c9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102755Z:7f497343-8b18-4968-9f8b-3d00b56cb4c9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T15%3A30%3A56.3484703Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T10%3A27%3A24.2805646Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:09:23.7548122Z"
+ "CreatedOnDate": "2022-07-27T10:10:18.7907469Z"
},
"properties": {
"encryption": {
@@ -4582,41 +4082,41 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-25T15:09:26.7615882Z",
+ "createdAt": "2022-07-27T10:10:20.6906997Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:09:26.7615882Z"
+ "lastModifiedAt": "2022-07-27T10:10:20.6906997Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:31:28 GMT",
+ "Date": "Wed, 27 Jul 2022 10:27:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "db4a91ff-80bd-443b-8c6d-2aa9a9e56974",
+ "x-ms-correlation-request-id": "7b5863cf-33cd-4bce-b070-96d465d28e79",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T153129Z:db4a91ff-80bd-443b-8c6d-2aa9a9e56974"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T102755Z:7b5863cf-33cd-4bce-b070-96d465d28e79"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
}
}
}
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 4c68461d30dd..c92478c14a55 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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": "Wed, 25 May 2022 15:41:16 GMT",
+ "Date": "Wed, 27 Jul 2022 00:36: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.12794.5 - NEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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": "Wed, 25 May 2022 15:41:16 GMT",
+ "Date": "Wed, 27 Jul 2022 00:36: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.12794.5 - NEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - WEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "8e68b8b4-353d-4e1a-86f8-b0e3ed3fb570",
+ "client-request-id": "267daa7c-5196-4941-8e13-7a21522d6838",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "8e68b8b4-353d-4e1a-86f8-b0e3ed3fb570",
+ "client-request-id": "267daa7c-5196-4941-8e13-7a21522d6838",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:41:16 GMT",
+ "Date": "Wed, 27 Jul 2022 00:36:48 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12794.5 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - NEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,67 +213,79 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "93",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2",
+ "properties": {
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ }
+ }
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7adcecf9-7eb7-4156-aad1-cd2d0abc581e?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/175efb65-63dc-4a9b-9c3d-6ed4c2e4f8ca?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Length": "699",
+ "Content-Length": "746",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:41:24 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A41%3A24.2848612Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 00:36:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Retry-After": "3",
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7085988d-32c1-4fae-b8f3-bf2f158b8267",
+ "x-ms-arm-service-request-id": "74774e85-c471-483a-af38-89a703f1e56b",
+ "x-ms-correlation-request-id": "e7380284-30d3-4b4d-8d54-a234aefcb445",
"x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154125Z:7085988d-32c1-4fae-b8f3-bf2f158b8267",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T003659Z:e7380284-30d3-4b4d-8d54-a234aefcb445"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
- "type": "Microsoft.NetApp/netAppAccounts",
- "etag": "W/\u0022datetime\u00272022-05-25T15%3A41%3A24.2848612Z\u0027\u0022",
- "location": "southcentralusstage",
+ "name": "sdk-python-tests-vnet-westus2-51142cdf",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf",
+ "etag": "W/\u0022a0b32eac-9a82-4ee0-85cf-6d7f9577162a\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:41:20.2068696Z"
+ "CreatedOnDate": "2022-07-27T00:36:52.0714679Z"
},
"properties": {
- "provisioningState": "Creating"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:41:23.5236398Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:41:23.5236398Z"
+ "provisioningState": "Updating",
+ "resourceGuid": "8c52ef37-d29a-4b2d-abf6-7ed24e3da30d",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7adcecf9-7eb7-4156-aad1-cd2d0abc581e?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/175efb65-63dc-4a9b-9c3d-6ed4c2e4f8ca?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,39 +293,34 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:41:54 GMT",
+ "Date": "Wed, 27 Jul 2022 00:37:02 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "1d3247e6-f457-4a7c-ba1e-7a5274c05980",
+ "x-ms-arm-service-request-id": "5deef7b3-867a-481c-bb9b-5a4d844c48d4",
+ "x-ms-correlation-request-id": "45a8ca39-f18b-47b0-af3f-399061b08b89",
"x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154155Z:1d3247e6-f457-4a7c-ba1e-7a5274c05980",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T003702Z:45a8ca39-f18b-47b0-af3f-399061b08b89"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7adcecf9-7eb7-4156-aad1-cd2d0abc581e",
- "name": "7adcecf9-7eb7-4156-aad1-cd2d0abc581e",
- "status": "Succeeded",
- "startTime": "2022-05-25T15:41:24.2772512Z",
- "endTime": "2022-05-25T15:41:24.3085072Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
- }
+ "status": "Succeeded"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,137 +328,129 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:41:55 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A41%3A24.3110915Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 00:37:02 GMT",
+ "ETag": "W/\u002298f1df45-1b1d-4b97-8730-fb0a04d224cd\u0022",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "8d110457-15b5-43a6-b40f-2166fdad6c25",
+ "x-ms-arm-service-request-id": "dbb5f9b9-ea94-47a9-9143-e56fdb855e61",
+ "x-ms-correlation-request-id": "ef685434-b958-49b4-83d0-2bd354740fc8",
"x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154156Z:8d110457-15b5-43a6-b40f-2166fdad6c25",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T003703Z:ef685434-b958-49b4-83d0-2bd354740fc8"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
- "type": "Microsoft.NetApp/netAppAccounts",
- "etag": "W/\u0022datetime\u00272022-05-25T15%3A41%3A24.3110915Z\u0027\u0022",
- "location": "southcentralusstage",
+ "name": "sdk-python-tests-vnet-westus2-51142cdf",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf",
+ "etag": "W/\u002298f1df45-1b1d-4b97-8730-fb0a04d224cd\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:41:20.2068696Z"
+ "CreatedOnDate": "2022-07-27T00:36:52.0714679Z"
},
"properties": {
- "activeDirectories": [
- {
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
- "password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
- "status": "Created",
- "smbServerName": "testsmb",
- "organizationalUnit": "CN=Computers",
- "aesEncryption": false,
- "ldapSigning": false,
- "ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
- "encryptDCConnections": false,
- "ldapSearchScope": {}
- }
- ],
- "encryption": {
- "keySource": "Microsoft.NetApp"
+ "provisioningState": "Succeeded",
+ "resourceGuid": "8c52ef37-d29a-4b2d-abf6-7ed24e3da30d",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
},
- "provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:41:23.5236398Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:41:23.5236398Z"
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "150",
+ "Content-Length": "151",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
"properties": {
- "size": 4398046511104,
- "serviceLevel": "Premium",
- "coolAccess": false,
- "encryptionType": "Single"
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "properties": {
+ "serviceName": "Microsoft.Netapp/volumes"
+ }
+ }
+ ]
}
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/768ada55-c0a1-4d1e-a627-dc9afb867a5b?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4f6a50f7-09d9-4edf-8266-11a9fc4474dc?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Length": "917",
+ "Content-Length": "1318",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:41:59 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A41%3A58.6031718Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 00:37:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Retry-After": "3",
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8fb97892-089a-4c5f-8217-4ce6fdf16ac7",
+ "x-ms-arm-service-request-id": "ef2a9d10-ef50-433a-b186-64d926cb658d",
+ "x-ms-correlation-request-id": "e9b96234-8626-4475-be2c-46e9a84dd2d5",
"x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154159Z:8fb97892-089a-4c5f-8217-4ce6fdf16ac7",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T003703Z:e9b96234-8626-4475-be2c-46e9a84dd2d5"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools",
- "etag": "W/\u0022datetime\u00272022-05-25T15%3A41%3A58.6031718Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-25T15:41:56.5145443Z"
- },
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default",
+ "etag": "W/\u0022902109f6-d50b-4536-baee-2979ce856806\u0022",
"properties": {
- "serviceLevel": "Premium",
- "size": 4398046511104,
- "totalThroughputMibps": 0.0,
- "utilizedThroughputMibps": 0.0,
- "encryptionType": "Single",
- "coolAccess": false,
- "provisioningState": "Creating"
+ "provisioningState": "Updating",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u0022902109f6-d50b-4536-baee-2979ce856806\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
},
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:41:58.2583659Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:41:58.2583659Z"
- }
+ "type": "Microsoft.Network/virtualNetworks/subnets"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/768ada55-c0a1-4d1e-a627-dc9afb867a5b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4f6a50f7-09d9-4edf-8266-11a9fc4474dc?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -458,39 +458,34 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:42:29 GMT",
+ "Date": "Wed, 27 Jul 2022 00:37:06 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "7edca310-f914-4e12-bdcc-e201e8d34118",
+ "x-ms-arm-service-request-id": "d72c3f65-fdea-4a9e-a2b1-4da476cb6dd4",
+ "x-ms-correlation-request-id": "d941180b-bb57-4728-b1b8-8b2b31b842f9",
"x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154230Z:7edca310-f914-4e12-bdcc-e201e8d34118",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T003707Z:d941180b-bb57-4728-b1b8-8b2b31b842f9"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/768ada55-c0a1-4d1e-a627-dc9afb867a5b",
- "name": "768ada55-c0a1-4d1e-a627-dc9afb867a5b",
- "status": "Succeeded",
- "startTime": "2022-05-25T15:41:58.6061493Z",
- "endTime": "2022-05-25T15:41:59.2155619Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
- }
+ "status": "Succeeded"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -498,1828 +493,327 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:42:30 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A41%3A59.2070599Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 00:37:06 GMT",
+ "ETag": "W/\u00225b7cd1be-7a4a-482a-b3c1-fb392228c232\u0022",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "e37d311e-96c1-4d59-b4bb-a6a80f3cced4",
+ "x-ms-arm-service-request-id": "398bc15f-d193-4fa9-90f0-929689b9909c",
+ "x-ms-correlation-request-id": "04dc27df-c96f-4cf7-b9d1-ff03dcd98bf5",
"x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154230Z:e37d311e-96c1-4d59-b4bb-a6a80f3cced4",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools",
- "etag": "W/\u0022datetime\u00272022-05-25T15%3A41%3A59.2070599Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-25T15:41:56.5145443Z"
- },
- "properties": {
- "poolId": "16e630b1-cd82-d9ed-6ddd-33a0440b669e",
- "serviceLevel": "Premium",
- "size": 4398046511104,
- "qosType": "Auto",
- "totalThroughputMibps": 256.0,
- "utilizedThroughputMibps": 0.0,
- "encryptionType": "Single",
- "coolAccess": false,
- "provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:41:58.2583659Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:41:58.2583659Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "PUT",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "800",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
- },
- "RequestBody": {
- "location": "southcentralusstage",
- "properties": {
- "creationToken": "sdk-py-tests-vol-1",
- "serviceLevel": "Premium",
- "usageThreshold": 107374182400,
- "protocolTypes": [
- "NFSv3"
- ],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "coolAccess": false,
- "unixPermissions": "0770",
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled"
- }
- },
- "StatusCode": 201,
- "ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/425161f9-55c9-4b7e-8da0-d1cb45ad5628?api-version=2022-01-01",
- "Cache-Control": "no-cache",
- "Content-Length": "1567",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:42:45 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A42%3A44.4388019Z\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": "bef85257-e4ad-4b6c-abf6-17a1aa8b3033",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154245Z:bef85257-e4ad-4b6c-abf6-17a1aa8b3033",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T003707Z:04dc27df-c96f-4cf7-b9d1-ff03dcd98bf5"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-25T15%3A42%3A44.4388019Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-25T15:42:40.8578217Z"
- },
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default",
+ "etag": "W/\u00225b7cd1be-7a4a-482a-b3c1-fb392228c232\u0022",
"properties": {
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "usageThreshold": 107374182400,
- "protocolTypes": [
- "NFSv3"
+ "provisioningState": "Succeeded",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u00225b7cd1be-7a4a-482a-b3c1-fb392228c232\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Creating"
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
},
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:42:42.0085871Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:42:42.0085871Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/425161f9-55c9-4b7e-8da0-d1cb45ad5628?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:43: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": "d9122a17-687c-4c37-8c5f-d10c89397c98",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154315Z:d9122a17-687c-4c37-8c5f-d10c89397c98",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/425161f9-55c9-4b7e-8da0-d1cb45ad5628",
- "name": "425161f9-55c9-4b7e-8da0-d1cb45ad5628",
- "status": "Creating",
- "startTime": "2022-05-25T15:42:44.4456859Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
+ "type": "Microsoft.Network/virtualNetworks/subnets"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/425161f9-55c9-4b7e-8da0-d1cb45ad5628?api-version=2022-01-01",
+ "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-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "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": "Wed, 25 May 2022 15:43:45 GMT",
- "Expires": "-1",
- "Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Date": "Wed, 27 Jul 2022 00:37:07 GMT",
+ "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
+ "Set-Cookie": "[set-cookie;]",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
- "Transfer-Encoding": "chunked",
- "Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "70bf12ff-ffd0-4291-b6cb-4d0aff9d9111",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154345Z:70bf12ff-ffd0-4291-b6cb-4d0aff9d9111",
- "X-Powered-By": "ASP.NET"
+ "x-ms-ests-server": "2.1.13355.6 - WEULR1 ProdSlices",
+ "X-XSS-Protection": "0"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/425161f9-55c9-4b7e-8da0-d1cb45ad5628",
- "name": "425161f9-55c9-4b7e-8da0-d1cb45ad5628",
- "status": "Creating",
- "startTime": "2022-05-25T15:42:44.4456859Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/425161f9-55c9-4b7e-8da0-d1cb45ad5628?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:44: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": "aa6fec77-cbb4-4972-bd56-47408087a7e3",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154416Z:aa6fec77-cbb4-4972-bd56-47408087a7e3",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/425161f9-55c9-4b7e-8da0-d1cb45ad5628",
- "name": "425161f9-55c9-4b7e-8da0-d1cb45ad5628",
- "status": "Creating",
- "startTime": "2022-05-25T15:42:44.4456859Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/425161f9-55c9-4b7e-8da0-d1cb45ad5628?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:44: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": "da75c691-5a85-40c2-b228-0a2c40e90eb6",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154446Z:da75c691-5a85-40c2-b228-0a2c40e90eb6",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/425161f9-55c9-4b7e-8da0-d1cb45ad5628",
- "name": "425161f9-55c9-4b7e-8da0-d1cb45ad5628",
- "status": "Creating",
- "startTime": "2022-05-25T15:42:44.4456859Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/425161f9-55c9-4b7e-8da0-d1cb45ad5628?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15: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": "70dad4fe-501a-4f49-80ae-84ed985d4bd4",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154516Z:70dad4fe-501a-4f49-80ae-84ed985d4bd4",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/425161f9-55c9-4b7e-8da0-d1cb45ad5628",
- "name": "425161f9-55c9-4b7e-8da0-d1cb45ad5628",
- "status": "Creating",
- "startTime": "2022-05-25T15:42:44.4456859Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/425161f9-55c9-4b7e-8da0-d1cb45ad5628?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15: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": "cb685de1-314f-4abe-8b32-f8a707e9f463",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154546Z:cb685de1-314f-4abe-8b32-f8a707e9f463",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/425161f9-55c9-4b7e-8da0-d1cb45ad5628",
- "name": "425161f9-55c9-4b7e-8da0-d1cb45ad5628",
- "status": "Creating",
- "startTime": "2022-05-25T15:42:44.4456859Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/425161f9-55c9-4b7e-8da0-d1cb45ad5628?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:46: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": "526df760-6c1d-4a3b-be53-0f08dbfce9d3",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154616Z:526df760-6c1d-4a3b-be53-0f08dbfce9d3",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/425161f9-55c9-4b7e-8da0-d1cb45ad5628",
- "name": "425161f9-55c9-4b7e-8da0-d1cb45ad5628",
- "status": "Creating",
- "startTime": "2022-05-25T15:42:44.4456859Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/425161f9-55c9-4b7e-8da0-d1cb45ad5628?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:46: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": "ac4a9267-dfdd-4e37-bdf4-cc2d14b1f705",
- "x-ms-ratelimit-remaining-subscription-reads": "11988",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154647Z:ac4a9267-dfdd-4e37-bdf4-cc2d14b1f705",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/425161f9-55c9-4b7e-8da0-d1cb45ad5628",
- "name": "425161f9-55c9-4b7e-8da0-d1cb45ad5628",
- "status": "Creating",
- "startTime": "2022-05-25T15:42:44.4456859Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/425161f9-55c9-4b7e-8da0-d1cb45ad5628?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:47: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": "8dbb1805-fac6-40e5-936b-25a08afce0af",
- "x-ms-ratelimit-remaining-subscription-reads": "11987",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154717Z:8dbb1805-fac6-40e5-936b-25a08afce0af",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/425161f9-55c9-4b7e-8da0-d1cb45ad5628",
- "name": "425161f9-55c9-4b7e-8da0-d1cb45ad5628",
- "status": "Succeeded",
- "startTime": "2022-05-25T15:42:44.4456859Z",
- "endTime": "2022-05-25T15:46:47.4068528Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:47:17 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A46%3A47.4037037Z\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": "55ba3202-e206-4973-b4bc-0f17a3a63893",
- "x-ms-ratelimit-remaining-subscription-reads": "11986",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154718Z:55ba3202-e206-4973-b4bc-0f17a3a63893",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-25T15%3A46%3A47.4037037Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-25T15:42:40.8578217Z"
- },
- "properties": {
- "fileSystemId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_93ade68ee53011e9a696c27beff6b5ea_16987eb5",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
- "fileSystemId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.25,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true,
- "provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:42:42.0085871Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:42:42.0085871Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:47:27 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A46%3A47.4037037Z\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": "05067e3e-58ed-4ef9-a475-f07dc9163fda",
- "x-ms-ratelimit-remaining-subscription-reads": "11985",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154728Z:05067e3e-58ed-4ef9-a475-f07dc9163fda",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-25T15%3A46%3A47.4037037Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-25T15:42:40.8578217Z"
- },
- "properties": {
- "fileSystemId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_93ade68ee53011e9a696c27beff6b5ea_16987eb5",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
- "fileSystemId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.25,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true,
- "provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:42:42.0085871Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:42:42.0085871Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:47: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": "e3684ee6-bf33-4139-adf6-aef0b005de5f",
- "x-ms-ratelimit-remaining-subscription-reads": "11984",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154729Z:e3684ee6-bf33-4139-adf6-aef0b005de5f",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "value": [
- {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "name": "sdk-py-tests-acc-1/cbsvault",
- "type": "Microsoft.NetApp/netAppAccounts/vaults",
- "properties": {}
- }
- ]
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "PATCH",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "401",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "backupEnabled": true
- }
- },
- "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/southcentralusstage/operationResults/5013604c-319d-4dd2-bbf3-49081ea7978c?api-version=2022-01-01",
- "Cache-Control": "no-cache",
- "Content-Length": "2386",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:47:28 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A47%3A29.6924544Z\u0027\u0022",
- "Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5013604c-319d-4dd2-bbf3-49081ea7978c?api-version=2022-01-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": "d0a2570a-2e79-440e-9922-853a3c083798",
- "x-ms-ratelimit-remaining-subscription-writes": "1196",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154729Z:d0a2570a-2e79-440e-9922-853a3c083798",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-25T15%3A47%3A29.6924544Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-25T15:42:40.8578217Z"
- },
- "properties": {
- "provisioningState": "Patching",
- "fileSystemId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_93ade68ee53011e9a696c27beff6b5ea_16987eb5",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
- "fileSystemId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.25,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:42:42.0085871Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:42:42.0085871Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5013604c-319d-4dd2-bbf3-49081ea7978c?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:47: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": "3076aa1e-c5d4-403d-a8c8-bcb37f7ef1c7",
- "x-ms-ratelimit-remaining-subscription-reads": "11983",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154800Z:3076aa1e-c5d4-403d-a8c8-bcb37f7ef1c7",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5013604c-319d-4dd2-bbf3-49081ea7978c",
- "name": "5013604c-319d-4dd2-bbf3-49081ea7978c",
- "status": "Succeeded",
- "startTime": "2022-05-25T15:47:29.6992992Z",
- "endTime": "2022-05-25T15:47:47.0572844Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5013604c-319d-4dd2-bbf3-49081ea7978c?api-version=2022-01-01\u0026operationResultResponseType=Location",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:48: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": "7b214658-ef4f-4f9c-b09b-c51938f42377",
- "x-ms-ratelimit-remaining-subscription-reads": "11982",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154800Z:7b214658-ef4f-4f9c-b09b-c51938f42377",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-25T15%3A47%3A47.0534983Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-25T15:47:29.3986057Z"
- },
- "properties": {
- "dataProtection": {
- "backup": {
- "backupEnabled": true,
- "policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
- }
- },
- "fileSystemId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
- "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_93ade68ee53011e9a696c27beff6b5ea_16987eb5",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "16e630b1-cd82-d9ed-6ddd-33a0440b669e",
- "mountTargets": [
- {
- "provisioningState": "",
- "mountTargetId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
- "fileSystemId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
- "startIp": "",
- "endIp": "",
- "gateway": "",
- "netmask": "",
- "subnet": "",
- "ipAddress": "10.7.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": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:42:42.0085871Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:47:29.5744179Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "PUT",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "81",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
- },
- "RequestBody": {
- "location": "southcentralusstage",
- "properties": {
- "useExistingSnapshot": false
- }
- },
- "StatusCode": 201,
- "ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ee914f22-8cb4-4062-a1e5-9b06a2058026?api-version=2022-01-01",
- "Cache-Control": "no-cache",
- "Content-Length": "523",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:48:01 GMT",
- "Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ee914f22-8cb4-4062-a1e5-9b06a2058026?api-version=2022-01-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": "fed89f43-02d4-4399-8f17-40d1705508ed",
- "x-ms-ratelimit-remaining-subscription-writes": "1195",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154801Z:fed89f43-02d4-4399-8f17-40d1705508ed",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "provisioningState": "Creating",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ee914f22-8cb4-4062-a1e5-9b06a2058026?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:48: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": "5f4437b5-4cc2-48e5-8c69-d8bdafcd6c6a",
- "x-ms-ratelimit-remaining-subscription-reads": "11981",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154831Z:5f4437b5-4cc2-48e5-8c69-d8bdafcd6c6a",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ee914f22-8cb4-4062-a1e5-9b06a2058026",
- "name": "ee914f22-8cb4-4062-a1e5-9b06a2058026",
- "status": "Succeeded",
- "startTime": "2022-05-25T15:48:01.1593804Z",
- "endTime": "2022-05-25T15:48:02.6758734Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ee914f22-8cb4-4062-a1e5-9b06a2058026?api-version=2022-01-01\u0026operationResultResponseType=Location",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
- },
- "RequestBody": null,
- "StatusCode": 201,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Length": "730",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:48:31 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": "d66464ad-333c-4c50-956f-94e3f2346f32",
- "x-ms-ratelimit-remaining-subscription-reads": "11980",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154831Z:d66464ad-333c-4c50-956f-94e3f2346f32",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "etag": "5/25/2022 3:48:02 PM",
- "location": "",
- "properties": {
- "fileSystemId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
- "creationDate": "0001-01-01T00:00:00Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15: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": "74d7f55a-7d84-435e-9e39-3a6fa2e9c24d",
- "x-ms-ratelimit-remaining-subscription-reads": "11979",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154842Z:74d7f55a-7d84-435e-9e39-3a6fa2e9c24d",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15: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": "68551c7c-7621-4294-b120-67089c823a82",
- "x-ms-ratelimit-remaining-subscription-reads": "11978",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154853Z:68551c7c-7621-4294-b120-67089c823a82",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:49: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": "e4be7a74-bd70-4e89-b848-322a1264a897",
- "x-ms-ratelimit-remaining-subscription-reads": "11977",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154904Z:e4be7a74-bd70-4e89-b848-322a1264a897",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:49: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": "3acb098b-ef29-4e98-a146-7a9d96478ae2",
- "x-ms-ratelimit-remaining-subscription-reads": "11976",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154915Z:3acb098b-ef29-4e98-a146-7a9d96478ae2",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:49: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": "f1277718-94a6-413b-a71d-d1c282829908",
- "x-ms-ratelimit-remaining-subscription-reads": "11975",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154926Z:f1277718-94a6-413b-a71d-d1c282829908",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:49: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": "a7eb6da7-5f1d-40ca-a5ce-a6e57a9e3daa",
- "x-ms-ratelimit-remaining-subscription-reads": "11974",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154937Z:a7eb6da7-5f1d-40ca-a5ce-a6e57a9e3daa",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:49: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": "32b24640-6ff5-4bf6-9f4d-7f78e7e181ba",
- "x-ms-ratelimit-remaining-subscription-reads": "11973",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154948Z:32b24640-6ff5-4bf6-9f4d-7f78e7e181ba",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:49: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": "75c33bd3-7d80-4b54-9cae-d2f29b73df0f",
- "x-ms-ratelimit-remaining-subscription-reads": "11972",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T154959Z:75c33bd3-7d80-4b54-9cae-d2f29b73df0f",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:50: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": "49e484f6-f459-40bf-be4f-a215d811c98e",
- "x-ms-ratelimit-remaining-subscription-reads": "11971",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155010Z:49e484f6-f459-40bf-be4f-a215d811c98e",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:50: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": "aabf9947-fd40-4a9c-993b-a99ba536656f",
- "x-ms-ratelimit-remaining-subscription-reads": "11970",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155020Z:aabf9947-fd40-4a9c-993b-a99ba536656f",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15: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": "77f866cd-fd5f-4367-a283-a001d48a96e3",
- "x-ms-ratelimit-remaining-subscription-reads": "11969",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155032Z:77f866cd-fd5f-4367-a283-a001d48a96e3",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
+ "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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "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",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "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": "Wed, 25 May 2022 15:50:42 GMT",
- "Expires": "-1",
- "Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Date": "Wed, 27 Jul 2022 00:37:07 GMT",
+ "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
+ "Set-Cookie": "[set-cookie;]",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
- "Transfer-Encoding": "chunked",
- "Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "bde4addc-f979-436c-b487-d1fa915ad22d",
- "x-ms-ratelimit-remaining-subscription-reads": "11968",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155042Z:bde4addc-f979-436c-b487-d1fa915ad22d",
- "X-Powered-By": "ASP.NET"
+ "x-ms-ests-server": "2.1.13355.6 - WEULR1 ProdSlices",
+ "X-XSS-Protection": "0"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
+ "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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "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": "e1833ffc-d7ff-4af1-b71b-346442e82f4b",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "281",
+ "Content-Type": "application/x-www-form-urlencoded",
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.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.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
- "RequestBody": null,
+ "RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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-cache",
- "Content-Encoding": "gzip",
+ "Cache-Control": "no-store, no-cache",
+ "client-request-id": "e1833ffc-d7ff-4af1-b71b-346442e82f4b",
+ "Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:50:53 GMT",
+ "Date": "Wed, 27 Jul 2022 00:37:07 GMT",
"Expires": "-1",
+ "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Set-Cookie": "[set-cookie;]",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
- "Transfer-Encoding": "chunked",
- "Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a44df800-e44b-417c-9ae3-e8576599d321",
- "x-ms-ratelimit-remaining-subscription-reads": "11967",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155054Z:a44df800-e44b-417c-9ae3-e8576599d321",
- "X-Powered-By": "ASP.NET"
+ "x-ms-clitelem": "1,0,0,,",
+ "x-ms-ests-server": "2.1.13355.6 - NEULR2 ProdSlices",
+ "X-XSS-Protection": "0"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
+ "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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf?api-version=2022-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "23",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "RequestBody": null,
- "StatusCode": 200,
+ "RequestBody": {
+ "location": "westus2"
+ },
+ "StatusCode": 201,
"ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c799116c-9931-48b1-a8fe-0053582a85c9?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "702",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:51:11 GMT",
+ "Date": "Wed, 27 Jul 2022 00:37:12 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T00%3A37%3A11.5513931Z\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": "2ad8d646-584d-445b-8b18-83d8d7421865",
- "x-ms-ratelimit-remaining-subscription-reads": "11966",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155112Z:2ad8d646-584d-445b-8b18-83d8d7421865",
+ "x-ms-correlation-request-id": "d16f096d-4085-4985-b4cd-d539ef137487",
+ "x-ms-ratelimit-remaining-subscription-writes": "1197",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T003713Z:d16f096d-4085-4985-b4cd-d539ef137487",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T00%3A37%3A11.5513931Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T00:37:08.7434159Z"
+ },
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "provisioningState": "Creating"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-27T00:37:10.5763136Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T00:37:10.5763136Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c799116c-9931-48b1-a8fe-0053582a85c9?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2327,7 +821,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:51:23 GMT",
+ "Date": "Wed, 27 Jul 2022 00:37:43 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2335,36 +829,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "33d1f890-41ee-4a92-a11d-fd55a9ad51c1",
- "x-ms-ratelimit-remaining-subscription-reads": "11965",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155124Z:33d1f890-41ee-4a92-a11d-fd55a9ad51c1",
+ "x-ms-correlation-request-id": "c4e49fe0-c823-42f6-828d-67e20f9b43b5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T003743Z:c4e49fe0-c823-42f6-828d-67e20f9b43b5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c799116c-9931-48b1-a8fe-0053582a85c9",
+ "name": "c799116c-9931-48b1-a8fe-0053582a85c9",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T00:37:11.5584402Z",
+ "endTime": "2022-07-27T00:37:11.6209546Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2372,7 +861,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:51:35 GMT",
+ "Date": "Wed, 27 Jul 2022 00:37:43 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T00%3A37%3A11.6248207Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2380,126 +870,128 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0c0e699b-b2d7-418f-b39b-9a114404d6b7",
- "x-ms-ratelimit-remaining-subscription-reads": "11964",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155135Z:0c0e699b-b2d7-418f-b39b-9a114404d6b7",
+ "x-ms-correlation-request-id": "b699700c-a661-4faa-92de-a01632aad453",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T003743Z:b699700c-a661-4faa-92de-a01632aad453",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T00%3A37%3A11.6248207Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T00:37:08.7434159Z"
+ },
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "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"
+ },
+ "provisioningState": "Succeeded"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-27T00:37:10.5763136Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T00:37:10.5763136Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:51: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": "c2eb2994-a18a-4dc0-b821-715254ffc5f8",
- "x-ms-ratelimit-remaining-subscription-reads": "11963",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155146Z:c2eb2994-a18a-4dc0-b821-715254ffc5f8",
- "X-Powered-By": "ASP.NET"
+ "Content-Length": "138",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "RequestBody": {
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "size": 4398046511104,
+ "serviceLevel": "Premium",
+ "coolAccess": false,
+ "encryptionType": "Single"
}
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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/2ddefcee-13ad-4dee-b18e-e3a912283edd?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "918",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:51:56 GMT",
+ "Date": "Wed, 27 Jul 2022 00:37:45 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T00%3A37%3A45.2722652Z\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": "7c1e8269-7ad6-4732-8398-20ff3c9fcfc8",
- "x-ms-ratelimit-remaining-subscription-reads": "11962",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155157Z:7c1e8269-7ad6-4732-8398-20ff3c9fcfc8",
+ "x-ms-correlation-request-id": "a2bb0878-1a72-4e53-960a-972eca8ee5bd",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T003746Z:a2bb0878-1a72-4e53-960a-972eca8ee5bd",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T00%3A37%3A45.2722652Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T00:37:44.0086657Z"
+ },
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "serviceLevel": "Premium",
+ "size": 4398046511104,
+ "totalThroughputMibps": 0.0,
+ "utilizedThroughputMibps": 0.0,
+ "encryptionType": "Single",
+ "coolAccess": false,
+ "provisioningState": "Creating"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-27T00:37:45.0789026Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T00:37:45.0789026Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2ddefcee-13ad-4dee-b18e-e3a912283edd?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2507,7 +999,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:52:07 GMT",
+ "Date": "Wed, 27 Jul 2022 00:38:16 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2515,36 +1007,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7b4db7d2-c9cb-4c28-8941-a4df7cd4b0d1",
- "x-ms-ratelimit-remaining-subscription-reads": "11961",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155207Z:7b4db7d2-c9cb-4c28-8941-a4df7cd4b0d1",
+ "x-ms-correlation-request-id": "74037d3f-c2d5-4020-9fab-f44db0000fb0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T003816Z:74037d3f-c2d5-4020-9fab-f44db0000fb0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2ddefcee-13ad-4dee-b18e-e3a912283edd",
+ "name": "2ddefcee-13ad-4dee-b18e-e3a912283edd",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T00:37:45.2721806Z",
+ "endTime": "2022-07-27T00:37:45.5690788Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2552,7 +1039,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:52:18 GMT",
+ "Date": "Wed, 27 Jul 2022 00:38:16 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T00%3A37%3A45.5666937Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2560,81 +1048,140 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3f5de56d-ac0b-4662-b4d1-07a82b7c6daa",
- "x-ms-ratelimit-remaining-subscription-reads": "11960",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155218Z:3f5de56d-ac0b-4662-b4d1-07a82b7c6daa",
+ "x-ms-correlation-request-id": "732a1b63-2287-46e8-a84d-08cb8bed5bc6",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T003816Z:732a1b63-2287-46e8-a84d-08cb8bed5bc6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T00%3A37%3A45.5666937Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T00:37:44.0086657Z"
+ },
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "poolId": "7784544a-7292-c5a0-a13c-fb3c93d6102f",
+ "serviceLevel": "Premium",
+ "size": 4398046511104,
+ "qosType": "Auto",
+ "totalThroughputMibps": 256.0,
+ "utilizedThroughputMibps": 0.0,
+ "encryptionType": "Single",
+ "coolAccess": false,
+ "provisioningState": "Succeeded"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "779",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "RequestBody": null,
- "StatusCode": 200,
+ "RequestBody": {
+ "location": "westus2",
+ "properties": {
+ "creationToken": "sdk-py-tests-vol-3-51142cdf",
+ "serviceLevel": "Premium",
+ "usageThreshold": 107374182400,
+ "protocolTypes": [
+ "NFSv3"
+ ],
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default",
+ "networkFeatures": "Basic",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "coolAccess": false,
+ "unixPermissions": "0770",
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0
+ }
+ },
+ "StatusCode": 201,
"ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7dc34a4d-532e-4511-b320-1918d6321e91?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "1575",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:52:29 GMT",
+ "Date": "Wed, 27 Jul 2022 00:38:29 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T00%3A38%3A28.7935751Z\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": "12c9705a-1616-478c-9238-72faea13d193",
- "x-ms-ratelimit-remaining-subscription-reads": "11959",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155229Z:12c9705a-1616-478c-9238-72faea13d193",
+ "x-ms-correlation-request-id": "f6ce231b-974d-46b7-bce6-7dc626c8ec62",
+ "x-ms-ratelimit-remaining-subscription-writes": "1195",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T003829Z:f6ce231b-974d-46b7-bce6-7dc626c8ec62",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T00%3A38%3A28.7935751Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T00:38:27.2797198Z"
+ },
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-3-51142cdf",
+ "usageThreshold": 107374182400,
+ "protocolTypes": [
+ "NFSv3"
+ ],
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default",
+ "networkFeatures": "Basic",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Creating"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-27T00:38:28.480323Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T00:38:28.480323Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7dc34a4d-532e-4511-b320-1918d6321e91?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2642,7 +1189,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:52:40 GMT",
+ "Date": "Wed, 27 Jul 2022 00:38:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2650,36 +1197,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ec1921f9-1634-4d5a-9735-25f1d4537fc8",
- "x-ms-ratelimit-remaining-subscription-reads": "11958",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155240Z:ec1921f9-1634-4d5a-9735-25f1d4537fc8",
+ "x-ms-correlation-request-id": "efa7cfa7-5215-4036-b5f3-ae68c55755da",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T003900Z:efa7cfa7-5215-4036-b5f3-ae68c55755da",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7dc34a4d-532e-4511-b320-1918d6321e91",
+ "name": "7dc34a4d-532e-4511-b320-1918d6321e91",
+ "status": "Creating",
+ "startTime": "2022-07-27T00:38:28.7995048Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7dc34a4d-532e-4511-b320-1918d6321e91?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2687,7 +1229,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:52:51 GMT",
+ "Date": "Wed, 27 Jul 2022 00:39:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2695,36 +1237,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "97b59881-c597-4006-b1f2-5ce52186a808",
- "x-ms-ratelimit-remaining-subscription-reads": "11957",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155251Z:97b59881-c597-4006-b1f2-5ce52186a808",
+ "x-ms-correlation-request-id": "50d41dd4-ed4c-48be-b8ea-1fe0e5838469",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T003930Z:50d41dd4-ed4c-48be-b8ea-1fe0e5838469",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7dc34a4d-532e-4511-b320-1918d6321e91",
+ "name": "7dc34a4d-532e-4511-b320-1918d6321e91",
+ "status": "Creating",
+ "startTime": "2022-07-27T00:38:28.7995048Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7dc34a4d-532e-4511-b320-1918d6321e91?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2732,7 +1269,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:53:02 GMT",
+ "Date": "Wed, 27 Jul 2022 00:40:00 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2740,36 +1277,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "43e382b2-ef17-4eca-a4b3-beb9f3f1f018",
- "x-ms-ratelimit-remaining-subscription-reads": "11956",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155302Z:43e382b2-ef17-4eca-a4b3-beb9f3f1f018",
+ "x-ms-correlation-request-id": "12c385cb-7e97-4657-823d-f423435dccd8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004000Z:12c385cb-7e97-4657-823d-f423435dccd8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7dc34a4d-532e-4511-b320-1918d6321e91",
+ "name": "7dc34a4d-532e-4511-b320-1918d6321e91",
+ "status": "Creating",
+ "startTime": "2022-07-27T00:38:28.7995048Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7dc34a4d-532e-4511-b320-1918d6321e91?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2777,7 +1309,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:53:12 GMT",
+ "Date": "Wed, 27 Jul 2022 00:40:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2785,36 +1317,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "51de03f2-8044-44f9-9668-c42f8c5bb43c",
- "x-ms-ratelimit-remaining-subscription-reads": "11955",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155313Z:51de03f2-8044-44f9-9668-c42f8c5bb43c",
+ "x-ms-correlation-request-id": "7d1b8e47-061e-4f72-8a34-fb037ccad67a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004031Z:7d1b8e47-061e-4f72-8a34-fb037ccad67a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7dc34a4d-532e-4511-b320-1918d6321e91",
+ "name": "7dc34a4d-532e-4511-b320-1918d6321e91",
+ "status": "Creating",
+ "startTime": "2022-07-27T00:38:28.7995048Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7dc34a4d-532e-4511-b320-1918d6321e91?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2822,7 +1349,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:53:23 GMT",
+ "Date": "Wed, 27 Jul 2022 00:41:01 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2830,36 +1357,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2d869d4a-b034-4d06-a179-d886936d8696",
- "x-ms-ratelimit-remaining-subscription-reads": "11954",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155324Z:2d869d4a-b034-4d06-a179-d886936d8696",
+ "x-ms-correlation-request-id": "bec83f7f-14ec-4ac1-9a56-dd955e4c963c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004101Z:bec83f7f-14ec-4ac1-9a56-dd955e4c963c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7dc34a4d-532e-4511-b320-1918d6321e91",
+ "name": "7dc34a4d-532e-4511-b320-1918d6321e91",
+ "status": "Creating",
+ "startTime": "2022-07-27T00:38:28.7995048Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7dc34a4d-532e-4511-b320-1918d6321e91?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2867,7 +1389,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:53:34 GMT",
+ "Date": "Wed, 27 Jul 2022 00:41:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2875,36 +1397,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "03698a51-cfb1-45f0-8ad8-86104a6e437b",
- "x-ms-ratelimit-remaining-subscription-reads": "11953",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155335Z:03698a51-cfb1-45f0-8ad8-86104a6e437b",
+ "x-ms-correlation-request-id": "36e13ab1-caf6-49bf-bc70-77ac89430ee0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004131Z:36e13ab1-caf6-49bf-bc70-77ac89430ee0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7dc34a4d-532e-4511-b320-1918d6321e91",
+ "name": "7dc34a4d-532e-4511-b320-1918d6321e91",
+ "status": "Creating",
+ "startTime": "2022-07-27T00:38:28.7995048Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7dc34a4d-532e-4511-b320-1918d6321e91?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2912,7 +1429,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:53:45 GMT",
+ "Date": "Wed, 27 Jul 2022 00:42:01 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2920,36 +1437,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c3b08aae-6767-4909-bf8e-e8c4aecc3f75",
- "x-ms-ratelimit-remaining-subscription-reads": "11952",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155346Z:c3b08aae-6767-4909-bf8e-e8c4aecc3f75",
+ "x-ms-correlation-request-id": "0ef2d0cb-554a-4006-bebf-4ee96b75e9e1",
+ "x-ms-ratelimit-remaining-subscription-reads": "11985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004201Z:0ef2d0cb-554a-4006-bebf-4ee96b75e9e1",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7dc34a4d-532e-4511-b320-1918d6321e91",
+ "name": "7dc34a4d-532e-4511-b320-1918d6321e91",
+ "status": "Creating",
+ "startTime": "2022-07-27T00:38:28.7995048Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7dc34a4d-532e-4511-b320-1918d6321e91?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2957,7 +1469,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:53:56 GMT",
+ "Date": "Wed, 27 Jul 2022 00:42:31 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2965,36 +1477,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "cb209094-9100-4afc-861f-5c5c59ae362d",
- "x-ms-ratelimit-remaining-subscription-reads": "11951",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155357Z:cb209094-9100-4afc-861f-5c5c59ae362d",
+ "x-ms-correlation-request-id": "67605f92-8fe3-466c-bcab-6dd5ee6ef782",
+ "x-ms-ratelimit-remaining-subscription-reads": "11984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004232Z:67605f92-8fe3-466c-bcab-6dd5ee6ef782",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7dc34a4d-532e-4511-b320-1918d6321e91",
+ "name": "7dc34a4d-532e-4511-b320-1918d6321e91",
+ "status": "Creating",
+ "startTime": "2022-07-27T00:38:28.7995048Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7dc34a4d-532e-4511-b320-1918d6321e91?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3002,7 +1509,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:54:08 GMT",
+ "Date": "Wed, 27 Jul 2022 00:43:02 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3010,36 +1517,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "337028db-366c-4ee8-a336-a0e8e74d7629",
- "x-ms-ratelimit-remaining-subscription-reads": "11950",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155408Z:337028db-366c-4ee8-a336-a0e8e74d7629",
+ "x-ms-correlation-request-id": "cf47ba83-c3e9-4c08-85d7-ef9a7c1ec005",
+ "x-ms-ratelimit-remaining-subscription-reads": "11983",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004302Z:cf47ba83-c3e9-4c08-85d7-ef9a7c1ec005",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7dc34a4d-532e-4511-b320-1918d6321e91",
+ "name": "7dc34a4d-532e-4511-b320-1918d6321e91",
+ "status": "Creating",
+ "startTime": "2022-07-27T00:38:28.7995048Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7dc34a4d-532e-4511-b320-1918d6321e91?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3047,7 +1549,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:54:19 GMT",
+ "Date": "Wed, 27 Jul 2022 00:43:32 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3055,36 +1557,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d55b0fb5-371e-46ab-8da9-fd918acc5500",
- "x-ms-ratelimit-remaining-subscription-reads": "11949",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155419Z:d55b0fb5-371e-46ab-8da9-fd918acc5500",
+ "x-ms-correlation-request-id": "56831f14-11a0-496a-8c77-d5400d0d1f10",
+ "x-ms-ratelimit-remaining-subscription-reads": "11982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004333Z:56831f14-11a0-496a-8c77-d5400d0d1f10",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7dc34a4d-532e-4511-b320-1918d6321e91",
+ "name": "7dc34a4d-532e-4511-b320-1918d6321e91",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T00:38:28.7995048Z",
+ "endTime": "2022-07-27T00:43:04.8995808Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3092,7 +1589,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:54:29 GMT",
+ "Date": "Wed, 27 Jul 2022 00:43:33 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T00%3A43%3A04.9032918Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3100,36 +1598,90 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3e436700-a1ca-4207-9a5c-20046b96f436",
- "x-ms-ratelimit-remaining-subscription-reads": "11948",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155430Z:3e436700-a1ca-4207-9a5c-20046b96f436",
+ "x-ms-correlation-request-id": "14d48e2c-9b95-4b08-953e-435817a605c7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11981",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004334Z:14d48e2c-9b95-4b08-953e-435817a605c7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T00%3A43%3A04.9032918Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T00:38:27.2797198Z"
+ },
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "fileSystemId": "748241a0-2146-987e-82a6-99f00ddd90e7",
+ "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_e9a95b63",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "748241a0-2146-987e-82a6-99f00ddd90e7",
+ "fileSystemId": "748241a0-2146-987e-82a6-99f00ddd90e7",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3137,7 +1689,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:54:40 GMT",
+ "Date": "Wed, 27 Jul 2022 00:43:44 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T00%3A43%3A04.9032918Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3145,36 +1698,90 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9574e13b-4ad6-401b-92a9-e1a64189012f",
- "x-ms-ratelimit-remaining-subscription-reads": "11947",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155441Z:9574e13b-4ad6-401b-92a9-e1a64189012f",
+ "x-ms-correlation-request-id": "b3f4e50d-252f-4eda-ab7b-7a4f067c3413",
+ "x-ms-ratelimit-remaining-subscription-reads": "11980",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004345Z:b3f4e50d-252f-4eda-ab7b-7a4f067c3413",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T00%3A43%3A04.9032918Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T00:38:27.2797198Z"
+ },
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "fileSystemId": "748241a0-2146-987e-82a6-99f00ddd90e7",
+ "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_e9a95b63",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "748241a0-2146-987e-82a6-99f00ddd90e7",
+ "fileSystemId": "748241a0-2146-987e-82a6-99f00ddd90e7",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/vaults?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3182,7 +1789,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:54:51 GMT",
+ "Date": "Wed, 27 Jul 2022 00:43:45 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3190,81 +1797,149 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6adf2963-330e-411f-9049-1b67d029e602",
- "x-ms-ratelimit-remaining-subscription-reads": "11946",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155451Z:6adf2963-330e-411f-9049-1b67d029e602",
+ "x-ms-correlation-request-id": "60cc5d1a-4d0e-446a-9b44-96965504ab70",
+ "x-ms-ratelimit-remaining-subscription-reads": "11979",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004345Z:60cc5d1a-4d0e-446a-9b44-96965504ab70",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
+ "value": [
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": {
+ "enabled": true,
+ "vaultId": "6130fdad-3bac-11eb-aba9-0e6a0f269857"
+ }
+ }
+ ]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "PATCH",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "408",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/vaults/cbsvault",
+ "backupEnabled": true
+ }
+ },
+ "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/ea123b63-0c33-4c07-9008-717a4a38876a?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "2131",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:55:02 GMT",
+ "Date": "Wed, 27 Jul 2022 00:43:45 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T00%3A43%3A45.9779038Z\u0027\u0022",
"Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ea123b63-0c33-4c07-9008-717a4a38876a?api-version=2022-03-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": "d5a4a448-549b-4cfc-8d9f-6f549112b638",
- "x-ms-ratelimit-remaining-subscription-reads": "11945",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155502Z:d5a4a448-549b-4cfc-8d9f-6f549112b638",
+ "x-ms-correlation-request-id": "c98257bb-1f62-4e39-b9bc-ac59da387ecb",
+ "x-ms-ratelimit-remaining-subscription-writes": "1194",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004346Z:c98257bb-1f62-4e39-b9bc-ac59da387ecb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T00%3A43%3A45.9779038Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T00:38:27.2797198Z"
+ },
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "provisioningState": "Patching",
+ "fileSystemId": "748241a0-2146-987e-82a6-99f00ddd90e7",
+ "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_e9a95b63",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "748241a0-2146-987e-82a6-99f00ddd90e7",
+ "fileSystemId": "748241a0-2146-987e-82a6-99f00ddd90e7",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ea123b63-0c33-4c07-9008-717a4a38876a?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3272,7 +1947,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:55:12 GMT",
+ "Date": "Wed, 27 Jul 2022 00:44:15 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3280,36 +1955,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a63439f7-1dcb-424c-887b-256715930fe8",
- "x-ms-ratelimit-remaining-subscription-reads": "11944",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155513Z:a63439f7-1dcb-424c-887b-256715930fe8",
+ "x-ms-correlation-request-id": "bb420f63-aca0-4800-9269-97265f89ba22",
+ "x-ms-ratelimit-remaining-subscription-reads": "11978",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004416Z:bb420f63-aca0-4800-9269-97265f89ba22",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ea123b63-0c33-4c07-9008-717a4a38876a",
+ "name": "ea123b63-0c33-4c07-9008-717a4a38876a",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T00:43:45.9813757Z",
+ "endTime": "2022-07-27T00:43:50.2006731Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ea123b63-0c33-4c07-9008-717a4a38876a?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3317,7 +1987,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:55:23 GMT",
+ "Date": "Wed, 27 Jul 2022 00:44:15 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3325,81 +1995,159 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6f908054-9799-48a1-b2b3-fc7720766a4b",
- "x-ms-ratelimit-remaining-subscription-reads": "11943",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155524Z:6f908054-9799-48a1-b2b3-fc7720766a4b",
+ "x-ms-correlation-request-id": "1df60672-37d5-426f-a1d0-9f46bbc72185",
+ "x-ms-ratelimit-remaining-subscription-reads": "11977",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004416Z:1df60672-37d5-426f-a1d0-9f46bbc72185",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T00%3A43%3A50.204395Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T00:43:45.6851932Z"
+ },
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "dataProtection": {
+ "backup": {
+ "backupEnabled": true,
+ "policyEnforced": false,
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/vaults/cbsvault"
+ }
+ },
+ "fileSystemId": "748241a0-2146-987e-82a6-99f00ddd90e7",
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-3-51142cdf",
+ "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_e9a95b63",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf",
+ "poolId": "7784544a-7292-c5a0-a13c-fb3c93d6102f",
+ "mountTargets": [
+ {
+ "provisioningState": "",
+ "mountTargetId": "748241a0-2146-987e-82a6-99f00ddd90e7",
+ "fileSystemId": "748241a0-2146-987e-82a6-99f00ddd90e7",
+ "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,
+ "provisioningState": "Succeeded"
+ },
+ "systemData": {
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T00:43:45.8460915Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "69",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/0bcb9840-4846-43db-8188-10f7721af5c8?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "556",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:55:34 GMT",
+ "Date": "Wed, 27 Jul 2022 00:44:16 GMT",
"Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bcb9840-4846-43db-8188-10f7721af5c8?api-version=2022-03-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": "59f8bdeb-1671-43a3-9863-eb60ae686789",
- "x-ms-ratelimit-remaining-subscription-reads": "11942",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155535Z:59f8bdeb-1671-43a3-9863-eb60ae686789",
+ "x-ms-correlation-request-id": "73f85741-ddea-4627-852d-af76fc36e803",
+ "x-ms-ratelimit-remaining-subscription-writes": "1193",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004417Z:73f85741-ddea-4627-852d-af76fc36e803",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
"useExistingSnapshot": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bcb9840-4846-43db-8188-10f7721af5c8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3407,7 +2155,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:55:45 GMT",
+ "Date": "Wed, 27 Jul 2022 00:44:47 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3415,81 +2163,75 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f5a8645d-229f-48a8-9a5d-b85c8c35a027",
- "x-ms-ratelimit-remaining-subscription-reads": "11941",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155546Z:f5a8645d-229f-48a8-9a5d-b85c8c35a027",
+ "x-ms-correlation-request-id": "132621b5-5c45-42a3-b788-0f256d8444a4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11976",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004447Z:132621b5-5c45-42a3-b788-0f256d8444a4",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bcb9840-4846-43db-8188-10f7721af5c8",
+ "name": "0bcb9840-4846-43db-8188-10f7721af5c8",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T00:44:17.0836397Z",
+ "endTime": "2022-07-27T00:44:17.3337201Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bcb9840-4846-43db-8188-10f7721af5c8?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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": "776",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:55:56 GMT",
+ "Date": "Wed, 27 Jul 2022 00:44: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": "efccac98-f605-4436-a547-42dba217b68b",
- "x-ms-ratelimit-remaining-subscription-reads": "11940",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155557Z:efccac98-f605-4436-a547-42dba217b68b",
+ "x-ms-correlation-request-id": "78385430-f6f7-40da-b08b-bfad38fe20e3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11975",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004448Z:78385430-f6f7-40da-b08b-bfad38fe20e3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "etag": "7/27/2022 12:44:17 AM",
+ "location": "",
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
+ "fileSystemId": "748241a0-2146-987e-82a6-99f00ddd90e7",
+ "creationDate": "0001-01-01T00:00:00Z",
+ "backupId": "2ed0f1b4-1429-2aee-7192-de1474d3398d",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "failureReason": "None",
+ "useExistingSnapshot": false,
+ "provisioningState": "Creating"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3497,7 +2239,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:55:56 GMT",
+ "Date": "Wed, 27 Jul 2022 00:44:58 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3505,55 +2247,44 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "15e6368d-331d-4a6b-b4d2-e09a922bfebd",
- "x-ms-ratelimit-remaining-subscription-reads": "11939",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155557Z:15e6368d-331d-4a6b-b4d2-e09a922bfebd",
+ "x-ms-correlation-request-id": "acdc3a8d-0330-4586-a502-37cfefe991e9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11974",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004458Z:acdc3a8d-0330-4586-a502-37cfefe991e9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "value": [
- {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "name": "sdk-py-tests-acc-1/cbsvault",
- "type": "Microsoft.NetApp/netAppAccounts/vaults",
- "properties": {}
- }
- ]
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T00:44:17Z",
+ "backupId": "2ed0f1b4-1429-2aee-7192-de1474d3398d",
+ "size": 0,
+ "backupType": "Manual",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "PATCH",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "401",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "backupEnabled": true
- }
- },
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0
- }
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 25 May 2022 15:55:57 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T15%3A55%3A57.825869Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 00:45:08 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3561,152 +2292,81 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a3a516b3-5816-4e29-b7b2-62caca861a90",
- "x-ms-ratelimit-remaining-subscription-writes": "1194",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155557Z:a3a516b3-5816-4e29-b7b2-62caca861a90",
+ "x-ms-correlation-request-id": "55f41530-b9af-4e9c-9c94-e92496c6b1e1",
+ "x-ms-ratelimit-remaining-subscription-reads": "11973",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004509Z:55f41530-b9af-4e9c-9c94-e92496c6b1e1",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-25T15%3A55%3A57.825869Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-25T15:47:29.3986057Z"
- },
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": {
- "dataProtection": {
- "backup": {
- "backupEnabled": true,
- "policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
- }
- },
- "provisioningState": "Succeeded",
- "fileSystemId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_93ade68ee53011e9a696c27beff6b5ea_16987eb5",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
- "fileSystemId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.25,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:42:42.0085871Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:55:57.7221043Z"
+ "creationDate": "2022-07-27T00:44:17Z",
+ "backupId": "2ed0f1b4-1429-2aee-7192-de1474d3398d",
+ "size": 0,
+ "backupType": "Manual",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
- "RequestMethod": "PUT",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "81",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "RequestBody": {
- "location": "southcentralusstage",
- "properties": {
- "useExistingSnapshot": false
- }
- },
- "StatusCode": 201,
+ "RequestBody": null,
+ "StatusCode": 200,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6bcf2069-d2a6-482d-800a-797363123a5c?api-version=2022-01-01",
"Cache-Control": "no-cache",
- "Content-Length": "523",
+ "Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:55:57 GMT",
+ "Date": "Wed, 27 Jul 2022 00:45:19 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6bcf2069-d2a6-482d-800a-797363123a5c?api-version=2022-01-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": "722b974e-f19e-49ba-9f37-dd6c6296d26b",
- "x-ms-ratelimit-remaining-subscription-writes": "1193",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155558Z:722b974e-f19e-49ba-9f37-dd6c6296d26b",
+ "x-ms-correlation-request-id": "eac4c6c5-5f17-4ed7-aeb9-f54c029e8294",
+ "x-ms-ratelimit-remaining-subscription-reads": "11972",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004519Z:eac4c6c5-5f17-4ed7-aeb9-f54c029e8294",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
+ "creationDate": "2022-07-27T00:44:17Z",
+ "backupId": "2ed0f1b4-1429-2aee-7192-de1474d3398d",
+ "size": 0,
+ "backupType": "Manual",
"provisioningState": "Creating",
+ "failureReason": "None",
+ "volumeName": "sdk-py-tests-vol-3-51142cdf",
"useExistingSnapshot": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6bcf2069-d2a6-482d-800a-797363123a5c?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3714,7 +2374,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:56:28 GMT",
+ "Date": "Wed, 27 Jul 2022 00:45:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3722,75 +2382,81 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2e735227-fa89-43b2-b061-e90d8b7321c3",
- "x-ms-ratelimit-remaining-subscription-reads": "11938",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155628Z:2e735227-fa89-43b2-b061-e90d8b7321c3",
+ "x-ms-correlation-request-id": "b18258f0-778c-48db-b31e-ad9ee6f6ca78",
+ "x-ms-ratelimit-remaining-subscription-reads": "11971",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004534Z:b18258f0-778c-48db-b31e-ad9ee6f6ca78",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6bcf2069-d2a6-482d-800a-797363123a5c",
- "name": "6bcf2069-d2a6-482d-800a-797363123a5c",
- "status": "Succeeded",
- "startTime": "2022-05-25T15:55:58.317929Z",
- "endTime": "2022-05-25T15:55:59.8802708Z",
- "percentComplete": 100.0,
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2"
+ "creationDate": "2022-07-27T00:44:17Z",
+ "backupId": "2ed0f1b4-1429-2aee-7192-de1474d3398d",
+ "size": 0,
+ "backupType": "Manual",
+ "provisioningState": "Creating",
+ "failureReason": "None",
+ "volumeName": "sdk-py-tests-vol-3-51142cdf",
+ "useExistingSnapshot": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6bcf2069-d2a6-482d-800a-797363123a5c?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
- "StatusCode": 201,
+ "StatusCode": 200,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "730",
+ "Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:56:28 GMT",
+ "Date": "Wed, 27 Jul 2022 00: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": "078fee95-7e96-4ee8-a729-55ab90444e46",
- "x-ms-ratelimit-remaining-subscription-reads": "11937",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155628Z:078fee95-7e96-4ee8-a729-55ab90444e46",
+ "x-ms-correlation-request-id": "e2591e11-b9c8-4a94-8b50-e94f023de770",
+ "x-ms-ratelimit-remaining-subscription-reads": "11970",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004544Z:e2591e11-b9c8-4a94-8b50-e94f023de770",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "5/25/2022 3:55:59 PM",
- "location": "",
+ "location": "westus2",
"properties": {
- "fileSystemId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
- "creationDate": "0001-01-01T00:00:00Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:44:17Z",
+ "backupId": "2ed0f1b4-1429-2aee-7192-de1474d3398d",
"size": 0,
"backupType": "Manual",
+ "provisioningState": "Creating",
"failureReason": "None",
- "useExistingSnapshot": false,
- "provisioningState": "Creating"
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3798,7 +2464,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:56:39 GMT",
+ "Date": "Wed, 27 Jul 2022 00:45:55 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3806,36 +2472,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "703a1063-8b19-4873-854a-7d5326d71970",
- "x-ms-ratelimit-remaining-subscription-reads": "11936",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155639Z:703a1063-8b19-4873-854a-7d5326d71970",
+ "x-ms-correlation-request-id": "14755bb8-98dc-4361-9723-5b95beb95fc9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11969",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004555Z:14755bb8-98dc-4361-9723-5b95beb95fc9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:44:17Z",
+ "backupId": "2ed0f1b4-1429-2aee-7192-de1474d3398d",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3843,7 +2509,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:56:50 GMT",
+ "Date": "Wed, 27 Jul 2022 00:46:05 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3851,36 +2517,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "959ba5a0-33ad-4fa2-be56-8801bf0410f0",
- "x-ms-ratelimit-remaining-subscription-reads": "11935",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155650Z:959ba5a0-33ad-4fa2-be56-8801bf0410f0",
+ "x-ms-correlation-request-id": "81129fd0-4216-4c5d-a681-42718cedaa6d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11968",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004606Z:81129fd0-4216-4c5d-a681-42718cedaa6d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:44:17Z",
+ "backupId": "2ed0f1b4-1429-2aee-7192-de1474d3398d",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3888,7 +2554,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:57:01 GMT",
+ "Date": "Wed, 27 Jul 2022 00:46:17 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3896,36 +2562,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e6961672-0bca-4807-8496-06bed20c54f2",
- "x-ms-ratelimit-remaining-subscription-reads": "11934",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155701Z:e6961672-0bca-4807-8496-06bed20c54f2",
+ "x-ms-correlation-request-id": "f492273d-b107-4402-b442-686f60ed59a0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11967",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004618Z:f492273d-b107-4402-b442-686f60ed59a0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:44:17Z",
+ "backupId": "2ed0f1b4-1429-2aee-7192-de1474d3398d",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3933,7 +2599,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:57:12 GMT",
+ "Date": "Wed, 27 Jul 2022 00:46:27 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3941,36 +2607,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "cb343609-bd4c-4e24-ab5a-77982396d775",
- "x-ms-ratelimit-remaining-subscription-reads": "11933",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155712Z:cb343609-bd4c-4e24-ab5a-77982396d775",
+ "x-ms-correlation-request-id": "b01ac336-dbb3-4c95-82ec-a8f97aaba549",
+ "x-ms-ratelimit-remaining-subscription-reads": "11966",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004628Z:b01ac336-dbb3-4c95-82ec-a8f97aaba549",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:44:17Z",
+ "backupId": "2ed0f1b4-1429-2aee-7192-de1474d3398d",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3978,7 +2644,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:57:23 GMT",
+ "Date": "Wed, 27 Jul 2022 00:46:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3986,36 +2652,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2c76e2e8-ee70-48f5-a8a8-c2f5ffcb8da2",
- "x-ms-ratelimit-remaining-subscription-reads": "11932",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155723Z:2c76e2e8-ee70-48f5-a8a8-c2f5ffcb8da2",
+ "x-ms-correlation-request-id": "d8e45f38-70e5-4214-a1a6-ba02eef42025",
+ "x-ms-ratelimit-remaining-subscription-reads": "11965",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004642Z:d8e45f38-70e5-4214-a1a6-ba02eef42025",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:44:17Z",
+ "backupId": "2ed0f1b4-1429-2aee-7192-de1474d3398d",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4023,7 +2689,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:57:34 GMT",
+ "Date": "Wed, 27 Jul 2022 00:46:53 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4031,36 +2697,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "da454901-0e7e-4bc5-b43d-c5ef6209ae77",
- "x-ms-ratelimit-remaining-subscription-reads": "11931",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155735Z:da454901-0e7e-4bc5-b43d-c5ef6209ae77",
+ "x-ms-correlation-request-id": "a45bc7f3-dfe4-4ac3-a54e-4ee9a0c3c75d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11964",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004654Z:a45bc7f3-dfe4-4ac3-a54e-4ee9a0c3c75d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:44:17Z",
+ "backupId": "2ed0f1b4-1429-2aee-7192-de1474d3398d",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4068,7 +2734,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:57:45 GMT",
+ "Date": "Wed, 27 Jul 2022 00:47:04 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4076,36 +2742,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "096336ae-b4b7-401c-8d19-9f28526a8e4b",
- "x-ms-ratelimit-remaining-subscription-reads": "11930",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155746Z:096336ae-b4b7-401c-8d19-9f28526a8e4b",
+ "x-ms-correlation-request-id": "d063225a-5070-4d47-900a-b145cdd84dd5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11963",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004705Z:d063225a-5070-4d47-900a-b145cdd84dd5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:44:17Z",
+ "backupId": "2ed0f1b4-1429-2aee-7192-de1474d3398d",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4113,7 +2779,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:57:56 GMT",
+ "Date": "Wed, 27 Jul 2022 00:47:14 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4121,36 +2787,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e72bdbee-6f68-48f4-8a1c-eb05c5243d0f",
- "x-ms-ratelimit-remaining-subscription-reads": "11929",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155757Z:e72bdbee-6f68-48f4-8a1c-eb05c5243d0f",
+ "x-ms-correlation-request-id": "d4fe48ae-87cd-4bda-babc-bdfa0677e0e7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11962",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004715Z:d4fe48ae-87cd-4bda-babc-bdfa0677e0e7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:44:17Z",
+ "backupId": "2ed0f1b4-1429-2aee-7192-de1474d3398d",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4158,7 +2824,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:58:07 GMT",
+ "Date": "Wed, 27 Jul 2022 00:47:25 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4166,36 +2832,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "cb94c7ca-2112-48bc-a6ae-7ba721c19e01",
- "x-ms-ratelimit-remaining-subscription-reads": "11928",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155808Z:cb94c7ca-2112-48bc-a6ae-7ba721c19e01",
+ "x-ms-correlation-request-id": "ff83698d-88fa-4902-a46a-1f3c1ee95ef2",
+ "x-ms-ratelimit-remaining-subscription-reads": "11961",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004726Z:ff83698d-88fa-4902-a46a-1f3c1ee95ef2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:44:17Z",
+ "backupId": "2ed0f1b4-1429-2aee-7192-de1474d3398d",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4203,7 +2869,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:58:19 GMT",
+ "Date": "Wed, 27 Jul 2022 00:47:36 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4211,36 +2877,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7d278b9f-1653-4763-b6e7-24e47b7e1760",
- "x-ms-ratelimit-remaining-subscription-reads": "11927",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155820Z:7d278b9f-1653-4763-b6e7-24e47b7e1760",
+ "x-ms-correlation-request-id": "8b52b39f-2ea4-486a-b6e2-0a50e2350cb6",
+ "x-ms-ratelimit-remaining-subscription-reads": "11960",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004736Z:8b52b39f-2ea4-486a-b6e2-0a50e2350cb6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
- "size": 0,
+ "creationDate": "2022-07-27T00:44:21Z",
+ "backupId": "2ed0f1b4-1429-2aee-7192-de1474d3398d",
+ "size": 339968,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/vaults?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4248,7 +2914,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:58:29 GMT",
+ "Date": "Wed, 27 Jul 2022 00:47:36 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4256,44 +2922,58 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ec78e9e8-6b41-4a12-9ac3-dd4c9b4213a7",
- "x-ms-ratelimit-remaining-subscription-reads": "11926",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155830Z:ec78e9e8-6b41-4a12-9ac3-dd4c9b4213a7",
+ "x-ms-correlation-request-id": "9f392cc3-530a-4e2f-a332-bcf905741440",
+ "x-ms-ratelimit-remaining-subscription-reads": "11959",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004737Z:9f392cc3-530a-4e2f-a332-bcf905741440",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
+ "value": [
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": {
+ "enabled": true,
+ "vaultId": "6130fdad-3bac-11eb-aba9-0e6a0f269857"
+ }
+ }
+ ]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "PATCH",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "408",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/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": "Wed, 25 May 2022 15:58:40 GMT",
+ "Date": "Wed, 27 Jul 2022 00:47:38 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T00%3A47%3A37.6184677Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4301,126 +2981,148 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fa89238c-3574-4011-8c13-c682ca780051",
- "x-ms-ratelimit-remaining-subscription-reads": "11925",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155841Z:fa89238c-3574-4011-8c13-c682ca780051",
+ "x-ms-correlation-request-id": "35ea9a7e-5a8a-41c5-ac85-e2e26829edc9",
+ "x-ms-ratelimit-remaining-subscription-writes": "1192",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004739Z:35ea9a7e-5a8a-41c5-ac85-e2e26829edc9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T00%3A47%3A37.6184677Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T00:47:37.2956128Z"
+ },
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "dataProtection": {
+ "backup": {
+ "backupEnabled": true,
+ "policyEnforced": false,
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/vaults/cbsvault"
+ }
+ },
+ "provisioningState": "Succeeded",
+ "fileSystemId": "748241a0-2146-987e-82a6-99f00ddd90e7",
+ "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_e9a95b63",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "748241a0-2146-987e-82a6-99f00ddd90e7",
+ "fileSystemId": "748241a0-2146-987e-82a6-99f00ddd90e7",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000
+ },
+ "systemData": {
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T00:47:37.4720952Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 15:58: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": "c327d51d-dd45-46eb-906d-0f0a9333d9e5",
- "x-ms-ratelimit-remaining-subscription-reads": "11924",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155852Z:c327d51d-dd45-46eb-906d-0f0a9333d9e5",
- "X-Powered-By": "ASP.NET"
+ "Content-Length": "69",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "RequestBody": {
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
"useExistingSnapshot": false
}
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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/5b02bce2-73ee-4b3e-bbce-9695cdd115af?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "556",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:59:03 GMT",
+ "Date": "Wed, 27 Jul 2022 00:47:39 GMT",
"Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b02bce2-73ee-4b3e-bbce-9695cdd115af?api-version=2022-03-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": "5b5af3e1-8b6e-45a2-b853-8f0e897a9fa6",
- "x-ms-ratelimit-remaining-subscription-reads": "11923",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155903Z:5b5af3e1-8b6e-45a2-b853-8f0e897a9fa6",
+ "x-ms-correlation-request-id": "ce01a8b9-6dcf-4ab0-b913-9f4790bc7053",
+ "x-ms-ratelimit-remaining-subscription-writes": "1191",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004739Z:ce01a8b9-6dcf-4ab0-b913-9f4790bc7053",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
"useExistingSnapshot": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b02bce2-73ee-4b3e-bbce-9695cdd115af?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4428,7 +3130,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:59:14 GMT",
+ "Date": "Wed, 27 Jul 2022 00:48:09 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4436,81 +3138,75 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "bc47bbec-c104-4798-b552-2c68ab133ad6",
- "x-ms-ratelimit-remaining-subscription-reads": "11922",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155914Z:bc47bbec-c104-4798-b552-2c68ab133ad6",
+ "x-ms-correlation-request-id": "253cc1b3-b259-40ec-92df-3ccc5c17b333",
+ "x-ms-ratelimit-remaining-subscription-reads": "11958",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004810Z:253cc1b3-b259-40ec-92df-3ccc5c17b333",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b02bce2-73ee-4b3e-bbce-9695cdd115af",
+ "name": "5b02bce2-73ee-4b3e-bbce-9695cdd115af",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T00:47:39.6288481Z",
+ "endTime": "2022-07-27T00:47:39.8319916Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b02bce2-73ee-4b3e-bbce-9695cdd115af?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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": "776",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:59:25 GMT",
+ "Date": "Wed, 27 Jul 2022 00:48: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": "77046c3e-6700-48b8-90fd-e998df8680f8",
- "x-ms-ratelimit-remaining-subscription-reads": "11921",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155925Z:77046c3e-6700-48b8-90fd-e998df8680f8",
+ "x-ms-correlation-request-id": "bf654184-4cd2-4005-8d46-593adefb9ec8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11957",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004810Z:bf654184-4cd2-4005-8d46-593adefb9ec8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "etag": "7/27/2022 12:47:39 AM",
+ "location": "",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "fileSystemId": "748241a0-2146-987e-82a6-99f00ddd90e7",
+ "creationDate": "0001-01-01T00:00:00Z",
+ "backupId": "f3e88825-474b-c416-50c3-9553ec986158",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "failureReason": "None",
+ "useExistingSnapshot": false,
+ "provisioningState": "Creating"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4518,7 +3214,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:59:35 GMT",
+ "Date": "Wed, 27 Jul 2022 00:48:20 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4526,36 +3222,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "872ba8f1-9566-4b4b-9b5d-cbe6f11dccd3",
- "x-ms-ratelimit-remaining-subscription-reads": "11920",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155936Z:872ba8f1-9566-4b4b-9b5d-cbe6f11dccd3",
+ "x-ms-correlation-request-id": "12599b12-1891-4741-8e55-3470c6eb7be2",
+ "x-ms-ratelimit-remaining-subscription-reads": "11956",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004820Z:12599b12-1891-4741-8e55-3470c6eb7be2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:47:39Z",
+ "backupId": "f3e88825-474b-c416-50c3-9553ec986158",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4563,7 +3259,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:59:46 GMT",
+ "Date": "Wed, 27 Jul 2022 00:48:31 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4571,36 +3267,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "73352a7b-28c3-4f50-9a95-049495f497f2",
- "x-ms-ratelimit-remaining-subscription-reads": "11919",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155947Z:73352a7b-28c3-4f50-9a95-049495f497f2",
+ "x-ms-correlation-request-id": "f7b8f511-514d-43fc-a054-ca33add0e835",
+ "x-ms-ratelimit-remaining-subscription-reads": "11955",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004831Z:f7b8f511-514d-43fc-a054-ca33add0e835",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:47:39Z",
+ "backupId": "f3e88825-474b-c416-50c3-9553ec986158",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4608,7 +3304,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 15:59:57 GMT",
+ "Date": "Wed, 27 Jul 2022 00:48:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4616,36 +3312,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "93f67d85-3b9d-4200-8692-ec07a2c8fc08",
- "x-ms-ratelimit-remaining-subscription-reads": "11918",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T155958Z:93f67d85-3b9d-4200-8692-ec07a2c8fc08",
+ "x-ms-correlation-request-id": "c04fdb89-eff8-4a7e-b2a6-72f70de02ea0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11954",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004842Z:c04fdb89-eff8-4a7e-b2a6-72f70de02ea0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:47:39Z",
+ "backupId": "f3e88825-474b-c416-50c3-9553ec986158",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4653,7 +3349,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:00:08 GMT",
+ "Date": "Wed, 27 Jul 2022 00:48:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4661,36 +3357,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "52cd2f15-84aa-430b-9c21-fee943ee12e0",
- "x-ms-ratelimit-remaining-subscription-reads": "11917",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160009Z:52cd2f15-84aa-430b-9c21-fee943ee12e0",
+ "x-ms-correlation-request-id": "de7adab1-5369-476f-b754-410caea52be9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11953",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004852Z:de7adab1-5369-476f-b754-410caea52be9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:47:39Z",
+ "backupId": "f3e88825-474b-c416-50c3-9553ec986158",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4698,7 +3394,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:00:19 GMT",
+ "Date": "Wed, 27 Jul 2022 00:49:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4706,36 +3402,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5f5aa26b-39e7-40bd-935c-6d81db7cb6fc",
- "x-ms-ratelimit-remaining-subscription-reads": "11916",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160020Z:5f5aa26b-39e7-40bd-935c-6d81db7cb6fc",
+ "x-ms-correlation-request-id": "9b6a7e0a-b9b4-483c-8f6f-b17697257b28",
+ "x-ms-ratelimit-remaining-subscription-reads": "11952",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004903Z:9b6a7e0a-b9b4-483c-8f6f-b17697257b28",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:47:39Z",
+ "backupId": "f3e88825-474b-c416-50c3-9553ec986158",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4743,7 +3439,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:00:30 GMT",
+ "Date": "Wed, 27 Jul 2022 00:49:13 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4751,36 +3447,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f1d4ccc9-2b22-4bd6-b84b-19df341303aa",
- "x-ms-ratelimit-remaining-subscription-reads": "11915",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160031Z:f1d4ccc9-2b22-4bd6-b84b-19df341303aa",
+ "x-ms-correlation-request-id": "a1af3b34-d69f-4f86-9905-186a3551f885",
+ "x-ms-ratelimit-remaining-subscription-reads": "11951",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004913Z:a1af3b34-d69f-4f86-9905-186a3551f885",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:47:39Z",
+ "backupId": "f3e88825-474b-c416-50c3-9553ec986158",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4788,7 +3484,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:00:41 GMT",
+ "Date": "Wed, 27 Jul 2022 00:49:23 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4796,36 +3492,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f24762cd-0c72-4dca-8bca-47155315b11c",
- "x-ms-ratelimit-remaining-subscription-reads": "11914",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160042Z:f24762cd-0c72-4dca-8bca-47155315b11c",
+ "x-ms-correlation-request-id": "db2a1bdf-c468-4f2a-bebe-dbf114fbe4fe",
+ "x-ms-ratelimit-remaining-subscription-reads": "11950",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004924Z:db2a1bdf-c468-4f2a-bebe-dbf114fbe4fe",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:47:39Z",
+ "backupId": "f3e88825-474b-c416-50c3-9553ec986158",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4833,7 +3529,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:00:52 GMT",
+ "Date": "Wed, 27 Jul 2022 00:49:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4841,36 +3537,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b88323c6-a587-48b7-b143-3fe8f7c02959",
- "x-ms-ratelimit-remaining-subscription-reads": "11913",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160053Z:b88323c6-a587-48b7-b143-3fe8f7c02959",
+ "x-ms-correlation-request-id": "545ec6f3-7500-4ae7-bc50-c259c883530b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11949",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004934Z:545ec6f3-7500-4ae7-bc50-c259c883530b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:47:39Z",
+ "backupId": "f3e88825-474b-c416-50c3-9553ec986158",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4878,7 +3574,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:01:03 GMT",
+ "Date": "Wed, 27 Jul 2022 00:49:45 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4886,36 +3582,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2bd03e13-6360-40fe-b00f-14a78ced4460",
- "x-ms-ratelimit-remaining-subscription-reads": "11912",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160104Z:2bd03e13-6360-40fe-b00f-14a78ced4460",
+ "x-ms-correlation-request-id": "33187fbb-3cd8-4a52-a9de-b15daaa233e5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11948",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004945Z:33187fbb-3cd8-4a52-a9de-b15daaa233e5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:47:39Z",
+ "backupId": "f3e88825-474b-c416-50c3-9553ec986158",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4923,7 +3619,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:01:14 GMT",
+ "Date": "Wed, 27 Jul 2022 00:49:56 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4931,36 +3627,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c9847815-7549-414a-be45-01dd6dc3396c",
- "x-ms-ratelimit-remaining-subscription-reads": "11911",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160115Z:c9847815-7549-414a-be45-01dd6dc3396c",
+ "x-ms-correlation-request-id": "e2470f82-f21f-405d-bf52-22ccf70c76af",
+ "x-ms-ratelimit-remaining-subscription-reads": "11947",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T004956Z:e2470f82-f21f-405d-bf52-22ccf70c76af",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:47:39Z",
+ "backupId": "f3e88825-474b-c416-50c3-9553ec986158",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4968,7 +3664,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:01:25 GMT",
+ "Date": "Wed, 27 Jul 2022 00:50:06 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4976,36 +3672,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f762516e-bca8-462a-bb14-33cb7c31571d",
- "x-ms-ratelimit-remaining-subscription-reads": "11910",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160125Z:f762516e-bca8-462a-bb14-33cb7c31571d",
+ "x-ms-correlation-request-id": "532fc97f-a9f6-40f6-a8b0-09902c7b155a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11946",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005007Z:532fc97f-a9f6-40f6-a8b0-09902c7b155a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:47:39Z",
+ "backupId": "f3e88825-474b-c416-50c3-9553ec986158",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5013,7 +3709,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:01:36 GMT",
+ "Date": "Wed, 27 Jul 2022 00:50:16 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5021,36 +3717,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f947dc3c-6c4b-46c8-8f9f-bec12c810cd9",
- "x-ms-ratelimit-remaining-subscription-reads": "11909",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160136Z:f947dc3c-6c4b-46c8-8f9f-bec12c810cd9",
+ "x-ms-correlation-request-id": "ee6e1b72-a2b4-4ea2-963a-6913e032f15d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11945",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005017Z:ee6e1b72-a2b4-4ea2-963a-6913e032f15d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:47:39Z",
+ "backupId": "f3e88825-474b-c416-50c3-9553ec986158",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5058,7 +3754,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:01:47 GMT",
+ "Date": "Wed, 27 Jul 2022 00:50:28 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5066,36 +3762,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c872c0ac-c953-44e9-882e-1f6710d14afa",
- "x-ms-ratelimit-remaining-subscription-reads": "11908",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160147Z:c872c0ac-c953-44e9-882e-1f6710d14afa",
+ "x-ms-correlation-request-id": "c85c2185-36f6-4369-9d77-5831865c1edc",
+ "x-ms-ratelimit-remaining-subscription-reads": "11944",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005028Z:c85c2185-36f6-4369-9d77-5831865c1edc",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:47:39Z",
+ "backupId": "f3e88825-474b-c416-50c3-9553ec986158",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5103,7 +3799,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:01:58 GMT",
+ "Date": "Wed, 27 Jul 2022 00:50:38 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5111,36 +3807,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "50663af6-5406-4b24-8a78-19af6f8d28f7",
- "x-ms-ratelimit-remaining-subscription-reads": "11907",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160158Z:50663af6-5406-4b24-8a78-19af6f8d28f7",
+ "x-ms-correlation-request-id": "8b3a0c12-53ee-4900-a6ad-6d1331d95caf",
+ "x-ms-ratelimit-remaining-subscription-reads": "11943",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005038Z:8b3a0c12-53ee-4900-a6ad-6d1331d95caf",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:47:39Z",
+ "backupId": "f3e88825-474b-c416-50c3-9553ec986158",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5148,7 +3844,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:02:08 GMT",
+ "Date": "Wed, 27 Jul 2022 00:50:48 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5156,36 +3852,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "053e2070-d594-4fa2-adb3-7a65930d83dd",
- "x-ms-ratelimit-remaining-subscription-reads": "11906",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160209Z:053e2070-d594-4fa2-adb3-7a65930d83dd",
+ "x-ms-correlation-request-id": "fb3206cf-c3fc-426e-8ba8-1d20f57bc9ec",
+ "x-ms-ratelimit-remaining-subscription-reads": "11942",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005049Z:fb3206cf-c3fc-426e-8ba8-1d20f57bc9ec",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:47:39Z",
+ "backupId": "f3e88825-474b-c416-50c3-9553ec986158",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5193,7 +3889,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:02:19 GMT",
+ "Date": "Wed, 27 Jul 2022 00:50:58 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5201,36 +3897,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2d45e623-6fac-4d2e-baec-9edce19ec4f8",
- "x-ms-ratelimit-remaining-subscription-reads": "11905",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160220Z:2d45e623-6fac-4d2e-baec-9edce19ec4f8",
+ "x-ms-correlation-request-id": "c59df12b-7990-46c7-bd47-3991127f73c4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11941",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005059Z:c59df12b-7990-46c7-bd47-3991127f73c4",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:47:39Z",
+ "backupId": "f3e88825-474b-c416-50c3-9553ec986158",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5238,7 +3934,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:02:30 GMT",
+ "Date": "Wed, 27 Jul 2022 00:51:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5246,36 +3942,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3c02e292-d7d9-4126-98ed-48375af4fbb6",
- "x-ms-ratelimit-remaining-subscription-reads": "11904",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160231Z:3c02e292-d7d9-4126-98ed-48375af4fbb6",
+ "x-ms-correlation-request-id": "ac61351d-196f-477a-b195-95933162a80b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11940",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005110Z:ac61351d-196f-477a-b195-95933162a80b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:47:39Z",
+ "backupId": "f3e88825-474b-c416-50c3-9553ec986158",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5283,7 +3979,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:02:41 GMT",
+ "Date": "Wed, 27 Jul 2022 00:51:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5291,36 +3987,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4a288031-ff6b-4bb1-b5de-8101d87ab107",
- "x-ms-ratelimit-remaining-subscription-reads": "11903",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160242Z:4a288031-ff6b-4bb1-b5de-8101d87ab107",
+ "x-ms-correlation-request-id": "5c36b4fa-9912-4d79-b736-f213ed09f2dc",
+ "x-ms-ratelimit-remaining-subscription-reads": "11939",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005121Z:5c36b4fa-9912-4d79-b736-f213ed09f2dc",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:47:39Z",
+ "backupId": "f3e88825-474b-c416-50c3-9553ec986158",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5328,7 +4024,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:02:56 GMT",
+ "Date": "Wed, 27 Jul 2022 00:51:31 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5336,36 +4032,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "98a93b08-caf3-423b-832d-f072ec082ecd",
- "x-ms-ratelimit-remaining-subscription-reads": "11902",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160256Z:98a93b08-caf3-423b-832d-f072ec082ecd",
+ "x-ms-correlation-request-id": "42938043-4822-42ee-8f3c-f7bb4a2977be",
+ "x-ms-ratelimit-remaining-subscription-reads": "11938",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005131Z:42938043-4822-42ee-8f3c-f7bb4a2977be",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:47:39Z",
+ "backupId": "f3e88825-474b-c416-50c3-9553ec986158",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5373,7 +4069,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:03:08 GMT",
+ "Date": "Wed, 27 Jul 2022 00:51:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5381,36 +4077,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3edf73e7-2288-44b9-9e94-5f80f7defb37",
- "x-ms-ratelimit-remaining-subscription-reads": "11901",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160309Z:3edf73e7-2288-44b9-9e94-5f80f7defb37",
+ "x-ms-correlation-request-id": "4dd57e6d-90ed-4c1a-aac4-e00f9a7af724",
+ "x-ms-ratelimit-remaining-subscription-reads": "11937",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005142Z:4dd57e6d-90ed-4c1a-aac4-e00f9a7af724",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:47:39Z",
+ "backupId": "f3e88825-474b-c416-50c3-9553ec986158",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5418,7 +4114,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:03:19 GMT",
+ "Date": "Wed, 27 Jul 2022 00:51:52 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5426,36 +4122,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6410cc0f-a42c-489e-aa52-ee0f6f63eb05",
- "x-ms-ratelimit-remaining-subscription-reads": "11900",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160319Z:6410cc0f-a42c-489e-aa52-ee0f6f63eb05",
+ "x-ms-correlation-request-id": "cf0250cb-0135-4173-89bb-468adab340d4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11936",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005152Z:cf0250cb-0135-4173-89bb-468adab340d4",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:47:39Z",
+ "backupId": "f3e88825-474b-c416-50c3-9553ec986158",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5463,7 +4159,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:03:30 GMT",
+ "Date": "Wed, 27 Jul 2022 00:52:02 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5471,36 +4167,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a99a9526-d162-4583-9154-af4f9f06596d",
- "x-ms-ratelimit-remaining-subscription-reads": "11899",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160330Z:a99a9526-d162-4583-9154-af4f9f06596d",
+ "x-ms-correlation-request-id": "decc9fe4-3f60-4240-9a24-ad7118887c61",
+ "x-ms-ratelimit-remaining-subscription-reads": "11935",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005203Z:decc9fe4-3f60-4240-9a24-ad7118887c61",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:47:39Z",
+ "backupId": "f3e88825-474b-c416-50c3-9553ec986158",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5508,7 +4204,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:03:41 GMT",
+ "Date": "Wed, 27 Jul 2022 00:52:13 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5516,36 +4212,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4514cff2-c986-4c61-bf1f-acc3c47583f4",
- "x-ms-ratelimit-remaining-subscription-reads": "11898",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160342Z:4514cff2-c986-4c61-bf1f-acc3c47583f4",
+ "x-ms-correlation-request-id": "ba34fce7-011d-47c0-a0dd-2bdda28038ae",
+ "x-ms-ratelimit-remaining-subscription-reads": "11934",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005213Z:ba34fce7-011d-47c0-a0dd-2bdda28038ae",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
+ "creationDate": "2022-07-27T00:47:39Z",
+ "backupId": "f3e88825-474b-c416-50c3-9553ec986158",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5553,7 +4249,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:03:53 GMT",
+ "Date": "Wed, 27 Jul 2022 00:52:23 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5561,36 +4257,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d9827bf2-e992-4c84-aa5f-5397f255dd8a",
- "x-ms-ratelimit-remaining-subscription-reads": "11897",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160353Z:d9827bf2-e992-4c84-aa5f-5397f255dd8a",
+ "x-ms-correlation-request-id": "b97d9aae-702f-44a6-862d-3a538d27e38a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11933",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005224Z:b97d9aae-702f-44a6-862d-3a538d27e38a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
- "size": 0,
+ "creationDate": "2022-07-27T00:47:43Z",
+ "backupId": "f3e88825-474b-c416-50c3-9553ec986158",
+ "size": 360448,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/accountBackups?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5598,7 +4294,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:03:53 GMT",
+ "Date": "Wed, 27 Jul 2022 00:52:23 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5606,91 +4302,483 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4b018b21-1544-4b5f-b59c-a568c5d2e2ee",
- "x-ms-ratelimit-remaining-subscription-reads": "11896",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160354Z:4b018b21-1544-4b5f-b59c-a568c5d2e2ee",
+ "x-ms-correlation-request-id": "4c4c0cdf-5142-415f-8f73-9dee71839ef4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11932",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005224Z:4c4c0cdf-5142-415f-8f73-9dee71839ef4",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/accountBackups/ps266",
- "name": "sdk-py-tests-acc-1/ps266",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-1825",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-1825",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T11:19:54Z",
+ "backupId": "4bd0276d-c371-976b-4d84-48f0b1d0b473",
+ "size": 339968,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-7246",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-1574",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-1574",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T11:55:51Z",
+ "backupId": "e45d5d10-3d65-201b-c697-0e9473be08ad",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-2724",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-6163",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-6163",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T14:23:19Z",
+ "backupId": "58ee530d-86d8-519d-616c-bac680098410",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-6011",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-5797",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-5797",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T15:02:21Z",
+ "backupId": "36776a8e-f849-8bb0-9725-3f74dccc77da",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-8710",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-9586",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-9586",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T15:32:25Z",
+ "backupId": "6bc9f230-e226-5cdb-1b24-c3b6a484660b",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-6781",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-2941",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-2941",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T15:58:23Z",
+ "backupId": "1f1c6b9b-851b-f559-1435-b4fcc1af5c48",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-7822",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-431",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-431",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T16:08:22Z",
+ "backupId": "368eccf2-e212-7be4-b588-47ba874b4b63",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-7973",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-7953",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-7953",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T16:21:43Z",
+ "backupId": "873e51fb-64e9-e342-c1d1-1a04eeab6c53",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-4116",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-1494",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-1494",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T16:46:30Z",
+ "backupId": "90ec0719-0341-fb84-5f53-24d59278823b",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-2539",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-407",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-407",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T17:01:59Z",
+ "backupId": "6574427f-1a12-1fe8-d94f-5ec8250bb9d5",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-6804",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-1434",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-1434",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T17:17:35Z",
+ "backupId": "19f54b06-c926-1c6b-85f7-0a5cb4f2df0e",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-719",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-9348",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-9348",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T17:59:31Z",
+ "backupId": "a8569742-967e-2d95-506e-27c9687aa217",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-9441",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-4466",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-4466",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T18:30:59Z",
+ "backupId": "77bbc3d5-a6a8-f626-944b-886912f68529",
+ "size": 352256,
+ "backupType": "Manual",
+ "label": "adHocBackup2",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-7067",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-5190",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-5190",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T18:55:18Z",
+ "backupId": "4e4cf360-d77c-e37c-fcbb-2c79f89e4d68",
+ "size": 352256,
+ "backupType": "Manual",
+ "label": "adHocBackup2",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-7183",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-4930",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-4930",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T19:21:32Z",
+ "backupId": "38c2b191-0807-0733-781d-463707c05468",
+ "size": 352256,
+ "backupType": "Manual",
+ "label": "adHocBackup2",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-2191",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-1999",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-1999",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T20:12:35Z",
+ "backupId": "07911d51-e4bb-1ad9-4e25-3cd9e1f7fb8e",
+ "size": 352256,
+ "backupType": "Manual",
+ "label": "adHocBackup2",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-2675",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-3200",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-3200",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-15T09:54:28Z",
+ "backupId": "85d51660-24ca-4df5-62f2-db5407965554",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-8658",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-4085",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-4085",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-15T10:29:45Z",
+ "backupId": "ed8aa2ca-6982-caca-7306-1e406329e489",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-1546",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-1061",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-1061",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-15T13:33:46Z",
+ "backupId": "5bb3006b-8416-2f8c-bd06-e4aea1666e29",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-7594",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-113",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-113",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-15T14:30:48Z",
+ "backupId": "b74dd99e-e441-990c-e0b7-18151ccaad98",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-9003",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-4503",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-4503",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-15T14:59:27Z",
+ "backupId": "5e04f71f-ab25-47f3-9b53-c5f64aa25be5",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-1636",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-3134",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-3134",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-15T15:18:06Z",
+ "backupId": "adc3da88-7273-55ab-2b8a-d557b59af309",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-5632",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-8851",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-8851",
"type": "Microsoft.NetApp/netAppAccounts/accountBackups",
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2021-07-13T16:11:20Z",
- "backupId": "750af0a8-7223-5c69-2e7a-00a629bb92a9",
- "size": 0,
+ "creationDate": "2022-07-15T16:01:34Z",
+ "backupId": "7c190bd0-7f48-df97-e716-33ec49bd9858",
+ "size": 331776,
"backupType": "Manual",
- "label": "powershellBackupTest2",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - Could not spawn additional jobs for volume backup. Please wait for the ongoing jobs to finish and try again.",
- "volumeName": "ps7841",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-563",
"useExistingSnapshot": false
}
},
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/accountBackups/ps4177",
- "name": "sdk-py-tests-acc-1/ps4177",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-9165",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-9165",
"type": "Microsoft.NetApp/netAppAccounts/accountBackups",
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2021-07-13T16:11:06Z",
- "backupId": "ea3c8071-076e-674f-e2c6-8f071d4a9043",
+ "creationDate": "2022-07-18T11:12:22Z",
+ "backupId": "5c6583de-170a-a2fd-fb22-f3f5a6a23882",
"size": 331776,
"backupType": "Manual",
+ "label": "updatedLabel",
"provisioningState": "Succeeded",
"failureReason": "None",
- "volumeName": "ps7841",
+ "volumeName": "volumeName-5072",
"useExistingSnapshot": false
}
},
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/accountBackups/ps2088",
- "name": "sdk-py-tests-acc-1/ps2088",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-6330",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-6330",
"type": "Microsoft.NetApp/netAppAccounts/accountBackups",
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2021-07-13T16:38:44Z",
- "backupId": "b8d46456-4b45-ae98-6752-ba096d91ebb1",
+ "creationDate": "2022-07-20T00:28:30Z",
+ "backupId": "f98f5a5f-aa1b-83a3-b2af-ca45efe632f3",
"size": 331776,
"backupType": "Manual",
+ "label": "adHocBackup",
"provisioningState": "Succeeded",
"failureReason": "None",
- "volumeName": "ps5378",
+ "volumeName": "volumeName-6612",
"useExistingSnapshot": false
}
},
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/accountBackups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/sdk-py-tests-backup-4",
+ "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-backup-4",
"type": "Microsoft.NetApp/netAppAccounts/accountBackups",
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:48:02Z",
- "backupId": "67f03957-66be-c56d-8891-9fa06fbff824",
- "size": 0,
+ "creationDate": "2022-07-26T17:05:10Z",
+ "backupId": "f1054c1a-ce6a-8473-d19b-d97d90673a9e",
+ "size": 360448,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "sdk-py-tests-vol-3-51142cdf",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/sdk-py-tests-backup-1-51142cdf",
+ "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-backup-1-51142cdf",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-27T00:44:21Z",
+ "backupId": "2ed0f1b4-1429-2aee-7192-de1474d3398d",
+ "size": 339968,
+ "backupType": "Manual",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "sdk-py-tests-vol-3-51142cdf",
"useExistingSnapshot": false
}
},
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/accountBackups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/sdk-py-tests-backup-2-51142cdf",
+ "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-backup-2-51142cdf",
"type": "Microsoft.NetApp/netAppAccounts/accountBackups",
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-25T15:55:59Z",
- "backupId": "e9425bf2-f19c-4af2-e1b9-ff3815f117a5",
- "size": 0,
+ "creationDate": "2022-07-27T00:47:43Z",
+ "backupId": "f3e88825-474b-c416-50c3-9553ec986158",
+ "size": 360448,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "sdk-py-tests-vol-3-51142cdf",
"useExistingSnapshot": false
}
}
@@ -5698,13 +4786,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/vaults?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5712,7 +4800,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:03:54 GMT",
+ "Date": "Wed, 27 Jul 2022 00:52:24 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5720,32 +4808,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ecc5cb93-699b-4400-a003-7aafd7fff209",
- "x-ms-ratelimit-remaining-subscription-reads": "11895",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160354Z:ecc5cb93-699b-4400-a003-7aafd7fff209",
+ "x-ms-correlation-request-id": "e0da7998-adbc-43fb-a39f-1f33b2a32df0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11931",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005225Z:e0da7998-adbc-43fb-a39f-1f33b2a32df0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "name": "sdk-py-tests-acc-1/cbsvault",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": {}
+ "properties": {
+ "enabled": true,
+ "vaultId": "6130fdad-3bac-11eb-aba9-0e6a0f269857"
+ }
}
]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "PATCH",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "402",
+ "Content-Length": "409",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
"properties": {
@@ -5753,7 +4844,7 @@
"usageThreshold": 107374182400,
"dataProtection": {
"backup": {
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/vaults/cbsvault",
"backupEnabled": false
}
},
@@ -5764,44 +4855,44 @@
},
"StatusCode": 202,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4d38f95e-f61a-4311-bb15-95501cb042fd?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6672b51d-6690-429d-82d7-0c15d1aff937?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "2638",
+ "Content-Length": "2543",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:03:54 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T16%3A03%3A55.0999548Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 00:52:24 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T00%3A52%3A25.550742Z\u0027\u0022",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4d38f95e-f61a-4311-bb15-95501cb042fd?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6672b51d-6690-429d-82d7-0c15d1aff937?api-version=2022-03-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": "74f61abe-6763-4b4c-a35b-cb9ec7cfde89",
- "x-ms-ratelimit-remaining-subscription-writes": "1192",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160355Z:74f61abe-6763-4b4c-a35b-cb9ec7cfde89",
+ "x-ms-correlation-request-id": "d591929e-896a-46d8-ac3b-c5c9e99ed1d9",
+ "x-ms-ratelimit-remaining-subscription-writes": "1190",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005225Z:d591929e-896a-46d8-ac3b-c5c9e99ed1d9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T16%3A03%3A55.0999548Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T00%3A52%3A25.550742Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:47:29.3986057Z"
+ "CreatedOnDate": "2022-07-27T00:47:37.2956128Z"
},
"properties": {
"dataProtection": {
"backup": {
"backupEnabled": true,
"policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/vaults/cbsvault"
}
},
"provisioningState": "Patching",
- "fileSystemId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
+ "fileSystemId": "748241a0-2146-987e-82a6-99f00ddd90e7",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-51142cdf",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -5827,10 +4918,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_16987eb5",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_e9a95b63",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -5842,12 +4933,173 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
- "fileSystemId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "748241a0-2146-987e-82a6-99f00ddd90e7",
+ "fileSystemId": "748241a0-2146-987e-82a6-99f00ddd90e7",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000
+ },
+ "systemData": {
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T00:47:37.4720952Z"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6672b51d-6690-429d-82d7-0c15d1aff937?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 00:52: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": "3cfe1cb5-0d7e-4b70-ac53-e8ef98503e6c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11930",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005255Z:3cfe1cb5-0d7e-4b70-ac53-e8ef98503e6c",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6672b51d-6690-429d-82d7-0c15d1aff937",
+ "name": "6672b51d-6690-429d-82d7-0c15d1aff937",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T00:52:25.5556876Z",
+ "endTime": "2022-07-27T00:52:31.9756088Z",
+ "percentComplete": 100.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/6672b51d-6690-429d-82d7-0c15d1aff937?api-version=2022-03-01\u0026operationResultResponseType=Location",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 00:52: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": "3802cc1d-5167-4b83-876b-3bf5763951e0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11929",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005256Z:3802cc1d-5167-4b83-876b-3bf5763951e0",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T00%3A52%3A31.9739342Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T00:47:37.2956128Z"
+ },
+ "properties": {
+ "dataProtection": {
+ "backup": {
+ "backupEnabled": false,
+ "policyEnforced": false,
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/vaults/cbsvault"
+ }
+ },
+ "fileSystemId": "748241a0-2146-987e-82a6-99f00ddd90e7",
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-3-51142cdf",
+ "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_e9a95b63",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf",
+ "poolId": "7784544a-7292-c5a0-a13c-fb3c93d6102f",
+ "mountTargets": [
+ {
+ "provisioningState": "",
+ "mountTargetId": "748241a0-2146-987e-82a6-99f00ddd90e7",
+ "fileSystemId": "748241a0-2146-987e-82a6-99f00ddd90e7",
+ "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",
@@ -5855,27 +5107,57 @@
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true
+ "encrypted": true,
+ "provisioningState": "Succeeded"
},
"systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:42:42.0085871Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:55:57.7221043Z"
+ "lastModifiedAt": "2022-07-27T00:52:25.408868Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4d38f95e-f61a-4311-bb15-95501cb042fd?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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": "Wed, 27 Jul 2022 00:52: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": "f41fa209-6060-4034-a712-a1f3f343114f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11928",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005258Z:f41fa209-6060-4034-a712-a1f3f343114f",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/vaults?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5883,7 +5165,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:04:24 GMT",
+ "Date": "Wed, 27 Jul 2022 00:52:58 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5891,39 +5173,58 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "bbb52ef0-3c56-4550-b0a1-b04ddada827f",
- "x-ms-ratelimit-remaining-subscription-reads": "11894",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160425Z:bbb52ef0-3c56-4550-b0a1-b04ddada827f",
+ "x-ms-correlation-request-id": "f700dc3d-39ab-4e08-bc4a-018042cd2d4a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11927",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005259Z:f700dc3d-39ab-4e08-bc4a-018042cd2d4a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4d38f95e-f61a-4311-bb15-95501cb042fd",
- "name": "4d38f95e-f61a-4311-bb15-95501cb042fd",
- "status": "Succeeded",
- "startTime": "2022-05-25T16:03:55.0987421Z",
- "endTime": "2022-05-25T16:04:11.3933956Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
+ "value": [
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": {
+ "enabled": true,
+ "vaultId": "6130fdad-3bac-11eb-aba9-0e6a0f269857"
+ }
+ }
+ ]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4d38f95e-f61a-4311-bb15-95501cb042fd?api-version=2022-01-01\u0026operationResultResponseType=Location",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "PATCH",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "409",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/vaults/cbsvault",
+ "backupEnabled": false
+ }
+ },
+ "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": "Wed, 25 May 2022 16:04:24 GMT",
+ "Date": "Wed, 27 Jul 2022 00:52:59 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T00%3A52%3A59.4976187Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5931,34 +5232,33 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3f5e081b-6273-452c-a652-0faf200619f7",
- "x-ms-ratelimit-remaining-subscription-reads": "11893",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160425Z:3f5e081b-6273-452c-a652-0faf200619f7",
+ "x-ms-correlation-request-id": "68b85f54-12cc-4573-88bf-a4a07e4c23e8",
+ "x-ms-ratelimit-remaining-subscription-writes": "1189",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005259Z:68b85f54-12cc-4573-88bf-a4a07e4c23e8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T16%3A04%3A11.3876112Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T00%3A52%3A59.4976187Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:47:29.3986057Z"
+ "CreatedOnDate": "2022-07-27T00:47:37.2956128Z"
},
"properties": {
"dataProtection": {
"backup": {
"backupEnabled": false,
"policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/vaults/cbsvault"
}
},
- "fileSystemId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
+ "provisioningState": "Succeeded",
+ "fileSystemId": "748241a0-2146-987e-82a6-99f00ddd90e7",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
+ "creationToken": "sdk-py-tests-vol-3-51142cdf",
"usageThreshold": 107374182400,
- "usedBytes": 0,
"exportPolicy": {
"rules": [
{
@@ -5967,7 +5267,6 @@
"unixReadWrite": true,
"cifs": false,
"nfsv3": true,
- "nfsv4": false,
"nfsv41": false,
"allowedClients": "0.0.0.0/0",
"kerberos5ReadOnly": false,
@@ -5984,35 +5283,27 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_16987eb5",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_e9a95b63",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "16e630b1-cd82-d9ed-6ddd-33a0440b669e",
- "mountTargets": [
- {
- "provisioningState": "",
- "mountTargetId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
- "fileSystemId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
- "startIp": "",
- "endIp": "",
- "gateway": "",
- "netmask": "",
- "subnet": "",
- "ipAddress": "10.7.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": "748241a0-2146-987e-82a6-99f00ddd90e7",
+ "fileSystemId": "748241a0-2146-987e-82a6-99f00ddd90e7",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
"volumeSpecName": "generic",
"coolAccess": false,
"avsDataStore": "Disabled",
@@ -6020,29 +5311,23 @@
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
- "encrypted": true,
- "smbAccessBasedEnumeration": "Disabled",
- "smbNonBrowsable": "Disabled",
- "provisioningState": "Succeeded"
+ "maximumNumberOfFiles": 100000000
},
"systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:42:42.0085871Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T16:03:54.9912494Z"
+ "lastModifiedAt": "2022-07-27T00:52:59.3659933Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
@@ -6050,15 +5335,15 @@
"Cache-Control": "no-cache",
"Content-Length": "77",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:04:28 GMT",
+ "Date": "Wed, 27 Jul 2022 00:53: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": "9af9392b-931e-4c55-b5ca-1ca2ac138d10",
- "x-ms-ratelimit-remaining-subscription-reads": "11892",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160428Z:9af9392b-931e-4c55-b5ca-1ca2ac138d10",
+ "x-ms-correlation-request-id": "54358bf7-1cfe-4813-b95e-22b51ea57a3a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11926",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005302Z:54358bf7-1cfe-4813-b95e-22b51ea57a3a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -6069,13 +5354,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6083,7 +5368,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:04:28 GMT",
+ "Date": "Wed, 27 Jul 2022 00:53:02 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6091,263 +5376,451 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "bae05695-fcc9-48e6-b5a7-79924245fc7a",
- "x-ms-ratelimit-remaining-subscription-reads": "11891",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160428Z:bae05695-fcc9-48e6-b5a7-79924245fc7a",
+ "x-ms-correlation-request-id": "5caba0f5-398b-44ac-99a0-51af3bdc14ca",
+ "x-ms-ratelimit-remaining-subscription-reads": "11925",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005302Z:5caba0f5-398b-44ac-99a0-51af3bdc14ca",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "name": "sdk-py-tests-acc-1/cbsvault",
- "type": "Microsoft.NetApp/netAppAccounts/vaults",
- "properties": {}
- }
- ]
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "PATCH",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "402",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "backupEnabled": false
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-1825",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-1825",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T11:19:54Z",
+ "backupId": "4bd0276d-c371-976b-4d84-48f0b1d0b473",
+ "size": 339968,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-7246",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-1574",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-1574",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T11:55:51Z",
+ "backupId": "e45d5d10-3d65-201b-c697-0e9473be08ad",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-2724",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-6163",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-6163",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T14:23:19Z",
+ "backupId": "58ee530d-86d8-519d-616c-bac680098410",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-6011",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-5797",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-5797",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T15:02:21Z",
+ "backupId": "36776a8e-f849-8bb0-9725-3f74dccc77da",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-8710",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-9586",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-9586",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T15:32:25Z",
+ "backupId": "6bc9f230-e226-5cdb-1b24-c3b6a484660b",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-6781",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-2941",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-2941",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T15:58:23Z",
+ "backupId": "1f1c6b9b-851b-f559-1435-b4fcc1af5c48",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-7822",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-431",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-431",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T16:08:22Z",
+ "backupId": "368eccf2-e212-7be4-b588-47ba874b4b63",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-7973",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-7953",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-7953",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T16:21:43Z",
+ "backupId": "873e51fb-64e9-e342-c1d1-1a04eeab6c53",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-4116",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-1494",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-1494",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T16:46:30Z",
+ "backupId": "90ec0719-0341-fb84-5f53-24d59278823b",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-2539",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-407",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-407",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T17:01:59Z",
+ "backupId": "6574427f-1a12-1fe8-d94f-5ec8250bb9d5",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-6804",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-1434",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-1434",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T17:17:35Z",
+ "backupId": "19f54b06-c926-1c6b-85f7-0a5cb4f2df0e",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-719",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-9348",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-9348",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T17:59:31Z",
+ "backupId": "a8569742-967e-2d95-506e-27c9687aa217",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-9441",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-4466",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-4466",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T18:30:59Z",
+ "backupId": "77bbc3d5-a6a8-f626-944b-886912f68529",
+ "size": 352256,
+ "backupType": "Manual",
+ "label": "adHocBackup2",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-7067",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-5190",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-5190",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T18:55:18Z",
+ "backupId": "4e4cf360-d77c-e37c-fcbb-2c79f89e4d68",
+ "size": 352256,
+ "backupType": "Manual",
+ "label": "adHocBackup2",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-7183",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-4930",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-4930",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T19:21:32Z",
+ "backupId": "38c2b191-0807-0733-781d-463707c05468",
+ "size": 352256,
+ "backupType": "Manual",
+ "label": "adHocBackup2",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-2191",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-1999",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-1999",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-14T20:12:35Z",
+ "backupId": "07911d51-e4bb-1ad9-4e25-3cd9e1f7fb8e",
+ "size": 352256,
+ "backupType": "Manual",
+ "label": "adHocBackup2",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-2675",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-3200",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-3200",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-15T09:54:28Z",
+ "backupId": "85d51660-24ca-4df5-62f2-db5407965554",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-8658",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-4085",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-4085",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-15T10:29:45Z",
+ "backupId": "ed8aa2ca-6982-caca-7306-1e406329e489",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-1546",
+ "useExistingSnapshot": false
}
},
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0
- }
- },
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:04:29 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-25T16%3A04%3A29.1104454Z\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": "b065981a-300e-4f36-bc7e-7451dcd6544e",
- "x-ms-ratelimit-remaining-subscription-writes": "1191",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160429Z:b065981a-300e-4f36-bc7e-7451dcd6544e",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-25T16%3A04%3A29.1104454Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-25T15:47:29.3986057Z"
- },
- "properties": {
- "dataProtection": {
- "backup": {
- "backupEnabled": false,
- "policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-1061",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-1061",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-15T13:33:46Z",
+ "backupId": "5bb3006b-8416-2f8c-bd06-e4aea1666e29",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-7594",
+ "useExistingSnapshot": false
}
},
- "provisioningState": "Succeeded",
- "fileSystemId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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"
- }
- ]
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-113",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-113",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-15T14:30:48Z",
+ "backupId": "b74dd99e-e441-990c-e0b7-18151ccaad98",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-9003",
+ "useExistingSnapshot": false
+ }
},
- "protocolTypes": [
- "NFSv3"
- ],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_16987eb5",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
- "fileSystemId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
- "ipAddress": "10.7.0.4"
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-4503",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-4503",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-15T14:59:27Z",
+ "backupId": "5e04f71f-ab25-47f3-9b53-c5f64aa25be5",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-1636",
+ "useExistingSnapshot": false
}
- ],
- "throughputMibps": 6.25,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:42:42.0085871Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T16:04:28.9913132Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
- },
- "RequestBody": null,
- "StatusCode": 404,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Length": "77",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:04:31 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": "c44033fa-46c1-4a44-b26c-f69a7a6e35d6",
- "x-ms-ratelimit-remaining-subscription-reads": "11890",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160431Z:c44033fa-46c1-4a44-b26c-f69a7a6e35d6",
- "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/accountBackups?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 16: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": "196e9e05-c16e-4097-b682-4fb5d9a658e3",
- "x-ms-ratelimit-remaining-subscription-reads": "11889",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160432Z:196e9e05-c16e-4097-b682-4fb5d9a658e3",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "value": [
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-3134",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-3134",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-15T15:18:06Z",
+ "backupId": "adc3da88-7273-55ab-2b8a-d557b59af309",
+ "size": 331776,
+ "backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-5632",
+ "useExistingSnapshot": false
+ }
+ },
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/accountBackups/ps266",
- "name": "sdk-py-tests-acc-1/ps266",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-8851",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-8851",
"type": "Microsoft.NetApp/netAppAccounts/accountBackups",
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2021-07-13T16:11:20Z",
- "backupId": "750af0a8-7223-5c69-2e7a-00a629bb92a9",
- "size": 0,
+ "creationDate": "2022-07-15T16:01:34Z",
+ "backupId": "7c190bd0-7f48-df97-e716-33ec49bd9858",
+ "size": 331776,
"backupType": "Manual",
- "label": "powershellBackupTest2",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - Could not spawn additional jobs for volume backup. Please wait for the ongoing jobs to finish and try again.",
- "volumeName": "ps7841",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-563",
"useExistingSnapshot": false
}
},
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/accountBackups/ps4177",
- "name": "sdk-py-tests-acc-1/ps4177",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-9165",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-9165",
"type": "Microsoft.NetApp/netAppAccounts/accountBackups",
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2021-07-13T16:11:06Z",
- "backupId": "ea3c8071-076e-674f-e2c6-8f071d4a9043",
+ "creationDate": "2022-07-18T11:12:22Z",
+ "backupId": "5c6583de-170a-a2fd-fb22-f3f5a6a23882",
"size": 331776,
"backupType": "Manual",
+ "label": "updatedLabel",
"provisioningState": "Succeeded",
"failureReason": "None",
- "volumeName": "ps7841",
+ "volumeName": "volumeName-5072",
"useExistingSnapshot": false
}
},
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/accountBackups/ps2088",
- "name": "sdk-py-tests-acc-1/ps2088",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/backup-6330",
+ "name": "sdk-py-tests-acc-1-51142cdf/backup-6330",
"type": "Microsoft.NetApp/netAppAccounts/accountBackups",
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2021-07-13T16:38:44Z",
- "backupId": "b8d46456-4b45-ae98-6752-ba096d91ebb1",
+ "creationDate": "2022-07-20T00:28:30Z",
+ "backupId": "f98f5a5f-aa1b-83a3-b2af-ca45efe632f3",
"size": 331776,
"backupType": "Manual",
+ "label": "adHocBackup",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "volumeName-6612",
+ "useExistingSnapshot": false
+ }
+ },
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/accountBackups/sdk-py-tests-backup-4",
+ "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-backup-4",
+ "type": "Microsoft.NetApp/netAppAccounts/accountBackups",
+ "location": "westus2",
+ "properties": {
+ "creationDate": "2022-07-26T17:05:10Z",
+ "backupId": "f1054c1a-ce6a-8473-d19b-d97d90673a9e",
+ "size": 360448,
+ "backupType": "Manual",
"provisioningState": "Succeeded",
"failureReason": "None",
- "volumeName": "ps5378",
+ "volumeName": "sdk-py-tests-vol-3-51142cdf",
"useExistingSnapshot": false
}
}
@@ -6355,83 +5828,43 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/ff681d2a-85f3-4c79-8c68-5012e4e7ca72?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8ccacae4-dc26-45b9-a0dd-140b1f142ad7?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Wed, 25 May 2022 16:04:33 GMT",
+ "Date": "Wed, 27 Jul 2022 00:53:02 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ff681d2a-85f3-4c79-8c68-5012e4e7ca72?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8ccacae4-dc26-45b9-a0dd-140b1f142ad7?api-version=2022-03-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": "17194d7b-abce-4c35-8ebf-12d42aeb2054",
+ "x-ms-correlation-request-id": "737c016b-6486-4109-9f93-7ed252feb60a",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160433Z:17194d7b-abce-4c35-8ebf-12d42aeb2054",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005303Z:737c016b-6486-4109-9f93-7ed252feb60a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ff681d2a-85f3-4c79-8c68-5012e4e7ca72?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Wed, 25 May 2022 16:05: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": "6c92bb05-8d1c-445b-a2ca-49a2829bab5b",
- "x-ms-ratelimit-remaining-subscription-reads": "11888",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160503Z:6c92bb05-8d1c-445b-a2ca-49a2829bab5b",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ff681d2a-85f3-4c79-8c68-5012e4e7ca72",
- "name": "ff681d2a-85f3-4c79-8c68-5012e4e7ca72",
- "status": "Deleting",
- "startTime": "2022-05-25T16:04:33.4667015Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ff681d2a-85f3-4c79-8c68-5012e4e7ca72?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8ccacae4-dc26-45b9-a0dd-140b1f142ad7?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6439,7 +5872,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:05:33 GMT",
+ "Date": "Wed, 27 Jul 2022 00:53:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6447,31 +5880,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "80ab1226-c083-4499-9ec6-6c9444b765fb",
- "x-ms-ratelimit-remaining-subscription-reads": "11887",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160534Z:80ab1226-c083-4499-9ec6-6c9444b765fb",
+ "x-ms-correlation-request-id": "05afc485-2118-438a-bdaa-7117e73c7a87",
+ "x-ms-ratelimit-remaining-subscription-reads": "11924",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005333Z:05afc485-2118-438a-bdaa-7117e73c7a87",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ff681d2a-85f3-4c79-8c68-5012e4e7ca72",
- "name": "ff681d2a-85f3-4c79-8c68-5012e4e7ca72",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8ccacae4-dc26-45b9-a0dd-140b1f142ad7",
+ "name": "8ccacae4-dc26-45b9-a0dd-140b1f142ad7",
"status": "Deleting",
- "startTime": "2022-05-25T16:04:33.4667015Z",
+ "startTime": "2022-07-27T00:53:03.1284999Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/ff681d2a-85f3-4c79-8c68-5012e4e7ca72?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8ccacae4-dc26-45b9-a0dd-140b1f142ad7?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6479,7 +5912,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:06:04 GMT",
+ "Date": "Wed, 27 Jul 2022 00:54:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6487,31 +5920,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "135d360b-569d-4336-96f3-223f50122de5",
- "x-ms-ratelimit-remaining-subscription-reads": "11886",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160604Z:135d360b-569d-4336-96f3-223f50122de5",
+ "x-ms-correlation-request-id": "f391f1a0-a4fc-4171-a94d-5985c19ba2ce",
+ "x-ms-ratelimit-remaining-subscription-reads": "11923",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005403Z:f391f1a0-a4fc-4171-a94d-5985c19ba2ce",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ff681d2a-85f3-4c79-8c68-5012e4e7ca72",
- "name": "ff681d2a-85f3-4c79-8c68-5012e4e7ca72",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8ccacae4-dc26-45b9-a0dd-140b1f142ad7",
+ "name": "8ccacae4-dc26-45b9-a0dd-140b1f142ad7",
"status": "Succeeded",
- "startTime": "2022-05-25T16:04:33.4667015Z",
- "endTime": "2022-05-25T16:05:43.153933Z",
+ "startTime": "2022-07-27T00:53:03.1284999Z",
+ "endTime": "2022-07-27T00:53:49.0485721Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/ff681d2a-85f3-4c79-8c68-5012e4e7ca72?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8ccacae4-dc26-45b9-a0dd-140b1f142ad7?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6519,7 +5952,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:06:04 GMT",
+ "Date": "Wed, 27 Jul 2022 00:54:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6527,32 +5960,32 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "dbf9075b-8e11-4c2c-98a2-e63cf49f2b14",
- "x-ms-ratelimit-remaining-subscription-reads": "11885",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160604Z:dbf9075b-8e11-4c2c-98a2-e63cf49f2b14",
+ "x-ms-correlation-request-id": "50a7ac5e-2713-4336-878f-9b1485ae5870",
+ "x-ms-ratelimit-remaining-subscription-reads": "11922",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005404Z:50a7ac5e-2713-4336-878f-9b1485ae5870",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T16%3A05%3A33.8413065Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T00%3A53%3A03.1204709Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:47:29.3986057Z"
+ "CreatedOnDate": "2022-07-27T00:47:37.2956128Z"
},
"properties": {
"dataProtection": {
"backup": {
"backupEnabled": false,
"policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/vaults/cbsvault"
}
},
- "fileSystemId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
+ "fileSystemId": "748241a0-2146-987e-82a6-99f00ddd90e7",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
+ "creationToken": "sdk-py-tests-vol-3-51142cdf",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -6580,25 +6013,25 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "DELETED_baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_16987eb5",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_e9a95b63",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "16e630b1-cd82-d9ed-6ddd-33a0440b669e",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf",
+ "poolId": "7784544a-7292-c5a0-a13c-fb3c93d6102f",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
- "fileSystemId": "119661e6-1885-6e9f-ffa6-a093c07822d4",
+ "mountTargetId": "748241a0-2146-987e-82a6-99f00ddd90e7",
+ "fileSystemId": "748241a0-2146-987e-82a6-99f00ddd90e7",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -6617,89 +6050,84 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"encrypted": true,
- "smbAccessBasedEnumeration": "Disabled",
- "smbNonBrowsable": "Disabled",
"provisioningState": "Deleting"
},
"systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:42:42.0085871Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T16:04:28.9913132Z"
+ "lastModifiedAt": "2022-07-27T00:52:59.3659933Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "306",
+ "Content-Length": "320",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:09:25 GMT",
+ "Date": "Wed, 27 Jul 2022 00:57:26 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "73d9626c-135a-435e-a3b5-eaa32303174c",
+ "x-ms-correlation-request-id": "bafbf42b-4138-4ea4-b442-e0037a63b7ee",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160926Z:73d9626c-135a-435e-a3b5-eaa32303174c"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005726Z:bafbf42b-4138-4ea4-b442-e0037a63b7ee"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/5f0dafff-a1b5-4827-bcbf-94204b4911e4?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bebab8a7-66e9-4c81-a169-e401db5240d2?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Wed, 25 May 2022 16:09:37 GMT",
+ "Date": "Wed, 27 Jul 2022 00:57:38 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5f0dafff-a1b5-4827-bcbf-94204b4911e4?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bebab8a7-66e9-4c81-a169-e401db5240d2?api-version=2022-03-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": "302dbdd5-b251-405f-a625-a9cd5681b373",
+ "x-ms-correlation-request-id": "d812f4bd-9d59-46da-aacf-c39434a24a75",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T160938Z:302dbdd5-b251-405f-a625-a9cd5681b373",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005739Z:d812f4bd-9d59-46da-aacf-c39434a24a75",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5f0dafff-a1b5-4827-bcbf-94204b4911e4?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bebab8a7-66e9-4c81-a169-e401db5240d2?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6707,7 +6135,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:10:08 GMT",
+ "Date": "Wed, 27 Jul 2022 00:58:09 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6715,31 +6143,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6682eff9-3dce-4bd7-8ad1-13d3040c5b23",
+ "x-ms-correlation-request-id": "25237206-e716-4fc8-b5c8-047ff9cf1547",
"x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T161008Z:6682eff9-3dce-4bd7-8ad1-13d3040c5b23",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005810Z:25237206-e716-4fc8-b5c8-047ff9cf1547",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5f0dafff-a1b5-4827-bcbf-94204b4911e4",
- "name": "5f0dafff-a1b5-4827-bcbf-94204b4911e4",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bebab8a7-66e9-4c81-a169-e401db5240d2",
+ "name": "bebab8a7-66e9-4c81-a169-e401db5240d2",
"status": "Succeeded",
- "startTime": "2022-05-25T16:09:38.3868668Z",
- "endTime": "2022-05-25T16:09:42.3765695Z",
+ "startTime": "2022-07-27T00:57:39.3292198Z",
+ "endTime": "2022-07-27T00:57:39.6886076Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/5f0dafff-a1b5-4827-bcbf-94204b4911e4?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bebab8a7-66e9-4c81-a169-e401db5240d2?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6747,7 +6175,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:10:08 GMT",
+ "Date": "Wed, 27 Jul 2022 00:58:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6755,211 +6183,203 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ddeaa66b-e828-4fec-949f-f67570c43154",
+ "x-ms-correlation-request-id": "32f2d9b9-f031-4f9e-a1aa-f646e5cd93f0",
"x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T161009Z:ddeaa66b-e828-4fec-949f-f67570c43154",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005810Z:32f2d9b9-f031-4f9e-a1aa-f646e5cd93f0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T16%3A09%3A38.3849708Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T00%3A57%3A39.3177449Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:41:56.5145443Z"
+ "CreatedOnDate": "2022-07-27T00:37:44.0086657Z"
},
"properties": {
- "poolId": "16e630b1-cd82-d9ed-6ddd-33a0440b669e",
+ "poolId": "7784544a-7292-c5a0-a13c-fb3c93d6102f",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1",
"qosType": "Auto",
"totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-25T15:41:58.2583659Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:41:58.2583659Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Wed, 25 May 2022 16:10:19 GMT",
+ "Date": "Wed, 27 Jul 2022 00:58:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0e4226ad-085d-4cb7-a544-f704178b3d43",
+ "x-ms-correlation-request-id": "14c6c642-cf13-4964-8934-be76a84f8708",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T161019Z:0e4226ad-085d-4cb7-a544-f704178b3d43"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005821Z:14c6c642-cf13-4964-8934-be76a84f8708"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Wed, 25 May 2022 16:10:29 GMT",
+ "Date": "Wed, 27 Jul 2022 00:58:31 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ad38cf92-7318-4b21-8427-054668af9f88",
+ "x-ms-correlation-request-id": "537ac231-198e-4b13-acf5-44023192cd90",
"x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T161029Z:ad38cf92-7318-4b21-8427-054668af9f88"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005831Z:537ac231-198e-4b13-acf5-44023192cd90"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Wed, 25 May 2022 16:10:39 GMT",
+ "Date": "Wed, 27 Jul 2022 00:58:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f97f4cd5-e909-4959-8975-9a2a2c429b69",
+ "x-ms-correlation-request-id": "47d40a5b-9a5b-42d0-befb-a4ccfbc17987",
"x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T161039Z:f97f4cd5-e909-4959-8975-9a2a2c429b69"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005841Z:47d40a5b-9a5b-42d0-befb-a4ccfbc17987"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Wed, 25 May 2022 16:10:56 GMT",
+ "Date": "Wed, 27 Jul 2022 00:58:52 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "881e3959-7306-438d-adc4-065819eeb7e2",
+ "x-ms-correlation-request-id": "de61ba65-4544-4200-b7f2-82d7ef2e5857",
"x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T161056Z:881e3959-7306-438d-adc4-065819eeb7e2"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005852Z:de61ba65-4544-4200-b7f2-82d7ef2e5857"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:11:06 GMT",
+ "Date": "Wed, 27 Jul 2022 00:59:02 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3a65be74-0b11-4229-b7d1-4c2c4ed7fad4",
+ "x-ms-correlation-request-id": "b5dd870b-2324-4d95-b8e2-965c9dbab670",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T161106Z:3a65be74-0b11-4229-b7d1-4c2c4ed7fad4"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005902Z:b5dd870b-2324-4d95-b8e2-965c9dbab670"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/b8b8d3f5-4d24-4fe9-8b7a-6af0d7488cc0?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ecd77e2d-3857-464c-9513-d0a4688705c5?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Wed, 25 May 2022 16:11:07 GMT",
+ "Date": "Wed, 27 Jul 2022 00:59:03 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b8b8d3f5-4d24-4fe9-8b7a-6af0d7488cc0?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ecd77e2d-3857-464c-9513-d0a4688705c5?api-version=2022-03-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": "f54b4f3d-776f-4cb1-9add-f86dc773eeb4",
+ "x-ms-correlation-request-id": "4d6e1d82-0944-4cd4-a474-a1e9eaf04dbf",
"x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T161108Z:f54b4f3d-776f-4cb1-9add-f86dc773eeb4",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005903Z:4d6e1d82-0944-4cd4-a474-a1e9eaf04dbf",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b8b8d3f5-4d24-4fe9-8b7a-6af0d7488cc0?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ecd77e2d-3857-464c-9513-d0a4688705c5?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6967,7 +6387,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:11:37 GMT",
+ "Date": "Wed, 27 Jul 2022 00:59:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6975,31 +6395,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7b6033f0-4639-4cfe-b26c-d9947cf532cf",
+ "x-ms-correlation-request-id": "a32f3c21-5d8c-4475-aff6-da00d3f22a09",
"x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T161138Z:7b6033f0-4639-4cfe-b26c-d9947cf532cf",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005934Z:a32f3c21-5d8c-4475-aff6-da00d3f22a09",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b8b8d3f5-4d24-4fe9-8b7a-6af0d7488cc0",
- "name": "b8b8d3f5-4d24-4fe9-8b7a-6af0d7488cc0",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ecd77e2d-3857-464c-9513-d0a4688705c5",
+ "name": "ecd77e2d-3857-464c-9513-d0a4688705c5",
"status": "Succeeded",
- "startTime": "2022-05-25T16:11:08.0139811Z",
- "endTime": "2022-05-25T16:11:08.0451738Z",
+ "startTime": "2022-07-27T00:59:03.7388024Z",
+ "endTime": "2022-07-27T00:59:03.7700428Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b8b8d3f5-4d24-4fe9-8b7a-6af0d7488cc0?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ecd77e2d-3857-464c-9513-d0a4688705c5?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -7007,7 +6427,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:11:37 GMT",
+ "Date": "Wed, 27 Jul 2022 00:59:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -7015,19 +6435,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9af6c2c0-968e-431f-bfdc-e0eec454a7b4",
+ "x-ms-correlation-request-id": "4aa72d2e-0424-44ba-b13a-35222025a577",
"x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T161138Z:9af6c2c0-968e-431f-bfdc-e0eec454a7b4",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005934Z:4aa72d2e-0424-44ba-b13a-35222025a577",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-25T16%3A11%3A08.0125266Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T00%3A59%3A03.7287075Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-25T15:41:20.2068696Z"
+ "CreatedOnDate": "2022-07-27T00:37:08.7434159Z"
},
"properties": {
"encryption": {
@@ -7038,41 +6458,41 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-25T15:41:23.5236398Z",
+ "createdAt": "2022-07-27T00:37:10.5763136Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-25T15:41:23.5236398Z"
+ "lastModifiedAt": "2022-07-27T00:37:10.5763136Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 25 May 2022 16:11:40 GMT",
+ "Date": "Wed, 27 Jul 2022 00:59:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "23057f2d-8092-4cd3-b537-aaecbb995347",
+ "x-ms-correlation-request-id": "506599c4-be12-41af-ae4b-261a066f4708",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220525T161140Z:23057f2d-8092-4cd3-b537-aaecbb995347"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T005934Z:506599c4-be12-41af-ae4b-261a066f4708"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
}
}
}
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 b9814bc0fe4c..bd55c752add8 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 27 May 2022 09:44:26 GMT",
+ "Date": "Tue, 26 Jul 2022 12:00: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.12821.9 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 27 May 2022 09:44:26 GMT",
+ "Date": "Tue, 26 Jul 2022 12:00: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.12794.7 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13201.7 - NEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "440e9f32-5a0a-40e4-93e2-027d7181c08d",
+ "client-request-id": "1e164679-d18d-43f8-b01d-d7678670b147",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "440e9f32-5a0a-40e4-93e2-027d7181c08d",
+ "client-request-id": "1e164679-d18d-43f8-b01d-d7678670b147",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:44:26 GMT",
+ "Date": "Tue, 26 Jul 2022 12:00:41 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12821.9 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - WEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,67 +213,79 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "93",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2",
+ "properties": {
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ }
+ }
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/21b17f11-b003-4f13-8f30-f41a52fb53e4?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/02e9d6ac-fd7b-414b-b9f6-44f13f20a2c9?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Length": "699",
+ "Content-Length": "746",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:44:36 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-27T09%3A44%3A36.1336789Z\u0027\u0022",
+ "Date": "Tue, 26 Jul 2022 12:00:49 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Retry-After": "3",
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4d9a285b-ffd1-4f8d-8aca-843aa08ac7f2",
+ "x-ms-arm-service-request-id": "497e4321-c0c7-4f67-bead-0e72f360f23c",
+ "x-ms-correlation-request-id": "c7e2fc1d-265c-4dc3-8142-93b5a0141f00",
"x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T094437Z:4d9a285b-ffd1-4f8d-8aca-843aa08ac7f2",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120049Z:c7e2fc1d-265c-4dc3-8142-93b5a0141f00"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
- "type": "Microsoft.NetApp/netAppAccounts",
- "etag": "W/\u0022datetime\u00272022-05-27T09%3A44%3A36.1336789Z\u0027\u0022",
- "location": "southcentralusstage",
+ "name": "sdk-python-tests-vnet-westus2-c2b62691",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691",
+ "etag": "W/\u002221eeca47-ef68-4f3b-a396-f061a03daa64\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-27T09:44:31.8400694Z"
+ "CreatedOnDate": "2022-07-26T12:00:43.3834654Z"
},
"properties": {
- "provisioningState": "Creating"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T09:44:35.3589591Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T09:44:35.3589591Z"
+ "provisioningState": "Updating",
+ "resourceGuid": "291e6e44-3a0e-4b02-99c7-8ca27ca10ea1",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/21b17f11-b003-4f13-8f30-f41a52fb53e4?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/02e9d6ac-fd7b-414b-b9f6-44f13f20a2c9?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,39 +293,34 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:45:06 GMT",
+ "Date": "Tue, 26 Jul 2022 12:00:52 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "4695ebe7-7a15-4b15-b685-a415535f5942",
+ "x-ms-arm-service-request-id": "7f230a74-2027-4ab1-bb19-16a1de8fa7b4",
+ "x-ms-correlation-request-id": "8c5d0eaa-3334-4bde-a110-65f708d6ede9",
"x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T094507Z:4695ebe7-7a15-4b15-b685-a415535f5942",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120052Z:8c5d0eaa-3334-4bde-a110-65f708d6ede9"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/21b17f11-b003-4f13-8f30-f41a52fb53e4",
- "name": "21b17f11-b003-4f13-8f30-f41a52fb53e4",
- "status": "Succeeded",
- "startTime": "2022-05-27T09:44:36.1215897Z",
- "endTime": "2022-05-27T09:44:36.1684614Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
- }
+ "status": "Succeeded"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,137 +328,129 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:45:07 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-27T09%3A44%3A36.1627858Z\u0027\u0022",
+ "Date": "Tue, 26 Jul 2022 12:00:52 GMT",
+ "ETag": "W/\u00221f046dc8-8dc1-43db-bfd8-6ac6645bc4a0\u0022",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "52180915-afb3-48f4-9205-568c25c6c386",
+ "x-ms-arm-service-request-id": "f2a8dd8f-ca25-416f-b48f-c5d445ab1b8e",
+ "x-ms-correlation-request-id": "ba390dac-1608-4474-aa96-0e33cbe81d1f",
"x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T094508Z:52180915-afb3-48f4-9205-568c25c6c386",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120053Z:ba390dac-1608-4474-aa96-0e33cbe81d1f"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
- "type": "Microsoft.NetApp/netAppAccounts",
- "etag": "W/\u0022datetime\u00272022-05-27T09%3A44%3A36.1627858Z\u0027\u0022",
- "location": "southcentralusstage",
+ "name": "sdk-python-tests-vnet-westus2-c2b62691",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691",
+ "etag": "W/\u00221f046dc8-8dc1-43db-bfd8-6ac6645bc4a0\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-27T09:44:31.8400694Z"
+ "CreatedOnDate": "2022-07-26T12:00:43.3834654Z"
},
"properties": {
- "activeDirectories": [
- {
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
- "password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
- "status": "Created",
- "smbServerName": "testsmb",
- "organizationalUnit": "CN=Computers",
- "aesEncryption": false,
- "ldapSigning": false,
- "ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
- "encryptDCConnections": false,
- "ldapSearchScope": {}
- }
- ],
- "encryption": {
- "keySource": "Microsoft.NetApp"
+ "provisioningState": "Succeeded",
+ "resourceGuid": "291e6e44-3a0e-4b02-99c7-8ca27ca10ea1",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
},
- "provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T09:44:35.3589591Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T09:44:35.3589591Z"
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "150",
+ "Content-Length": "151",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
"properties": {
- "size": 4398046511104,
- "serviceLevel": "Premium",
- "coolAccess": false,
- "encryptionType": "Single"
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "properties": {
+ "serviceName": "Microsoft.Netapp/volumes"
+ }
+ }
+ ]
}
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/50707ba5-2de3-4e26-8838-ba734068a201?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7ea6fd57-16ec-40a7-bbfc-99ddd1f6bc51?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Length": "917",
+ "Content-Length": "1318",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:45:11 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-27T09%3A45%3A10.7285818Z\u0027\u0022",
+ "Date": "Tue, 26 Jul 2022 12:00:53 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Retry-After": "3",
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3d440f0b-cbf1-4aa5-af51-faaf07901522",
+ "x-ms-arm-service-request-id": "ad11ec2e-e6a1-4d7a-84e0-06ffad630642",
+ "x-ms-correlation-request-id": "d4bdc719-55dd-4465-9c66-fbe4f978cae4",
"x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T094511Z:3d440f0b-cbf1-4aa5-af51-faaf07901522",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120053Z:d4bdc719-55dd-4465-9c66-fbe4f978cae4"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools",
- "etag": "W/\u0022datetime\u00272022-05-27T09%3A45%3A10.7285818Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-27T09:45:08.3108425Z"
- },
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default",
+ "etag": "W/\u00221bbaf4d9-9ea7-4cfd-a6fb-0cf118143262\u0022",
"properties": {
- "serviceLevel": "Premium",
- "size": 4398046511104,
- "totalThroughputMibps": 0.0,
- "utilizedThroughputMibps": 0.0,
- "encryptionType": "Single",
- "coolAccess": false,
- "provisioningState": "Creating"
+ "provisioningState": "Updating",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u00221bbaf4d9-9ea7-4cfd-a6fb-0cf118143262\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
},
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T09:45:10.3166089Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T09:45:10.3166089Z"
- }
+ "type": "Microsoft.Network/virtualNetworks/subnets"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/50707ba5-2de3-4e26-8838-ba734068a201?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7ea6fd57-16ec-40a7-bbfc-99ddd1f6bc51?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -458,39 +458,34 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:45:41 GMT",
+ "Date": "Tue, 26 Jul 2022 12:00:56 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "e6ba7688-b7cf-4b17-ad56-ffd1d5f40bf7",
+ "x-ms-arm-service-request-id": "547272d5-c303-46e8-a99e-5bbd2fbbed73",
+ "x-ms-correlation-request-id": "9f7018ec-eb08-4b2f-9819-f8c954cf9129",
"x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T094542Z:e6ba7688-b7cf-4b17-ad56-ffd1d5f40bf7",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120056Z:9f7018ec-eb08-4b2f-9819-f8c954cf9129"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/50707ba5-2de3-4e26-8838-ba734068a201",
- "name": "50707ba5-2de3-4e26-8838-ba734068a201",
- "status": "Succeeded",
- "startTime": "2022-05-27T09:45:10.7195399Z",
- "endTime": "2022-05-27T09:45:11.313289Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
- }
+ "status": "Succeeded"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -498,1198 +493,327 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:45:41 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-27T09%3A45%3A11.3136371Z\u0027\u0022",
+ "Date": "Tue, 26 Jul 2022 12:00:56 GMT",
+ "ETag": "W/\u0022d2c65afb-42fa-4c98-91cd-fd6a3f288367\u0022",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "16acdb56-bb09-4893-a167-996a22550c5f",
+ "x-ms-arm-service-request-id": "46bdefae-51bc-40bb-9ffc-cc0a874d6d08",
+ "x-ms-correlation-request-id": "4f22a133-8082-478f-91a6-86bf1081901f",
"x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T094542Z:16acdb56-bb09-4893-a167-996a22550c5f",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools",
- "etag": "W/\u0022datetime\u00272022-05-27T09%3A45%3A11.3136371Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-27T09:45:08.3108425Z"
- },
- "properties": {
- "poolId": "22e59147-e7b8-eb92-36ea-c18edabf1274",
- "serviceLevel": "Premium",
- "size": 4398046511104,
- "qosType": "Auto",
- "totalThroughputMibps": 256.0,
- "utilizedThroughputMibps": 0.0,
- "encryptionType": "Single",
- "coolAccess": false,
- "provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T09:45:10.3166089Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T09:45:10.3166089Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "PUT",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "800",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
- },
- "RequestBody": {
- "location": "southcentralusstage",
- "properties": {
- "creationToken": "sdk-py-tests-vol-1",
- "serviceLevel": "Premium",
- "usageThreshold": 107374182400,
- "protocolTypes": [
- "NFSv3"
- ],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "coolAccess": false,
- "unixPermissions": "0770",
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled"
- }
- },
- "StatusCode": 201,
- "ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/efe5571b-68ff-44a9-b17c-a8a6b876da37?api-version=2022-01-01",
- "Cache-Control": "no-cache",
- "Content-Length": "1567",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:45:56 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-27T09%3A45%3A56.2728726Z\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": "29563f69-b74e-4158-b081-afa04af26fb9",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T094557Z:29563f69-b74e-4158-b081-afa04af26fb9",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120057Z:4f22a133-8082-478f-91a6-86bf1081901f"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-27T09%3A45%3A56.2728726Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-27T09:45:52.7320379Z"
- },
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default",
+ "etag": "W/\u0022d2c65afb-42fa-4c98-91cd-fd6a3f288367\u0022",
"properties": {
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "usageThreshold": 107374182400,
- "protocolTypes": [
- "NFSv3"
+ "provisioningState": "Succeeded",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u0022d2c65afb-42fa-4c98-91cd-fd6a3f288367\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Creating"
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
},
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T09:45:53.9904806Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T09:45:53.9904806Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/efe5571b-68ff-44a9-b17c-a8a6b876da37?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 09:46: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": "1fe02549-3f48-46cf-8f8e-af15259b6a4e",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T094627Z:1fe02549-3f48-46cf-8f8e-af15259b6a4e",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/efe5571b-68ff-44a9-b17c-a8a6b876da37",
- "name": "efe5571b-68ff-44a9-b17c-a8a6b876da37",
- "status": "Creating",
- "startTime": "2022-05-27T09:45:56.2588483Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
+ "type": "Microsoft.Network/virtualNetworks/subnets"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/efe5571b-68ff-44a9-b17c-a8a6b876da37?api-version=2022-01-01",
+ "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-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "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": "Fri, 27 May 2022 09:46:57 GMT",
- "Expires": "-1",
- "Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Date": "Tue, 26 Jul 2022 12:00:57 GMT",
+ "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
+ "Set-Cookie": "[set-cookie;]",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
- "Transfer-Encoding": "chunked",
- "Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0e43c1bb-a9bd-481b-ac42-179ae8aaa0ac",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T094657Z:0e43c1bb-a9bd-481b-ac42-179ae8aaa0ac",
- "X-Powered-By": "ASP.NET"
+ "x-ms-ests-server": "2.1.13355.6 - NEULR2 ProdSlices",
+ "X-XSS-Protection": "0"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/efe5571b-68ff-44a9-b17c-a8a6b876da37",
- "name": "efe5571b-68ff-44a9-b17c-a8a6b876da37",
- "status": "Creating",
- "startTime": "2022-05-27T09:45:56.2588483Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/efe5571b-68ff-44a9-b17c-a8a6b876da37?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 09:47: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": "31bf6367-e16b-42a8-8f80-57a55da0fb81",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T094727Z:31bf6367-e16b-42a8-8f80-57a55da0fb81",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/efe5571b-68ff-44a9-b17c-a8a6b876da37",
- "name": "efe5571b-68ff-44a9-b17c-a8a6b876da37",
- "status": "Creating",
- "startTime": "2022-05-27T09:45:56.2588483Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/efe5571b-68ff-44a9-b17c-a8a6b876da37?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 09:47: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": "c992b3f5-0033-4bb8-94e3-2ceb243097d4",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T094758Z:c992b3f5-0033-4bb8-94e3-2ceb243097d4",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/efe5571b-68ff-44a9-b17c-a8a6b876da37",
- "name": "efe5571b-68ff-44a9-b17c-a8a6b876da37",
- "status": "Creating",
- "startTime": "2022-05-27T09:45:56.2588483Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/efe5571b-68ff-44a9-b17c-a8a6b876da37?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 09:48: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": "f2a9611b-cfe5-4c6d-bc14-a54f59126db2",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T094828Z:f2a9611b-cfe5-4c6d-bc14-a54f59126db2",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/efe5571b-68ff-44a9-b17c-a8a6b876da37",
- "name": "efe5571b-68ff-44a9-b17c-a8a6b876da37",
- "status": "Creating",
- "startTime": "2022-05-27T09:45:56.2588483Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/efe5571b-68ff-44a9-b17c-a8a6b876da37?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 09:48: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": "e048f135-9d52-40f8-8beb-19734907eb86",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T094858Z:e048f135-9d52-40f8-8beb-19734907eb86",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/efe5571b-68ff-44a9-b17c-a8a6b876da37",
- "name": "efe5571b-68ff-44a9-b17c-a8a6b876da37",
- "status": "Creating",
- "startTime": "2022-05-27T09:45:56.2588483Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/efe5571b-68ff-44a9-b17c-a8a6b876da37?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 09:49: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": "5e0077d7-1bb8-4fd6-b817-7d52b40d9a4a",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T094928Z:5e0077d7-1bb8-4fd6-b817-7d52b40d9a4a",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/efe5571b-68ff-44a9-b17c-a8a6b876da37",
- "name": "efe5571b-68ff-44a9-b17c-a8a6b876da37",
- "status": "Creating",
- "startTime": "2022-05-27T09:45:56.2588483Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/efe5571b-68ff-44a9-b17c-a8a6b876da37?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 09:49: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": "6c86a3ba-1fcd-45fa-81f7-2bc29e02bcd5",
- "x-ms-ratelimit-remaining-subscription-reads": "11988",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T094959Z:6c86a3ba-1fcd-45fa-81f7-2bc29e02bcd5",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/efe5571b-68ff-44a9-b17c-a8a6b876da37",
- "name": "efe5571b-68ff-44a9-b17c-a8a6b876da37",
- "status": "Creating",
- "startTime": "2022-05-27T09:45:56.2588483Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/efe5571b-68ff-44a9-b17c-a8a6b876da37?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 09:50: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": "418ec29c-1c00-40b0-92ff-f266606e74a0",
- "x-ms-ratelimit-remaining-subscription-reads": "11987",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095029Z:418ec29c-1c00-40b0-92ff-f266606e74a0",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/efe5571b-68ff-44a9-b17c-a8a6b876da37",
- "name": "efe5571b-68ff-44a9-b17c-a8a6b876da37",
- "status": "Succeeded",
- "startTime": "2022-05-27T09:45:56.2588483Z",
- "endTime": "2022-05-27T09:49:59.4285593Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 09:50:29 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-27T09%3A49%3A59.4274452Z\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": "4d30d7fb-c635-4057-b9ea-c9af2a242c44",
- "x-ms-ratelimit-remaining-subscription-reads": "11986",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095030Z:4d30d7fb-c635-4057-b9ea-c9af2a242c44",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-27T09%3A49%3A59.4274452Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-27T09:45:52.7320379Z"
- },
- "properties": {
- "fileSystemId": "e48d4122-0a8d-b9fb-adc9-0a56ebd2b720",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_93ade68ee53011e9a696c27beff6b5ea_69e392be",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "e48d4122-0a8d-b9fb-adc9-0a56ebd2b720",
- "fileSystemId": "e48d4122-0a8d-b9fb-adc9-0a56ebd2b720",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.25,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true,
- "provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T09:45:53.9904806Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T09:45:53.9904806Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 09:50:40 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-27T09%3A49%3A59.4274452Z\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": "c105dfd4-ef6e-4e88-927d-ff24257fb0cd",
- "x-ms-ratelimit-remaining-subscription-reads": "11985",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095040Z:c105dfd4-ef6e-4e88-927d-ff24257fb0cd",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-27T09%3A49%3A59.4274452Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-27T09:45:52.7320379Z"
- },
- "properties": {
- "fileSystemId": "e48d4122-0a8d-b9fb-adc9-0a56ebd2b720",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_93ade68ee53011e9a696c27beff6b5ea_69e392be",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "e48d4122-0a8d-b9fb-adc9-0a56ebd2b720",
- "fileSystemId": "e48d4122-0a8d-b9fb-adc9-0a56ebd2b720",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.25,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true,
- "provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T09:45:53.9904806Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T09:45:53.9904806Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 09:50: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": "b3cc4486-0be0-4d81-b2e1-28b5811104a4",
- "x-ms-ratelimit-remaining-subscription-reads": "11984",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095041Z:b3cc4486-0be0-4d81-b2e1-28b5811104a4",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "value": [
- {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "name": "sdk-py-tests-acc-1/cbsvault",
- "type": "Microsoft.NetApp/netAppAccounts/vaults",
- "properties": {}
- }
- ]
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "PATCH",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "401",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "backupEnabled": true
- }
- },
- "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/southcentralusstage/operationResults/f63f8443-4d03-472c-9620-c7136a6a2697?api-version=2022-01-01",
- "Cache-Control": "no-cache",
- "Content-Length": "2385",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:50:41 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-27T09%3A50%3A41.738177Z\u0027\u0022",
- "Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f63f8443-4d03-472c-9620-c7136a6a2697?api-version=2022-01-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": "77cccab5-0154-4f95-9477-36b98188f0fc",
- "x-ms-ratelimit-remaining-subscription-writes": "1196",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095041Z:77cccab5-0154-4f95-9477-36b98188f0fc",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-27T09%3A50%3A41.738177Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-27T09:45:52.7320379Z"
- },
- "properties": {
- "provisioningState": "Patching",
- "fileSystemId": "e48d4122-0a8d-b9fb-adc9-0a56ebd2b720",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_93ade68ee53011e9a696c27beff6b5ea_69e392be",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "e48d4122-0a8d-b9fb-adc9-0a56ebd2b720",
- "fileSystemId": "e48d4122-0a8d-b9fb-adc9-0a56ebd2b720",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.25,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T09:45:53.9904806Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T09:45:53.9904806Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f63f8443-4d03-472c-9620-c7136a6a2697?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 09:51: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": "631123ce-649b-419e-bd87-6f530d5c7ffa",
- "x-ms-ratelimit-remaining-subscription-reads": "11983",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095112Z:631123ce-649b-419e-bd87-6f530d5c7ffa",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f63f8443-4d03-472c-9620-c7136a6a2697",
- "name": "f63f8443-4d03-472c-9620-c7136a6a2697",
- "status": "Succeeded",
- "startTime": "2022-05-27T09:50:41.7420227Z",
- "endTime": "2022-05-27T09:50:54.445495Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f63f8443-4d03-472c-9620-c7136a6a2697?api-version=2022-01-01\u0026operationResultResponseType=Location",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 09:51: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": "ad2aae73-6bb2-49d8-97fa-948ffbac40d2",
- "x-ms-ratelimit-remaining-subscription-reads": "11982",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095112Z:ad2aae73-6bb2-49d8-97fa-948ffbac40d2",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-27T09%3A50%3A54.4438908Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-27T09:50:41.3237230Z"
- },
- "properties": {
- "dataProtection": {
- "backup": {
- "backupEnabled": true,
- "policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
- }
- },
- "fileSystemId": "e48d4122-0a8d-b9fb-adc9-0a56ebd2b720",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
- "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_93ade68ee53011e9a696c27beff6b5ea_69e392be",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "22e59147-e7b8-eb92-36ea-c18edabf1274",
- "mountTargets": [
- {
- "provisioningState": "",
- "mountTargetId": "e48d4122-0a8d-b9fb-adc9-0a56ebd2b720",
- "fileSystemId": "e48d4122-0a8d-b9fb-adc9-0a56ebd2b720",
- "startIp": "",
- "endIp": "",
- "gateway": "",
- "netmask": "",
- "subnet": "",
- "ipAddress": "10.7.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": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T09:45:53.9904806Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T09:50:41.6187182Z"
- }
+ "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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "PUT",
+ "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",
- "Content-Length": "81",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
- },
- "RequestBody": {
- "location": "southcentralusstage",
- "properties": {
- "useExistingSnapshot": false
- }
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "StatusCode": 201,
+ "RequestBody": null,
+ "StatusCode": 200,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/381a4434-2892-4c87-970d-ee67c7f0d527?api-version=2022-01-01",
- "Cache-Control": "no-cache",
- "Content-Length": "523",
+ "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": "Fri, 27 May 2022 09:51:12 GMT",
- "Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/381a4434-2892-4c87-970d-ee67c7f0d527?api-version=2022-01-01\u0026operationResultResponseType=Location",
- "Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Date": "Tue, 26 Jul 2022 12:00: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-correlation-request-id": "9e51f797-3393-4451-829b-64c86209d7be",
- "x-ms-ratelimit-remaining-subscription-writes": "1195",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095112Z:9e51f797-3393-4451-829b-64c86209d7be",
- "X-Powered-By": "ASP.NET"
+ "x-ms-ests-server": "2.1.13201.7 - NEULR2 ProdSlices",
+ "X-XSS-Protection": "0"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "provisioningState": "Creating",
- "useExistingSnapshot": false
- }
+ "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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/381a4434-2892-4c87-970d-ee67c7f0d527?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/oauth2/v2.0/token",
+ "RequestMethod": "POST",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
+ "client-request-id": "6952c0a0-ce36-4dcc-94b1-34a407b4c131",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "281",
+ "Content-Type": "application/x-www-form-urlencoded",
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.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.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
- "RequestBody": null,
+ "RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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-cache",
- "Content-Encoding": "gzip",
+ "Cache-Control": "no-store, no-cache",
+ "client-request-id": "6952c0a0-ce36-4dcc-94b1-34a407b4c131",
+ "Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:51:42 GMT",
+ "Date": "Tue, 26 Jul 2022 12:00:57 GMT",
"Expires": "-1",
+ "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Set-Cookie": "[set-cookie;]",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
- "Transfer-Encoding": "chunked",
- "Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "abd7b6f5-a184-47b0-8d18-6f395015c986",
- "x-ms-ratelimit-remaining-subscription-reads": "11981",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095143Z:abd7b6f5-a184-47b0-8d18-6f395015c986",
- "X-Powered-By": "ASP.NET"
+ "x-ms-clitelem": "1,0,0,,",
+ "x-ms-ests-server": "2.1.13355.6 - WEULR1 ProdSlices",
+ "X-XSS-Protection": "0"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/381a4434-2892-4c87-970d-ee67c7f0d527",
- "name": "381a4434-2892-4c87-970d-ee67c7f0d527",
- "status": "Succeeded",
- "startTime": "2022-05-27T09:51:12.7457387Z",
- "endTime": "2022-05-27T09:51:14.995753Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1"
- }
+ "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/southcentralusstage/operationResults/381a4434-2892-4c87-970d-ee67c7f0d527?api-version=2022-01-01\u0026operationResultResponseType=Location",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691?api-version=2022-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "23",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "RequestBody": {
+ "location": "westus2"
},
- "RequestBody": null,
"StatusCode": 201,
"ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bfd20289-1dac-4f77-92c9-33a4555bb48e?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "730",
+ "Content-Length": "701",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:51:42 GMT",
+ "Date": "Tue, 26 Jul 2022 12:01:01 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T12%3A01%3A00.922995Z\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": "cec93d4e-dc3a-4a51-ba00-b74ffe4ab4fc",
- "x-ms-ratelimit-remaining-subscription-reads": "11980",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095143Z:cec93d4e-dc3a-4a51-ba00-b74ffe4ab4fc",
+ "x-ms-correlation-request-id": "64205769-a4db-4330-823e-1a772ee4157e",
+ "x-ms-ratelimit-remaining-subscription-writes": "1197",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120102Z:64205769-a4db-4330-823e-1a772ee4157e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "etag": "5/27/2022 9:51:14 AM",
- "location": "",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T12%3A01%3A00.922995Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T12:00:58.6290551Z"
+ },
"properties": {
- "fileSystemId": "e48d4122-0a8d-b9fb-adc9-0a56ebd2b720",
- "creationDate": "0001-01-01T00:00:00Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
- "size": 0,
- "backupType": "Manual",
- "failureReason": "None",
- "useExistingSnapshot": false,
"provisioningState": "Creating"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-26T12:00:59.9840318Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-26T12:00:59.9840318Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bfd20289-1dac-4f77-92c9-33a4555bb48e?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1697,7 +821,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:51:53 GMT",
+ "Date": "Tue, 26 Jul 2022 12:01:31 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1705,36 +829,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b51fc58d-5a23-456c-8ac9-8ad18325e630",
- "x-ms-ratelimit-remaining-subscription-reads": "11979",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095154Z:b51fc58d-5a23-456c-8ac9-8ad18325e630",
+ "x-ms-correlation-request-id": "20481b69-40c9-4e7b-9e29-d18c3f8d9fe8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120132Z:20481b69-40c9-4e7b-9e29-d18c3f8d9fe8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bfd20289-1dac-4f77-92c9-33a4555bb48e",
+ "name": "bfd20289-1dac-4f77-92c9-33a4555bb48e",
+ "status": "Succeeded",
+ "startTime": "2022-07-26T12:01:00.9309074Z",
+ "endTime": "2022-07-26T12:01:00.9777834Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1742,7 +861,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:52:04 GMT",
+ "Date": "Tue, 26 Jul 2022 12:01:32 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T12%3A01%3A00.9814295Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1750,81 +870,128 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "37ae9bbf-f6c0-4411-b43d-9c807e9bb89b",
- "x-ms-ratelimit-remaining-subscription-reads": "11978",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095205Z:37ae9bbf-f6c0-4411-b43d-9c807e9bb89b",
+ "x-ms-correlation-request-id": "e82cecf6-a145-449d-898e-5e3d36275c26",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120133Z:e82cecf6-a145-449d-898e-5e3d36275c26",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T12%3A01%3A00.9814295Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T12:00:58.6290551Z"
+ },
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "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"
+ },
+ "provisioningState": "Succeeded"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-26T12:00:59.9840318Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-26T12:00:59.9840318Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "138",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "RequestBody": null,
- "StatusCode": 200,
+ "RequestBody": {
+ "location": "westus2",
+ "properties": {
+ "size": 4398046511104,
+ "serviceLevel": "Premium",
+ "coolAccess": false,
+ "encryptionType": "Single"
+ }
+ },
+ "StatusCode": 201,
"ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/14db6378-9f06-485e-873d-cb6810f515c8?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "918",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:52:15 GMT",
+ "Date": "Tue, 26 Jul 2022 12:01:35 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T12%3A01%3A35.0194424Z\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": "0f48299c-9f60-415a-9599-4a300f37e486",
- "x-ms-ratelimit-remaining-subscription-reads": "11977",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095215Z:0f48299c-9f60-415a-9599-4a300f37e486",
+ "x-ms-correlation-request-id": "499f190d-135a-4e34-9f4c-2608b9f02b05",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120136Z:499f190d-135a-4e34-9f4c-2608b9f02b05",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T12%3A01%3A35.0194424Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T12:01:33.4451397Z"
+ },
+ "properties": {
+ "serviceLevel": "Premium",
+ "size": 4398046511104,
+ "totalThroughputMibps": 0.0,
+ "utilizedThroughputMibps": 0.0,
+ "encryptionType": "Single",
+ "coolAccess": false,
+ "provisioningState": "Creating"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-26T12:01:34.8398372Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-26T12:01:34.8398372Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/14db6378-9f06-485e-873d-cb6810f515c8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1832,7 +999,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:52:25 GMT",
+ "Date": "Tue, 26 Jul 2022 12:02:06 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1840,36 +1007,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e7349dad-d478-435e-85ef-23f0ef0ad18f",
- "x-ms-ratelimit-remaining-subscription-reads": "11976",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095226Z:e7349dad-d478-435e-85ef-23f0ef0ad18f",
+ "x-ms-correlation-request-id": "e8833a5b-928f-4fd2-8827-e8d14cc26769",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120206Z:e8833a5b-928f-4fd2-8827-e8d14cc26769",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/14db6378-9f06-485e-873d-cb6810f515c8",
+ "name": "14db6378-9f06-485e-873d-cb6810f515c8",
+ "status": "Succeeded",
+ "startTime": "2022-07-26T12:01:35.0340583Z",
+ "endTime": "2022-07-26T12:01:35.4559279Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1877,7 +1039,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:52:37 GMT",
+ "Date": "Tue, 26 Jul 2022 12:02:06 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T12%3A01%3A35.4499869Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1885,81 +1048,140 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3e8e7038-e224-4614-8949-3dda496fe8ef",
- "x-ms-ratelimit-remaining-subscription-reads": "11975",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095238Z:3e8e7038-e224-4614-8949-3dda496fe8ef",
+ "x-ms-correlation-request-id": "605097d2-693c-449a-8d85-cec0989f7e08",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120206Z:605097d2-693c-449a-8d85-cec0989f7e08",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T12%3A01%3A35.4499869Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T12:01:33.4451397Z"
+ },
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "poolId": "06fbf305-223e-f811-62aa-98e516e57e6d",
+ "serviceLevel": "Premium",
+ "size": 4398046511104,
+ "qosType": "Auto",
+ "totalThroughputMibps": 256.0,
+ "utilizedThroughputMibps": 0.0,
+ "encryptionType": "Single",
+ "coolAccess": false,
+ "provisioningState": "Succeeded"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691?api-version=2022-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "779",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "RequestBody": null,
- "StatusCode": 200,
+ "RequestBody": {
+ "location": "westus2",
+ "properties": {
+ "creationToken": "sdk-py-tests-vol-3-c2b62691",
+ "serviceLevel": "Premium",
+ "usageThreshold": 107374182400,
+ "protocolTypes": [
+ "NFSv3"
+ ],
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default",
+ "networkFeatures": "Basic",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "coolAccess": false,
+ "unixPermissions": "0770",
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0
+ }
+ },
+ "StatusCode": 201,
"ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/241c7ae6-c602-48e3-8fd8-44a11100a716?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "1577",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:52:48 GMT",
+ "Date": "Tue, 26 Jul 2022 12:02:20 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T12%3A02%3A19.6058731Z\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": "7a86a24e-e080-4429-9eaa-c515bd883f06",
- "x-ms-ratelimit-remaining-subscription-reads": "11974",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095248Z:7a86a24e-e080-4429-9eaa-c515bd883f06",
+ "x-ms-correlation-request-id": "a3735362-4f42-4aa2-811a-5ca746773b01",
+ "x-ms-ratelimit-remaining-subscription-writes": "1195",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120220Z:a3735362-4f42-4aa2-811a-5ca746773b01",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T12%3A02%3A19.6058731Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T12:02:17.2455769Z"
+ },
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-3-c2b62691",
+ "usageThreshold": 107374182400,
+ "protocolTypes": [
+ "NFSv3"
+ ],
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default",
+ "networkFeatures": "Basic",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Creating"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-26T12:02:19.2939281Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-26T12:02:19.2939281Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/241c7ae6-c602-48e3-8fd8-44a11100a716?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1967,7 +1189,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:52:59 GMT",
+ "Date": "Tue, 26 Jul 2022 12:02:50 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1975,36 +1197,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "62632c7c-139f-4a4f-834a-bb85557e9aad",
- "x-ms-ratelimit-remaining-subscription-reads": "11973",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095259Z:62632c7c-139f-4a4f-834a-bb85557e9aad",
+ "x-ms-correlation-request-id": "a514a69b-2c1d-4c2e-91ee-1cc57b99ec20",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120250Z:a514a69b-2c1d-4c2e-91ee-1cc57b99ec20",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/241c7ae6-c602-48e3-8fd8-44a11100a716",
+ "name": "241c7ae6-c602-48e3-8fd8-44a11100a716",
+ "status": "Creating",
+ "startTime": "2022-07-26T12:02:19.6020349Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/241c7ae6-c602-48e3-8fd8-44a11100a716?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2012,7 +1229,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:53:10 GMT",
+ "Date": "Tue, 26 Jul 2022 12:03:20 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2020,36 +1237,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f9d8ac0e-4d35-41e0-90eb-b2dabd4ca369",
- "x-ms-ratelimit-remaining-subscription-reads": "11972",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095310Z:f9d8ac0e-4d35-41e0-90eb-b2dabd4ca369",
+ "x-ms-correlation-request-id": "12a2dfe7-7255-4451-a7fb-449d26df5cb5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120321Z:12a2dfe7-7255-4451-a7fb-449d26df5cb5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/241c7ae6-c602-48e3-8fd8-44a11100a716",
+ "name": "241c7ae6-c602-48e3-8fd8-44a11100a716",
+ "status": "Creating",
+ "startTime": "2022-07-26T12:02:19.6020349Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/241c7ae6-c602-48e3-8fd8-44a11100a716?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2057,7 +1269,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:53:21 GMT",
+ "Date": "Tue, 26 Jul 2022 12:03:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2065,36 +1277,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8c9270a8-f2e6-406a-98fe-296c2fb65200",
- "x-ms-ratelimit-remaining-subscription-reads": "11971",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095321Z:8c9270a8-f2e6-406a-98fe-296c2fb65200",
+ "x-ms-correlation-request-id": "db4dbe02-beb5-4417-844d-e1604b2ce758",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120351Z:db4dbe02-beb5-4417-844d-e1604b2ce758",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/241c7ae6-c602-48e3-8fd8-44a11100a716",
+ "name": "241c7ae6-c602-48e3-8fd8-44a11100a716",
+ "status": "Creating",
+ "startTime": "2022-07-26T12:02:19.6020349Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/241c7ae6-c602-48e3-8fd8-44a11100a716?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2102,7 +1309,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:53:31 GMT",
+ "Date": "Tue, 26 Jul 2022 12:04:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2110,36 +1317,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "410491f1-50d7-4acf-877f-7994e196baf7",
- "x-ms-ratelimit-remaining-subscription-reads": "11970",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095332Z:410491f1-50d7-4acf-877f-7994e196baf7",
+ "x-ms-correlation-request-id": "39cf70ae-a939-4b54-9906-3fb9fb7c26c3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120421Z:39cf70ae-a939-4b54-9906-3fb9fb7c26c3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/241c7ae6-c602-48e3-8fd8-44a11100a716",
+ "name": "241c7ae6-c602-48e3-8fd8-44a11100a716",
+ "status": "Creating",
+ "startTime": "2022-07-26T12:02:19.6020349Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/241c7ae6-c602-48e3-8fd8-44a11100a716?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2147,7 +1349,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:53:42 GMT",
+ "Date": "Tue, 26 Jul 2022 12:04:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2155,36 +1357,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4e8b328f-5013-4baf-83c7-70f437322325",
- "x-ms-ratelimit-remaining-subscription-reads": "11969",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095342Z:4e8b328f-5013-4baf-83c7-70f437322325",
+ "x-ms-correlation-request-id": "f721ea22-1806-405e-88a3-e095f91124c6",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120452Z:f721ea22-1806-405e-88a3-e095f91124c6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/241c7ae6-c602-48e3-8fd8-44a11100a716",
+ "name": "241c7ae6-c602-48e3-8fd8-44a11100a716",
+ "status": "Creating",
+ "startTime": "2022-07-26T12:02:19.6020349Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/241c7ae6-c602-48e3-8fd8-44a11100a716?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2192,7 +1389,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:53:53 GMT",
+ "Date": "Tue, 26 Jul 2022 12:05:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2200,36 +1397,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "31c9deb5-9007-4c77-884a-c0ddee97f706",
- "x-ms-ratelimit-remaining-subscription-reads": "11968",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095353Z:31c9deb5-9007-4c77-884a-c0ddee97f706",
+ "x-ms-correlation-request-id": "ec2e4016-9d7e-47e2-bf0d-5eacfe04501d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120522Z:ec2e4016-9d7e-47e2-bf0d-5eacfe04501d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/241c7ae6-c602-48e3-8fd8-44a11100a716",
+ "name": "241c7ae6-c602-48e3-8fd8-44a11100a716",
+ "status": "Creating",
+ "startTime": "2022-07-26T12:02:19.6020349Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/241c7ae6-c602-48e3-8fd8-44a11100a716?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2237,7 +1429,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:54:04 GMT",
+ "Date": "Tue, 26 Jul 2022 12:05:52 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2245,36 +1437,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "25ccbb10-73a2-4892-9c69-48b036445b89",
- "x-ms-ratelimit-remaining-subscription-reads": "11967",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095404Z:25ccbb10-73a2-4892-9c69-48b036445b89",
+ "x-ms-correlation-request-id": "e23092de-4039-4aee-b5b2-978e07a0b6ee",
+ "x-ms-ratelimit-remaining-subscription-reads": "11985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120552Z:e23092de-4039-4aee-b5b2-978e07a0b6ee",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/241c7ae6-c602-48e3-8fd8-44a11100a716",
+ "name": "241c7ae6-c602-48e3-8fd8-44a11100a716",
+ "status": "Creating",
+ "startTime": "2022-07-26T12:02:19.6020349Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/241c7ae6-c602-48e3-8fd8-44a11100a716?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2282,7 +1469,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:54:15 GMT",
+ "Date": "Tue, 26 Jul 2022 12:06:22 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2290,36 +1477,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1c42ddd2-0cb8-46ef-8852-aeecb1273852",
- "x-ms-ratelimit-remaining-subscription-reads": "11966",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095415Z:1c42ddd2-0cb8-46ef-8852-aeecb1273852",
+ "x-ms-correlation-request-id": "03d3c464-4fb2-4053-8709-cbd9c7c1f122",
+ "x-ms-ratelimit-remaining-subscription-reads": "11984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120623Z:03d3c464-4fb2-4053-8709-cbd9c7c1f122",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/241c7ae6-c602-48e3-8fd8-44a11100a716",
+ "name": "241c7ae6-c602-48e3-8fd8-44a11100a716",
+ "status": "Creating",
+ "startTime": "2022-07-26T12:02:19.6020349Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/241c7ae6-c602-48e3-8fd8-44a11100a716?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2327,7 +1509,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:54:25 GMT",
+ "Date": "Tue, 26 Jul 2022 12:06:53 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2335,36 +1517,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a316fc63-b85e-48f3-b7ae-d004bcd98890",
- "x-ms-ratelimit-remaining-subscription-reads": "11965",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095426Z:a316fc63-b85e-48f3-b7ae-d004bcd98890",
+ "x-ms-correlation-request-id": "4965d261-e85a-4673-af97-79c87dbcf124",
+ "x-ms-ratelimit-remaining-subscription-reads": "11983",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120653Z:4965d261-e85a-4673-af97-79c87dbcf124",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/241c7ae6-c602-48e3-8fd8-44a11100a716",
+ "name": "241c7ae6-c602-48e3-8fd8-44a11100a716",
+ "status": "Succeeded",
+ "startTime": "2022-07-26T12:02:19.6020349Z",
+ "endTime": "2022-07-26T12:06:26.7454576Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2372,7 +1549,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:54:36 GMT",
+ "Date": "Tue, 26 Jul 2022 12:06:54 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T12%3A06%3A26.7162482Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2380,36 +1558,90 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e1f4d8f3-0bd1-40da-baa2-11f0cc8b17b2",
- "x-ms-ratelimit-remaining-subscription-reads": "11964",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095437Z:e1f4d8f3-0bd1-40da-baa2-11f0cc8b17b2",
+ "x-ms-correlation-request-id": "5cc892cd-176b-4cca-ba19-097960f659e0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120654Z:5cc892cd-176b-4cca-ba19-097960f659e0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T12%3A06%3A26.7162482Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T12:02:17.2455769Z"
+ },
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "fileSystemId": "03fbe872-8e67-3c2e-524a-cffd209816b2",
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-3-c2b62691",
+ "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_856e58a8",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "03fbe872-8e67-3c2e-524a-cffd209816b2",
+ "fileSystemId": "03fbe872-8e67-3c2e-524a-cffd209816b2",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2417,7 +1649,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:54:47 GMT",
+ "Date": "Tue, 26 Jul 2022 12:07:04 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T12%3A06%3A26.7162482Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2425,36 +1658,90 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "dd60044d-3752-4306-b67e-2b6625f13d7d",
- "x-ms-ratelimit-remaining-subscription-reads": "11963",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095448Z:dd60044d-3752-4306-b67e-2b6625f13d7d",
+ "x-ms-correlation-request-id": "f3226b15-7c81-4723-928d-2febceae9933",
+ "x-ms-ratelimit-remaining-subscription-reads": "11981",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120705Z:f3226b15-7c81-4723-928d-2febceae9933",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T12%3A06%3A26.7162482Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T12:02:17.2455769Z"
+ },
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "fileSystemId": "03fbe872-8e67-3c2e-524a-cffd209816b2",
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-3-c2b62691",
+ "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_856e58a8",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "03fbe872-8e67-3c2e-524a-cffd209816b2",
+ "fileSystemId": "03fbe872-8e67-3c2e-524a-cffd209816b2",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/vaults?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2462,7 +1749,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:54:58 GMT",
+ "Date": "Tue, 26 Jul 2022 12:07:05 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2470,81 +1757,149 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3e40c20c-d486-4f3b-9a6f-2c2f97160571",
- "x-ms-ratelimit-remaining-subscription-reads": "11962",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095459Z:3e40c20c-d486-4f3b-9a6f-2c2f97160571",
+ "x-ms-correlation-request-id": "7bb5b2eb-8b6d-4ccf-82c6-fb20b9304076",
+ "x-ms-ratelimit-remaining-subscription-reads": "11980",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120705Z:7bb5b2eb-8b6d-4ccf-82c6-fb20b9304076",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
+ "value": [
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/vaults/cbsvault",
+ "name": "sdk-py-tests-acc-1-c2b62691/cbsvault",
+ "type": "Microsoft.NetApp/netAppAccounts/vaults",
+ "properties": {
+ "enabled": true,
+ "vaultId": "6130fdad-3bac-11eb-aba9-0e6a0f269857"
+ }
+ }
+ ]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691?api-version=2022-03-01",
+ "RequestMethod": "PATCH",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "408",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/vaults/cbsvault",
+ "backupEnabled": true
+ }
+ },
+ "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/13fb510d-2a9d-4d1a-9e96-7139f39683d2?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "2131",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:55:09 GMT",
+ "Date": "Tue, 26 Jul 2022 12:07:05 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T12%3A07%3A05.8750275Z\u0027\u0022",
"Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/13fb510d-2a9d-4d1a-9e96-7139f39683d2?api-version=2022-03-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": "7acf0784-8e83-4742-b012-3da09edb3cff",
- "x-ms-ratelimit-remaining-subscription-reads": "11961",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095509Z:7acf0784-8e83-4742-b012-3da09edb3cff",
+ "x-ms-correlation-request-id": "913c5437-3bf0-4eff-aa98-27e1aefadb0e",
+ "x-ms-ratelimit-remaining-subscription-writes": "1194",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120706Z:913c5437-3bf0-4eff-aa98-27e1aefadb0e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T12%3A07%3A05.8750275Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T12:02:17.2455769Z"
+ },
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "provisioningState": "Patching",
+ "fileSystemId": "03fbe872-8e67-3c2e-524a-cffd209816b2",
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-3-c2b62691",
+ "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_856e58a8",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "03fbe872-8e67-3c2e-524a-cffd209816b2",
+ "fileSystemId": "03fbe872-8e67-3c2e-524a-cffd209816b2",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/13fb510d-2a9d-4d1a-9e96-7139f39683d2?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2552,7 +1907,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:55:20 GMT",
+ "Date": "Tue, 26 Jul 2022 12:07:35 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2560,36 +1915,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e6932a81-05a1-4555-aa9c-51874bcc3fbf",
- "x-ms-ratelimit-remaining-subscription-reads": "11960",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095520Z:e6932a81-05a1-4555-aa9c-51874bcc3fbf",
+ "x-ms-correlation-request-id": "2eaaf483-8d67-4b6b-946b-7bd9cd3482a8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11979",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120736Z:2eaaf483-8d67-4b6b-946b-7bd9cd3482a8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/13fb510d-2a9d-4d1a-9e96-7139f39683d2",
+ "name": "13fb510d-2a9d-4d1a-9e96-7139f39683d2",
+ "status": "Succeeded",
+ "startTime": "2022-07-26T12:07:05.8795034Z",
+ "endTime": "2022-07-26T12:07:09.4423091Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/13fb510d-2a9d-4d1a-9e96-7139f39683d2?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2597,7 +1947,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:55:30 GMT",
+ "Date": "Tue, 26 Jul 2022 12:07:36 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2605,81 +1955,159 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "85559fd7-dc89-4bc5-a1b5-24933fdf7077",
- "x-ms-ratelimit-remaining-subscription-reads": "11959",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095531Z:85559fd7-dc89-4bc5-a1b5-24933fdf7077",
+ "x-ms-correlation-request-id": "b0ff72ca-1032-463c-9221-1d89b4c64352",
+ "x-ms-ratelimit-remaining-subscription-reads": "11978",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120737Z:b0ff72ca-1032-463c-9221-1d89b4c64352",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T12%3A07%3A09.4339161Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T12:07:05.5695239Z"
+ },
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "dataProtection": {
+ "backup": {
+ "backupEnabled": true,
+ "policyEnforced": false,
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/vaults/cbsvault"
+ }
+ },
+ "fileSystemId": "03fbe872-8e67-3c2e-524a-cffd209816b2",
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-3-c2b62691",
+ "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_856e58a8",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691",
+ "poolId": "06fbf305-223e-f811-62aa-98e516e57e6d",
+ "mountTargets": [
+ {
+ "provisioningState": "",
+ "mountTargetId": "03fbe872-8e67-3c2e-524a-cffd209816b2",
+ "fileSystemId": "03fbe872-8e67-3c2e-524a-cffd209816b2",
+ "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,
+ "provisioningState": "Succeeded"
+ },
+ "systemData": {
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-26T12:07:05.7325745Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "69",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/a60c4cc2-7a49-46fc-a7f7-5e8697a8d938?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "538",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:55:42 GMT",
+ "Date": "Tue, 26 Jul 2022 12:07:36 GMT",
"Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a60c4cc2-7a49-46fc-a7f7-5e8697a8d938?api-version=2022-03-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": "c25297a4-a2fb-4157-ba30-9179e1d4f890",
- "x-ms-ratelimit-remaining-subscription-reads": "11958",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095543Z:c25297a4-a2fb-4157-ba30-9179e1d4f890",
+ "x-ms-correlation-request-id": "a7c24479-6aa7-46a6-b2a1-244450a1480d",
+ "x-ms-ratelimit-remaining-subscription-writes": "1193",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120737Z:a7c24479-6aa7-46a6-b2a1-244450a1480d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
"useExistingSnapshot": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a60c4cc2-7a49-46fc-a7f7-5e8697a8d938?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2687,7 +2115,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:55:53 GMT",
+ "Date": "Tue, 26 Jul 2022 12:08:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2695,81 +2123,75 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4813128a-73af-4dfb-87a4-79be01d6c228",
- "x-ms-ratelimit-remaining-subscription-reads": "11957",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095554Z:4813128a-73af-4dfb-87a4-79be01d6c228",
+ "x-ms-correlation-request-id": "74a7f080-7750-4483-ab1c-269647153fd6",
+ "x-ms-ratelimit-remaining-subscription-reads": "11977",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120807Z:74a7f080-7750-4483-ab1c-269647153fd6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a60c4cc2-7a49-46fc-a7f7-5e8697a8d938",
+ "name": "a60c4cc2-7a49-46fc-a7f7-5e8697a8d938",
+ "status": "Succeeded",
+ "startTime": "2022-07-26T12:07:37.4073929Z",
+ "endTime": "2022-07-26T12:07:37.6887331Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a60c4cc2-7a49-46fc-a7f7-5e8697a8d938?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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": "758",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:56:04 GMT",
+ "Date": "Tue, 26 Jul 2022 12:08: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": "94b4c416-229c-4349-bfb1-817c51c98980",
- "x-ms-ratelimit-remaining-subscription-reads": "11956",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095605Z:94b4c416-229c-4349-bfb1-817c51c98980",
+ "x-ms-correlation-request-id": "ed352e9d-b30d-44b3-96dd-0149253db33c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11976",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120808Z:ed352e9d-b30d-44b3-96dd-0149253db33c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "etag": "7/26/2022 12:07:37 PM",
+ "location": "",
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
+ "fileSystemId": "03fbe872-8e67-3c2e-524a-cffd209816b2",
+ "creationDate": "0001-01-01T00:00:00Z",
+ "backupId": "f3d8d958-b73e-e244-c276-9bd63257132a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "failureReason": "None",
+ "useExistingSnapshot": false,
+ "provisioningState": "Creating"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2777,7 +2199,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:56:15 GMT",
+ "Date": "Tue, 26 Jul 2022 12:08:18 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2785,36 +2207,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "05af8562-992c-4444-925e-bf95a7390eba",
- "x-ms-ratelimit-remaining-subscription-reads": "11955",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095616Z:05af8562-992c-4444-925e-bf95a7390eba",
+ "x-ms-correlation-request-id": "2d20d440-10d0-49be-b47c-33bf86d8e23e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11975",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120818Z:2d20d440-10d0-49be-b47c-33bf86d8e23e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
+ "creationDate": "2022-07-26T12:07:37Z",
+ "backupId": "f3d8d958-b73e-e244-c276-9bd63257132a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2822,7 +2244,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:56:26 GMT",
+ "Date": "Tue, 26 Jul 2022 12:08:28 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2830,36 +2252,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c504757a-fdd8-4df4-82e3-53c7b6e2acd6",
- "x-ms-ratelimit-remaining-subscription-reads": "11954",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095627Z:c504757a-fdd8-4df4-82e3-53c7b6e2acd6",
+ "x-ms-correlation-request-id": "37d3c7f5-47ed-434d-8c04-ae39f5de03e4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11974",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120829Z:37d3c7f5-47ed-434d-8c04-ae39f5de03e4",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
+ "creationDate": "2022-07-26T12:07:37Z",
+ "backupId": "f3d8d958-b73e-e244-c276-9bd63257132a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2867,7 +2289,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:56:38 GMT",
+ "Date": "Tue, 26 Jul 2022 12:08:39 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2875,36 +2297,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c9d7e964-8455-4a37-a479-5ae068de87fb",
- "x-ms-ratelimit-remaining-subscription-reads": "11953",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095639Z:c9d7e964-8455-4a37-a479-5ae068de87fb",
+ "x-ms-correlation-request-id": "61dce96f-af43-4785-8e8d-20360818e5d9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11973",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120839Z:61dce96f-af43-4785-8e8d-20360818e5d9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
+ "creationDate": "2022-07-26T12:07:37Z",
+ "backupId": "f3d8d958-b73e-e244-c276-9bd63257132a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2912,7 +2334,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:56:49 GMT",
+ "Date": "Tue, 26 Jul 2022 12:08:49 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2920,36 +2342,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "63e1f4de-8b0b-44e2-897b-6c52ede19137",
- "x-ms-ratelimit-remaining-subscription-reads": "11952",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095650Z:63e1f4de-8b0b-44e2-897b-6c52ede19137",
+ "x-ms-correlation-request-id": "a3c73300-a078-4e8d-b37b-d6d7ce6ebae9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11972",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120850Z:a3c73300-a078-4e8d-b37b-d6d7ce6ebae9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
+ "creationDate": "2022-07-26T12:07:37Z",
+ "backupId": "f3d8d958-b73e-e244-c276-9bd63257132a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2957,7 +2379,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:57:01 GMT",
+ "Date": "Tue, 26 Jul 2022 12:09:00 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2965,36 +2387,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2667a3ce-da81-4160-adab-0f2044a4c4bf",
- "x-ms-ratelimit-remaining-subscription-reads": "11951",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095701Z:2667a3ce-da81-4160-adab-0f2044a4c4bf",
+ "x-ms-correlation-request-id": "c81a4bf4-3915-4c4d-adfa-325f17ff9e3a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11971",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120900Z:c81a4bf4-3915-4c4d-adfa-325f17ff9e3a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
+ "creationDate": "2022-07-26T12:07:37Z",
+ "backupId": "f3d8d958-b73e-e244-c276-9bd63257132a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3002,7 +2424,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:57:11 GMT",
+ "Date": "Tue, 26 Jul 2022 12:09:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3010,36 +2432,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c285172d-6cbd-466e-8f09-0e127ce3a92d",
- "x-ms-ratelimit-remaining-subscription-reads": "11950",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095712Z:c285172d-6cbd-466e-8f09-0e127ce3a92d",
+ "x-ms-correlation-request-id": "5f025b70-60ab-4445-91b4-9922c8e33de8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11970",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120911Z:5f025b70-60ab-4445-91b4-9922c8e33de8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
+ "creationDate": "2022-07-26T12:07:37Z",
+ "backupId": "f3d8d958-b73e-e244-c276-9bd63257132a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3047,7 +2469,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:57:22 GMT",
+ "Date": "Tue, 26 Jul 2022 12:09:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3055,36 +2477,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4a9b99fd-dca0-4636-bc01-3d3d63e39cd9",
- "x-ms-ratelimit-remaining-subscription-reads": "11949",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095723Z:4a9b99fd-dca0-4636-bc01-3d3d63e39cd9",
+ "x-ms-correlation-request-id": "a10271c8-0be9-4c37-a6ad-9699c4632909",
+ "x-ms-ratelimit-remaining-subscription-reads": "11969",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120921Z:a10271c8-0be9-4c37-a6ad-9699c4632909",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
+ "creationDate": "2022-07-26T12:07:37Z",
+ "backupId": "f3d8d958-b73e-e244-c276-9bd63257132a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3092,7 +2514,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:57:33 GMT",
+ "Date": "Tue, 26 Jul 2022 12:09:31 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3100,36 +2522,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "eace364f-2231-4e77-98bf-4d983a465a27",
- "x-ms-ratelimit-remaining-subscription-reads": "11948",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095734Z:eace364f-2231-4e77-98bf-4d983a465a27",
+ "x-ms-correlation-request-id": "0bed77ef-12ae-4baa-a37b-57288697e0df",
+ "x-ms-ratelimit-remaining-subscription-reads": "11968",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120932Z:0bed77ef-12ae-4baa-a37b-57288697e0df",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
+ "creationDate": "2022-07-26T12:07:37Z",
+ "backupId": "f3d8d958-b73e-e244-c276-9bd63257132a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3137,7 +2559,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:57:44 GMT",
+ "Date": "Tue, 26 Jul 2022 12:09:43 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3145,36 +2567,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a2a23deb-d0c2-4aa6-a7de-990d4d8f8172",
- "x-ms-ratelimit-remaining-subscription-reads": "11947",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095744Z:a2a23deb-d0c2-4aa6-a7de-990d4d8f8172",
+ "x-ms-correlation-request-id": "dc8f2c7c-67fa-4a72-b72b-a183ae17669e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11967",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120943Z:dc8f2c7c-67fa-4a72-b72b-a183ae17669e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
+ "creationDate": "2022-07-26T12:07:37Z",
+ "backupId": "f3d8d958-b73e-e244-c276-9bd63257132a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3182,7 +2604,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:57:55 GMT",
+ "Date": "Tue, 26 Jul 2022 12:09:53 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3190,36 +2612,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "67b7906b-be80-43ba-aeba-0c2370f53574",
- "x-ms-ratelimit-remaining-subscription-reads": "11946",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095755Z:67b7906b-be80-43ba-aeba-0c2370f53574",
+ "x-ms-correlation-request-id": "e66de17c-03df-4d8d-bb32-bf4a0525de3d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11966",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T120953Z:e66de17c-03df-4d8d-bb32-bf4a0525de3d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
+ "creationDate": "2022-07-26T12:07:37Z",
+ "backupId": "f3d8d958-b73e-e244-c276-9bd63257132a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3227,7 +2649,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:58:06 GMT",
+ "Date": "Tue, 26 Jul 2022 12:10:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3235,36 +2657,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9d6538b6-65e9-47a7-a2cc-31bb11a7f08d",
- "x-ms-ratelimit-remaining-subscription-reads": "11945",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095806Z:9d6538b6-65e9-47a7-a2cc-31bb11a7f08d",
+ "x-ms-correlation-request-id": "759f8a2d-4c8e-4822-b759-15d22b567b99",
+ "x-ms-ratelimit-remaining-subscription-reads": "11965",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121004Z:759f8a2d-4c8e-4822-b759-15d22b567b99",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
+ "creationDate": "2022-07-26T12:07:37Z",
+ "backupId": "f3d8d958-b73e-e244-c276-9bd63257132a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3272,7 +2694,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:58:17 GMT",
+ "Date": "Tue, 26 Jul 2022 12:10:14 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3280,36 +2702,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1f4d775d-7e74-4fcd-95ab-aeea14266a31",
- "x-ms-ratelimit-remaining-subscription-reads": "11944",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095817Z:1f4d775d-7e74-4fcd-95ab-aeea14266a31",
+ "x-ms-correlation-request-id": "c6d2c4cd-cc9c-42b1-968d-2f051e23fc30",
+ "x-ms-ratelimit-remaining-subscription-reads": "11964",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121014Z:c6d2c4cd-cc9c-42b1-968d-2f051e23fc30",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
+ "creationDate": "2022-07-26T12:07:37Z",
+ "backupId": "f3d8d958-b73e-e244-c276-9bd63257132a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3317,7 +2739,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:58:27 GMT",
+ "Date": "Tue, 26 Jul 2022 12:10:24 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3325,36 +2747,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "83661ab1-a05c-40d7-9e10-c3cd0c0ae1e5",
- "x-ms-ratelimit-remaining-subscription-reads": "11943",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095828Z:83661ab1-a05c-40d7-9e10-c3cd0c0ae1e5",
+ "x-ms-correlation-request-id": "82e75caf-b64c-492d-a0db-4273592f2440",
+ "x-ms-ratelimit-remaining-subscription-reads": "11963",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121025Z:82e75caf-b64c-492d-a0db-4273592f2440",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
+ "creationDate": "2022-07-26T12:07:37Z",
+ "backupId": "f3d8d958-b73e-e244-c276-9bd63257132a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3362,7 +2784,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:58:38 GMT",
+ "Date": "Tue, 26 Jul 2022 12:10:35 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3370,36 +2792,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4729ca35-6954-4dd3-b9b9-5c4d77a47f86",
- "x-ms-ratelimit-remaining-subscription-reads": "11942",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095839Z:4729ca35-6954-4dd3-b9b9-5c4d77a47f86",
+ "x-ms-correlation-request-id": "51860c77-16b4-46e0-b9ff-d0a1fdaf2fe6",
+ "x-ms-ratelimit-remaining-subscription-reads": "11962",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121035Z:51860c77-16b4-46e0-b9ff-d0a1fdaf2fe6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
+ "creationDate": "2022-07-26T12:07:37Z",
+ "backupId": "f3d8d958-b73e-e244-c276-9bd63257132a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3407,7 +2829,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:58:49 GMT",
+ "Date": "Tue, 26 Jul 2022 12:10:46 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3415,36 +2837,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e84fda20-1fbe-4994-a352-9a0e0d67b2ed",
- "x-ms-ratelimit-remaining-subscription-reads": "11941",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095850Z:e84fda20-1fbe-4994-a352-9a0e0d67b2ed",
+ "x-ms-correlation-request-id": "ba806d5f-497a-4942-929e-6ce210a4abf8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11961",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121046Z:ba806d5f-497a-4942-929e-6ce210a4abf8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
+ "creationDate": "2022-07-26T12:07:37Z",
+ "backupId": "f3d8d958-b73e-e244-c276-9bd63257132a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3452,7 +2874,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:59:00 GMT",
+ "Date": "Tue, 26 Jul 2022 12:10:56 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3460,253 +2882,81 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5a26d3d1-8f02-441a-befd-777debed0385",
- "x-ms-ratelimit-remaining-subscription-reads": "11940",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095901Z:5a26d3d1-8f02-441a-befd-777debed0385",
+ "x-ms-correlation-request-id": "65664641-cb53-4567-b964-d81bfe397233",
+ "x-ms-ratelimit-remaining-subscription-reads": "11960",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121056Z:65664641-cb53-4567-b964-d81bfe397233",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
+ "creationDate": "2022-07-26T12:07:37Z",
+ "backupId": "f3d8d958-b73e-e244-c276-9bd63257132a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 09:59: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": "f0f7ecbd-a7c0-4320-be10-6f287dcc6dd1",
- "x-ms-ratelimit-remaining-subscription-reads": "11939",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095901Z:f0f7ecbd-a7c0-4320-be10-6f287dcc6dd1",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "value": [
- {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "name": "sdk-py-tests-acc-1/cbsvault",
- "type": "Microsoft.NetApp/netAppAccounts/vaults",
- "properties": {}
- }
- ]
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "PATCH",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "401",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/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": "Fri, 27 May 2022 09:59:04 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-27T09%3A59%3A05.0416087Z\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": "00e6d5bc-04d9-4c57-be5a-4a055f08a262",
- "x-ms-ratelimit-remaining-subscription-writes": "1194",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095905Z:00e6d5bc-04d9-4c57-be5a-4a055f08a262",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-27T09%3A59%3A05.0416087Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-27T09:50:41.3237230Z"
- },
- "properties": {
- "dataProtection": {
- "backup": {
- "backupEnabled": true,
- "policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
- }
- },
- "provisioningState": "Succeeded",
- "fileSystemId": "e48d4122-0a8d-b9fb-adc9-0a56ebd2b720",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_93ade68ee53011e9a696c27beff6b5ea_69e392be",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "e48d4122-0a8d-b9fb-adc9-0a56ebd2b720",
- "fileSystemId": "e48d4122-0a8d-b9fb-adc9-0a56ebd2b720",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.25,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T09:45:53.9904806Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T09:59:04.8952934Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
- "RequestMethod": "PUT",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "81",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
- },
- "RequestBody": {
- "location": "southcentralusstage",
- "properties": {
- "useExistingSnapshot": false
- }
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "StatusCode": 201,
+ "RequestBody": null,
+ "StatusCode": 200,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/01e44eea-91f6-4e5f-8f4f-35072bffd8f5?api-version=2022-01-01",
"Cache-Control": "no-cache",
- "Content-Length": "523",
+ "Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:59:05 GMT",
+ "Date": "Tue, 26 Jul 2022 12:11:06 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/01e44eea-91f6-4e5f-8f4f-35072bffd8f5?api-version=2022-01-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": "d009ce99-94bd-46b3-87d4-4546a3483bd3",
- "x-ms-ratelimit-remaining-subscription-writes": "1193",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095905Z:d009ce99-94bd-46b3-87d4-4546a3483bd3",
+ "x-ms-correlation-request-id": "31be056e-a74a-4b8a-bd80-b26199503aee",
+ "x-ms-ratelimit-remaining-subscription-reads": "11959",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121107Z:31be056e-a74a-4b8a-bd80-b26199503aee",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
+ "creationDate": "2022-07-26T12:07:37Z",
+ "backupId": "f3d8d958-b73e-e244-c276-9bd63257132a",
+ "size": 0,
+ "backupType": "Manual",
"provisioningState": "Creating",
+ "failureReason": "None",
+ "volumeName": "sdk-py-tests-vol-3-c2b62691",
"useExistingSnapshot": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/01e44eea-91f6-4e5f-8f4f-35072bffd8f5?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3714,7 +2964,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:59:35 GMT",
+ "Date": "Tue, 26 Jul 2022 12:11:17 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3722,75 +2972,81 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "567a0c0c-62b4-4ff8-a1dd-6737e6b84b56",
- "x-ms-ratelimit-remaining-subscription-reads": "11938",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095936Z:567a0c0c-62b4-4ff8-a1dd-6737e6b84b56",
+ "x-ms-correlation-request-id": "a6cd5839-3701-4f6d-8219-5475951bfe0a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11958",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121117Z:a6cd5839-3701-4f6d-8219-5475951bfe0a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/01e44eea-91f6-4e5f-8f4f-35072bffd8f5",
- "name": "01e44eea-91f6-4e5f-8f4f-35072bffd8f5",
- "status": "Succeeded",
- "startTime": "2022-05-27T09:59:05.6656061Z",
- "endTime": "2022-05-27T09:59:07.2506934Z",
- "percentComplete": 100.0,
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2"
+ "creationDate": "2022-07-26T12:07:37Z",
+ "backupId": "f3d8d958-b73e-e244-c276-9bd63257132a",
+ "size": 0,
+ "backupType": "Manual",
+ "provisioningState": "Creating",
+ "failureReason": "None",
+ "volumeName": "sdk-py-tests-vol-3-c2b62691",
+ "useExistingSnapshot": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/01e44eea-91f6-4e5f-8f4f-35072bffd8f5?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
- "StatusCode": 201,
+ "StatusCode": 200,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "730",
+ "Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:59:35 GMT",
+ "Date": "Tue, 26 Jul 2022 12:11: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": "c0ecb425-bdba-4277-8428-3c8be6b2f315",
- "x-ms-ratelimit-remaining-subscription-reads": "11937",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095936Z:c0ecb425-bdba-4277-8428-3c8be6b2f315",
+ "x-ms-correlation-request-id": "ccf741c1-46eb-418c-8e3e-dfec002b5e12",
+ "x-ms-ratelimit-remaining-subscription-reads": "11957",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121128Z:ccf741c1-46eb-418c-8e3e-dfec002b5e12",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "5/27/2022 9:59:07 AM",
- "location": "",
+ "location": "westus2",
"properties": {
- "fileSystemId": "e48d4122-0a8d-b9fb-adc9-0a56ebd2b720",
- "creationDate": "0001-01-01T00:00:00Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:07:37Z",
+ "backupId": "f3d8d958-b73e-e244-c276-9bd63257132a",
"size": 0,
"backupType": "Manual",
+ "provisioningState": "Creating",
"failureReason": "None",
- "useExistingSnapshot": false,
- "provisioningState": "Creating"
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3798,7 +3054,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:59:46 GMT",
+ "Date": "Tue, 26 Jul 2022 12:11:38 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3806,36 +3062,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b758e9a6-fb52-4da9-be40-a041e1b3753e",
- "x-ms-ratelimit-remaining-subscription-reads": "11936",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095947Z:b758e9a6-fb52-4da9-be40-a041e1b3753e",
+ "x-ms-correlation-request-id": "70efc9f1-7673-47be-8be1-4b3926a53195",
+ "x-ms-ratelimit-remaining-subscription-reads": "11956",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121139Z:70efc9f1-7673-47be-8be1-4b3926a53195",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:07:37Z",
+ "backupId": "f3d8d958-b73e-e244-c276-9bd63257132a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3843,7 +3099,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 09:59:57 GMT",
+ "Date": "Tue, 26 Jul 2022 12:11:49 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3851,36 +3107,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "51289efd-4825-486f-abf2-857fc2b2241c",
- "x-ms-ratelimit-remaining-subscription-reads": "11935",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T095958Z:51289efd-4825-486f-abf2-857fc2b2241c",
+ "x-ms-correlation-request-id": "18d09f4a-7dcb-499c-9e19-4f61aeadc022",
+ "x-ms-ratelimit-remaining-subscription-reads": "11955",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121149Z:18d09f4a-7dcb-499c-9e19-4f61aeadc022",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:07:37Z",
+ "backupId": "f3d8d958-b73e-e244-c276-9bd63257132a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3888,7 +3144,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:00:08 GMT",
+ "Date": "Tue, 26 Jul 2022 12:11:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3896,36 +3152,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "78bbd27b-d829-4a2c-964b-a342bcb73b53",
- "x-ms-ratelimit-remaining-subscription-reads": "11934",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100009Z:78bbd27b-d829-4a2c-964b-a342bcb73b53",
+ "x-ms-correlation-request-id": "afc52057-1ded-487d-9afd-e8a6acf1d86e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11954",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121200Z:afc52057-1ded-487d-9afd-e8a6acf1d86e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:07:37Z",
+ "backupId": "f3d8d958-b73e-e244-c276-9bd63257132a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3933,7 +3189,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:00:19 GMT",
+ "Date": "Tue, 26 Jul 2022 12:12:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3941,36 +3197,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a54a0316-9bf0-4261-a4d5-fc13dfe38d8e",
- "x-ms-ratelimit-remaining-subscription-reads": "11933",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100020Z:a54a0316-9bf0-4261-a4d5-fc13dfe38d8e",
+ "x-ms-correlation-request-id": "09448bdf-4a36-41bb-af23-02d341b0adc4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11953",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121210Z:09448bdf-4a36-41bb-af23-02d341b0adc4",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:07:37Z",
+ "backupId": "f3d8d958-b73e-e244-c276-9bd63257132a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3978,7 +3234,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:00:30 GMT",
+ "Date": "Tue, 26 Jul 2022 12:12:20 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3986,36 +3242,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1eb9404a-3cc7-4896-a1af-db27e934f012",
- "x-ms-ratelimit-remaining-subscription-reads": "11932",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100031Z:1eb9404a-3cc7-4896-a1af-db27e934f012",
+ "x-ms-correlation-request-id": "26264092-c2f2-4ecf-860d-a84b531f9f68",
+ "x-ms-ratelimit-remaining-subscription-reads": "11952",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121221Z:26264092-c2f2-4ecf-860d-a84b531f9f68",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
- "size": 0,
+ "creationDate": "2022-07-26T12:07:41Z",
+ "backupId": "f3d8d958-b73e-e244-c276-9bd63257132a",
+ "size": 331776,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/vaults?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4023,7 +3279,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:00:41 GMT",
+ "Date": "Tue, 26 Jul 2022 12:12:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4031,44 +3287,58 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f2772ca8-5f35-4103-8d72-73d010eec34e",
- "x-ms-ratelimit-remaining-subscription-reads": "11931",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100042Z:f2772ca8-5f35-4103-8d72-73d010eec34e",
+ "x-ms-correlation-request-id": "b4c87a4d-2e51-4193-b5d0-0fe21895fa61",
+ "x-ms-ratelimit-remaining-subscription-reads": "11951",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121221Z:b4c87a4d-2e51-4193-b5d0-0fe21895fa61",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
+ "value": [
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/vaults/cbsvault",
+ "name": "sdk-py-tests-acc-1-c2b62691/cbsvault",
+ "type": "Microsoft.NetApp/netAppAccounts/vaults",
+ "properties": {
+ "enabled": true,
+ "vaultId": "6130fdad-3bac-11eb-aba9-0e6a0f269857"
+ }
+ }
+ ]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691?api-version=2022-03-01",
+ "RequestMethod": "PATCH",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "408",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/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": "Fri, 27 May 2022 10:00:52 GMT",
+ "Date": "Tue, 26 Jul 2022 12:12:22 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T12%3A12%3A22.0524069Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4076,81 +3346,148 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "33903356-d5f6-4f64-8c24-6fe99353ff0e",
- "x-ms-ratelimit-remaining-subscription-reads": "11930",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100053Z:33903356-d5f6-4f64-8c24-6fe99353ff0e",
+ "x-ms-correlation-request-id": "436dd82e-5d98-4493-9fbf-7cf3d98f7ebe",
+ "x-ms-ratelimit-remaining-subscription-writes": "1192",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121223Z:436dd82e-5d98-4493-9fbf-7cf3d98f7ebe",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T12%3A12%3A22.0524069Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T12:12:21.7588674Z"
+ },
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "dataProtection": {
+ "backup": {
+ "backupEnabled": true,
+ "policyEnforced": false,
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/vaults/cbsvault"
+ }
+ },
+ "provisioningState": "Succeeded",
+ "fileSystemId": "03fbe872-8e67-3c2e-524a-cffd209816b2",
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-3-c2b62691",
+ "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_856e58a8",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "03fbe872-8e67-3c2e-524a-cffd209816b2",
+ "fileSystemId": "03fbe872-8e67-3c2e-524a-cffd209816b2",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000
+ },
+ "systemData": {
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-26T12:12:21.9207302Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "69",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/a382447b-dd76-4489-8bbe-cbfc05479502?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "538",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:01:03 GMT",
+ "Date": "Tue, 26 Jul 2022 12:12:23 GMT",
"Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a382447b-dd76-4489-8bbe-cbfc05479502?api-version=2022-03-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": "4c4104be-1058-4b21-a749-67f70dc9c4fb",
- "x-ms-ratelimit-remaining-subscription-reads": "11929",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100104Z:4c4104be-1058-4b21-a749-67f70dc9c4fb",
+ "x-ms-correlation-request-id": "1c902d9a-c21b-4f48-a7e4-684624151008",
+ "x-ms-ratelimit-remaining-subscription-writes": "1191",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121224Z:1c902d9a-c21b-4f48-a7e4-684624151008",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
"useExistingSnapshot": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a382447b-dd76-4489-8bbe-cbfc05479502?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4158,7 +3495,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:01:14 GMT",
+ "Date": "Tue, 26 Jul 2022 12:12:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4166,81 +3503,75 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b2cb3cca-1132-4b1f-827d-89abe7567bf8",
- "x-ms-ratelimit-remaining-subscription-reads": "11928",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100114Z:b2cb3cca-1132-4b1f-827d-89abe7567bf8",
+ "x-ms-correlation-request-id": "5a1ee62b-b41e-41c9-a3cb-24fe4ff865fb",
+ "x-ms-ratelimit-remaining-subscription-reads": "11950",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121254Z:5a1ee62b-b41e-41c9-a3cb-24fe4ff865fb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a382447b-dd76-4489-8bbe-cbfc05479502",
+ "name": "a382447b-dd76-4489-8bbe-cbfc05479502",
+ "status": "Succeeded",
+ "startTime": "2022-07-26T12:12:23.8837754Z",
+ "endTime": "2022-07-26T12:12:24.1181757Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a382447b-dd76-4489-8bbe-cbfc05479502?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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": "758",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:01:25 GMT",
+ "Date": "Tue, 26 Jul 2022 12:12: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": "083e7110-c477-4900-a5ba-bc81d218b801",
- "x-ms-ratelimit-remaining-subscription-reads": "11927",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100125Z:083e7110-c477-4900-a5ba-bc81d218b801",
+ "x-ms-correlation-request-id": "dc403ec0-cb14-4b34-aba9-0cfb00952209",
+ "x-ms-ratelimit-remaining-subscription-reads": "11949",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121255Z:dc403ec0-cb14-4b34-aba9-0cfb00952209",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "etag": "7/26/2022 12:12:24 PM",
+ "location": "",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "fileSystemId": "03fbe872-8e67-3c2e-524a-cffd209816b2",
+ "creationDate": "0001-01-01T00:00:00Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "failureReason": "None",
+ "useExistingSnapshot": false,
+ "provisioningState": "Creating"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4248,7 +3579,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:01:36 GMT",
+ "Date": "Tue, 26 Jul 2022 12:13:05 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4256,36 +3587,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3160dcc7-ffa9-4064-80c2-557a0b61f15a",
- "x-ms-ratelimit-remaining-subscription-reads": "11926",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100136Z:3160dcc7-ffa9-4064-80c2-557a0b61f15a",
+ "x-ms-correlation-request-id": "51527961-795f-4c5c-988f-0f90d6fd785f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11948",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121306Z:51527961-795f-4c5c-988f-0f90d6fd785f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:12:24Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4293,7 +3624,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:01:47 GMT",
+ "Date": "Tue, 26 Jul 2022 12:13:16 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4301,36 +3632,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "cf2f4825-fb13-41aa-bc2c-c400959ad3d4",
- "x-ms-ratelimit-remaining-subscription-reads": "11925",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100147Z:cf2f4825-fb13-41aa-bc2c-c400959ad3d4",
+ "x-ms-correlation-request-id": "481c9297-9b5d-4788-b366-0478cd5ded7d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11947",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121316Z:481c9297-9b5d-4788-b366-0478cd5ded7d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:12:24Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4338,7 +3669,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:01:58 GMT",
+ "Date": "Tue, 26 Jul 2022 12:13:26 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4346,36 +3677,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0a9be7e4-fc4d-4f87-be25-4f69247df2c8",
- "x-ms-ratelimit-remaining-subscription-reads": "11924",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100158Z:0a9be7e4-fc4d-4f87-be25-4f69247df2c8",
+ "x-ms-correlation-request-id": "9fcf0857-fb65-44d0-841e-374dd762bb05",
+ "x-ms-ratelimit-remaining-subscription-reads": "11946",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121327Z:9fcf0857-fb65-44d0-841e-374dd762bb05",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:12:24Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4383,7 +3714,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:02:09 GMT",
+ "Date": "Tue, 26 Jul 2022 12:13:37 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4391,36 +3722,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5547bd3b-5d46-4503-aac2-9a709bbf72c1",
- "x-ms-ratelimit-remaining-subscription-reads": "11923",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100210Z:5547bd3b-5d46-4503-aac2-9a709bbf72c1",
+ "x-ms-correlation-request-id": "41784b21-4abd-4518-8668-1000eb47d1bd",
+ "x-ms-ratelimit-remaining-subscription-reads": "11945",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121337Z:41784b21-4abd-4518-8668-1000eb47d1bd",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:12:24Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4428,7 +3759,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:02:20 GMT",
+ "Date": "Tue, 26 Jul 2022 12:13:47 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4436,36 +3767,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5517157a-4c79-49d6-8f42-b3e74fd90931",
- "x-ms-ratelimit-remaining-subscription-reads": "11922",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100221Z:5517157a-4c79-49d6-8f42-b3e74fd90931",
+ "x-ms-correlation-request-id": "3a3b23a5-3f7a-40fa-8e7c-9686154ac20d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11944",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121348Z:3a3b23a5-3f7a-40fa-8e7c-9686154ac20d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:12:24Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4473,7 +3804,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:02:31 GMT",
+ "Date": "Tue, 26 Jul 2022 12:13:58 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4481,36 +3812,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "acd6dd1c-3f02-4368-8b3d-2cf3c424ed4c",
- "x-ms-ratelimit-remaining-subscription-reads": "11921",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100232Z:acd6dd1c-3f02-4368-8b3d-2cf3c424ed4c",
+ "x-ms-correlation-request-id": "c1c9653a-1c4a-4a61-b0d2-05f1b9bfc338",
+ "x-ms-ratelimit-remaining-subscription-reads": "11943",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121359Z:c1c9653a-1c4a-4a61-b0d2-05f1b9bfc338",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:12:24Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4518,7 +3849,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:02:43 GMT",
+ "Date": "Tue, 26 Jul 2022 12:14:09 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4526,36 +3857,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b1bef375-d19e-4b42-887c-9a08f55f049a",
- "x-ms-ratelimit-remaining-subscription-reads": "11920",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100243Z:b1bef375-d19e-4b42-887c-9a08f55f049a",
+ "x-ms-correlation-request-id": "453923bf-8073-4130-904e-45cfff9bc2a8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11942",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121409Z:453923bf-8073-4130-904e-45cfff9bc2a8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:12:24Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4563,7 +3894,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:02:53 GMT",
+ "Date": "Tue, 26 Jul 2022 12:14:19 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4571,36 +3902,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9684531c-a85f-4e69-ab3d-a1f62e6901a0",
- "x-ms-ratelimit-remaining-subscription-reads": "11919",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100254Z:9684531c-a85f-4e69-ab3d-a1f62e6901a0",
+ "x-ms-correlation-request-id": "196e4cfe-cc2f-44a7-9acb-5eb176b39026",
+ "x-ms-ratelimit-remaining-subscription-reads": "11941",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121420Z:196e4cfe-cc2f-44a7-9acb-5eb176b39026",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:12:24Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4608,7 +3939,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:03:04 GMT",
+ "Date": "Tue, 26 Jul 2022 12:14:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4616,36 +3947,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "21e2ff46-a37a-467b-aee7-82d63fa075c7",
- "x-ms-ratelimit-remaining-subscription-reads": "11918",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100305Z:21e2ff46-a37a-467b-aee7-82d63fa075c7",
+ "x-ms-correlation-request-id": "73ffbe4b-0ec2-4995-b7fa-d5b5e3ba5084",
+ "x-ms-ratelimit-remaining-subscription-reads": "11940",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121430Z:73ffbe4b-0ec2-4995-b7fa-d5b5e3ba5084",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:12:24Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4653,7 +3984,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:03:15 GMT",
+ "Date": "Tue, 26 Jul 2022 12:14:40 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4661,36 +3992,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "af851c7e-3257-4456-a39a-96c0a3b2589d",
- "x-ms-ratelimit-remaining-subscription-reads": "11917",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100316Z:af851c7e-3257-4456-a39a-96c0a3b2589d",
+ "x-ms-correlation-request-id": "c0f941af-8e86-4cb8-9bd9-576df3a5358b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11939",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121441Z:c0f941af-8e86-4cb8-9bd9-576df3a5358b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:12:24Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4698,7 +4029,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:03:26 GMT",
+ "Date": "Tue, 26 Jul 2022 12:14:50 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4706,36 +4037,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "066af6e9-c1f6-4257-849c-a474eab68036",
- "x-ms-ratelimit-remaining-subscription-reads": "11916",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100327Z:066af6e9-c1f6-4257-849c-a474eab68036",
+ "x-ms-correlation-request-id": "93dc18d8-791b-4e44-b270-44eae4e72a7a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11938",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121451Z:93dc18d8-791b-4e44-b270-44eae4e72a7a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:12:24Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4743,7 +4074,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:03:37 GMT",
+ "Date": "Tue, 26 Jul 2022 12:15:01 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4751,36 +4082,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "def163bb-1d57-4811-a6db-6e5a97facb29",
- "x-ms-ratelimit-remaining-subscription-reads": "11915",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100338Z:def163bb-1d57-4811-a6db-6e5a97facb29",
+ "x-ms-correlation-request-id": "7bb40d82-4eae-4790-997d-57bc46225c04",
+ "x-ms-ratelimit-remaining-subscription-reads": "11937",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121502Z:7bb40d82-4eae-4790-997d-57bc46225c04",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:12:24Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4788,7 +4119,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:03:48 GMT",
+ "Date": "Tue, 26 Jul 2022 12:15:11 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4796,36 +4127,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0ae55bf7-8fca-40f4-9eb8-ec5247427e79",
- "x-ms-ratelimit-remaining-subscription-reads": "11914",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100349Z:0ae55bf7-8fca-40f4-9eb8-ec5247427e79",
+ "x-ms-correlation-request-id": "21bdf08f-8340-4a7e-a7d9-cc12aa4a7cfd",
+ "x-ms-ratelimit-remaining-subscription-reads": "11936",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121512Z:21bdf08f-8340-4a7e-a7d9-cc12aa4a7cfd",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:12:24Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4833,7 +4164,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:03:59 GMT",
+ "Date": "Tue, 26 Jul 2022 12:15:23 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4841,36 +4172,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "254164d7-0d19-4456-9f52-195e18d2f3f3",
- "x-ms-ratelimit-remaining-subscription-reads": "11913",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100400Z:254164d7-0d19-4456-9f52-195e18d2f3f3",
+ "x-ms-correlation-request-id": "88b7b99f-6efe-4f58-8dc2-c65c15c63502",
+ "x-ms-ratelimit-remaining-subscription-reads": "11935",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121523Z:88b7b99f-6efe-4f58-8dc2-c65c15c63502",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:12:24Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4878,7 +4209,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:04:10 GMT",
+ "Date": "Tue, 26 Jul 2022 12:15:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4886,36 +4217,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9069a40d-d688-49f0-abf5-d09392369831",
- "x-ms-ratelimit-remaining-subscription-reads": "11912",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100410Z:9069a40d-d688-49f0-abf5-d09392369831",
+ "x-ms-correlation-request-id": "689d3965-399d-4750-95ce-dcf0a786b8ad",
+ "x-ms-ratelimit-remaining-subscription-reads": "11934",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121534Z:689d3965-399d-4750-95ce-dcf0a786b8ad",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:12:24Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4923,7 +4254,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:04:21 GMT",
+ "Date": "Tue, 26 Jul 2022 12:15:43 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4931,36 +4262,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "73cd5f5e-4c72-4499-9e58-515980310387",
- "x-ms-ratelimit-remaining-subscription-reads": "11911",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100421Z:73cd5f5e-4c72-4499-9e58-515980310387",
+ "x-ms-correlation-request-id": "d44323b0-ae57-4a53-b419-54fcbbf58a94",
+ "x-ms-ratelimit-remaining-subscription-reads": "11933",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121544Z:d44323b0-ae57-4a53-b419-54fcbbf58a94",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:12:24Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4968,7 +4299,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:04:32 GMT",
+ "Date": "Tue, 26 Jul 2022 12:15:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4976,36 +4307,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "514ba00a-e65d-4757-9317-4acd6b3c5d5e",
- "x-ms-ratelimit-remaining-subscription-reads": "11910",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100432Z:514ba00a-e65d-4757-9317-4acd6b3c5d5e",
+ "x-ms-correlation-request-id": "b39e2377-778e-4530-a9ef-7f501ca0f173",
+ "x-ms-ratelimit-remaining-subscription-reads": "11932",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121555Z:b39e2377-778e-4530-a9ef-7f501ca0f173",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:12:24Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5013,7 +4344,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:04:43 GMT",
+ "Date": "Tue, 26 Jul 2022 12:16:04 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5021,36 +4352,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6aab8acd-ad61-45e0-be8b-7b38202a4c84",
- "x-ms-ratelimit-remaining-subscription-reads": "11909",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100444Z:6aab8acd-ad61-45e0-be8b-7b38202a4c84",
+ "x-ms-correlation-request-id": "be163530-9eb3-4f94-8a81-821512905f2f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11931",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121605Z:be163530-9eb3-4f94-8a81-821512905f2f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:12:24Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5058,7 +4389,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:04:54 GMT",
+ "Date": "Tue, 26 Jul 2022 12:16:15 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5066,36 +4397,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "56923750-5671-43c1-a7cb-0882af341567",
- "x-ms-ratelimit-remaining-subscription-reads": "11908",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100455Z:56923750-5671-43c1-a7cb-0882af341567",
+ "x-ms-correlation-request-id": "51439827-8971-4085-ae66-e31d110b7798",
+ "x-ms-ratelimit-remaining-subscription-reads": "11930",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121616Z:51439827-8971-4085-ae66-e31d110b7798",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:12:24Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5103,7 +4434,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:05:05 GMT",
+ "Date": "Tue, 26 Jul 2022 12:16:26 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5111,36 +4442,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7ceddd43-ad5a-495d-8ed7-c9b5825ab168",
- "x-ms-ratelimit-remaining-subscription-reads": "11907",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100506Z:7ceddd43-ad5a-495d-8ed7-c9b5825ab168",
+ "x-ms-correlation-request-id": "38843381-7105-4eb3-b242-874332fc5df3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11929",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121626Z:38843381-7105-4eb3-b242-874332fc5df3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:12:24Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5148,7 +4479,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:05:16 GMT",
+ "Date": "Tue, 26 Jul 2022 12:16:36 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5156,36 +4487,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "34b48fd3-29dc-4db7-a4e0-49e3fd57bf10",
- "x-ms-ratelimit-remaining-subscription-reads": "11906",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100516Z:34b48fd3-29dc-4db7-a4e0-49e3fd57bf10",
+ "x-ms-correlation-request-id": "6ff78b3a-a620-4b14-bb54-cea149d3c8b7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11928",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121637Z:6ff78b3a-a620-4b14-bb54-cea149d3c8b7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:12:24Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5193,7 +4524,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:05:27 GMT",
+ "Date": "Tue, 26 Jul 2022 12:16:47 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5201,36 +4532,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9cc204e1-4a83-45ca-9505-105f785a1096",
- "x-ms-ratelimit-remaining-subscription-reads": "11905",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100527Z:9cc204e1-4a83-45ca-9505-105f785a1096",
+ "x-ms-correlation-request-id": "6632c9bd-0cfc-4c66-9f2f-53c19446eb8f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11927",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121647Z:6632c9bd-0cfc-4c66-9f2f-53c19446eb8f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:12:24Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5238,7 +4569,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:05:38 GMT",
+ "Date": "Tue, 26 Jul 2022 12:16:57 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5246,36 +4577,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b6065321-2c6b-4c70-9ad7-1152567884a8",
- "x-ms-ratelimit-remaining-subscription-reads": "11904",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100538Z:b6065321-2c6b-4c70-9ad7-1152567884a8",
+ "x-ms-correlation-request-id": "9a209355-b2a0-4078-8c9e-c890d39a601f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11926",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121658Z:9a209355-b2a0-4078-8c9e-c890d39a601f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
+ "creationDate": "2022-07-26T12:12:24Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5283,7 +4614,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:05:49 GMT",
+ "Date": "Tue, 26 Jul 2022 12:17:08 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5291,36 +4622,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "32631a5f-99b3-4269-9c43-d6b2d95e40b9",
- "x-ms-ratelimit-remaining-subscription-reads": "11903",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100549Z:32631a5f-99b3-4269-9c43-d6b2d95e40b9",
+ "x-ms-correlation-request-id": "cd243281-e974-4b1f-93eb-7a45053fbb81",
+ "x-ms-ratelimit-remaining-subscription-reads": "11925",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121708Z:cd243281-e974-4b1f-93eb-7a45053fbb81",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
- "size": 0,
+ "creationDate": "2022-07-26T12:12:29Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
+ "size": 339968,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5328,7 +4659,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:05:59 GMT",
+ "Date": "Tue, 26 Jul 2022 12:17:08 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5336,81 +4667,86 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b230630a-7d12-4332-a7da-6b3d4243f5c2",
- "x-ms-ratelimit-remaining-subscription-reads": "11902",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100600Z:b230630a-7d12-4332-a7da-6b3d4243f5c2",
+ "x-ms-correlation-request-id": "79783106-03c6-4a04-8490-cc56d7ab0019",
+ "x-ms-ratelimit-remaining-subscription-reads": "11924",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121709Z:79783106-03c6-4a04-8490-cc56d7ab0019",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
+ "value": [
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T12:07:41Z",
+ "backupId": "f3d8d958-b73e-e244-c276-9bd63257132a",
+ "size": 331776,
+ "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/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-07-26T12:12:29Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "DELETE",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "0",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/215888ef-b362-4bd6-ab26-055105d46a25?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:06:11 GMT",
+ "Content-Length": "0",
+ "Date": "Tue, 26 Jul 2022 12:17:09 GMT",
"Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/215888ef-b362-4bd6-ab26-055105d46a25?api-version=2022-03-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": "42fdf50f-da10-450f-a65e-8c7c4d50f808",
- "x-ms-ratelimit-remaining-subscription-reads": "11901",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100611Z:42fdf50f-da10-450f-a65e-8c7c4d50f808",
+ "x-ms-correlation-request-id": "12108d99-80e6-4514-ba70-f692f9664a18",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14999",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121709Z:12108d99-80e6-4514-ba70-f692f9664a18",
"X-Powered-By": "ASP.NET"
},
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
+ "ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/215888ef-b362-4bd6-ab26-055105d46a25?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5418,7 +4754,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:06:22 GMT",
+ "Date": "Tue, 26 Jul 2022 12:17:39 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5426,36 +4762,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0174eee3-f409-4780-bbaa-7eefe46b0eea",
- "x-ms-ratelimit-remaining-subscription-reads": "11900",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100622Z:0174eee3-f409-4780-bbaa-7eefe46b0eea",
+ "x-ms-correlation-request-id": "96ca095b-b65b-47e7-919c-c8797238a2ef",
+ "x-ms-ratelimit-remaining-subscription-reads": "11923",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121739Z:96ca095b-b65b-47e7-919c-c8797238a2ef",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/215888ef-b362-4bd6-ab26-055105d46a25",
+ "name": "215888ef-b362-4bd6-ab26-055105d46a25",
+ "status": "Deleting",
+ "startTime": "2022-07-26T12:17:09.5246676Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/215888ef-b362-4bd6-ab26-055105d46a25?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5463,7 +4794,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:06:32 GMT",
+ "Date": "Tue, 26 Jul 2022 12:18:09 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5471,36 +4802,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "aabf82d0-5d2a-4b2c-b481-166d8e7f2925",
- "x-ms-ratelimit-remaining-subscription-reads": "11899",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100633Z:aabf82d0-5d2a-4b2c-b481-166d8e7f2925",
+ "x-ms-correlation-request-id": "4f82f9e4-9615-47cd-b010-38c8b0cb1852",
+ "x-ms-ratelimit-remaining-subscription-reads": "11922",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121810Z:4f82f9e4-9615-47cd-b010-38c8b0cb1852",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/215888ef-b362-4bd6-ab26-055105d46a25",
+ "name": "215888ef-b362-4bd6-ab26-055105d46a25",
+ "status": "Deleting",
+ "startTime": "2022-07-26T12:17:09.5246676Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/215888ef-b362-4bd6-ab26-055105d46a25?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5508,7 +4834,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:06:43 GMT",
+ "Date": "Tue, 26 Jul 2022 12:18:39 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5516,36 +4842,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ab4f2647-152f-4faf-92e5-54c0f827e5a2",
- "x-ms-ratelimit-remaining-subscription-reads": "11898",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100644Z:ab4f2647-152f-4faf-92e5-54c0f827e5a2",
+ "x-ms-correlation-request-id": "76a98fd5-5b99-4a22-bb12-23459e0f55bc",
+ "x-ms-ratelimit-remaining-subscription-reads": "11921",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121840Z:76a98fd5-5b99-4a22-bb12-23459e0f55bc",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/215888ef-b362-4bd6-ab26-055105d46a25",
+ "name": "215888ef-b362-4bd6-ab26-055105d46a25",
+ "status": "Deleting",
+ "startTime": "2022-07-26T12:17:09.5246676Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/215888ef-b362-4bd6-ab26-055105d46a25?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5553,7 +4874,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:06:54 GMT",
+ "Date": "Tue, 26 Jul 2022 12:19:11 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5561,36 +4882,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1e8875a1-19ff-4627-91e6-59086675af5f",
- "x-ms-ratelimit-remaining-subscription-reads": "11897",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100655Z:1e8875a1-19ff-4627-91e6-59086675af5f",
+ "x-ms-correlation-request-id": "03758b84-c8e1-4b2e-9e0e-f8f867369af6",
+ "x-ms-ratelimit-remaining-subscription-reads": "11920",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121911Z:03758b84-c8e1-4b2e-9e0e-f8f867369af6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/215888ef-b362-4bd6-ab26-055105d46a25",
+ "name": "215888ef-b362-4bd6-ab26-055105d46a25",
+ "status": "Deleting",
+ "startTime": "2022-07-26T12:17:09.5246676Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/215888ef-b362-4bd6-ab26-055105d46a25?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5598,7 +4914,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:06:55 GMT",
+ "Date": "Tue, 26 Jul 2022 12:19:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5606,86 +4922,71 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "df3d6a97-8dfd-445d-b3fd-a387e43f8557",
- "x-ms-ratelimit-remaining-subscription-reads": "11896",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100656Z:df3d6a97-8dfd-445d-b3fd-a387e43f8557",
+ "x-ms-correlation-request-id": "aab4754b-5956-4065-bbde-a1e08a1710f0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11919",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T121941Z:aab4754b-5956-4065-bbde-a1e08a1710f0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "value": [
- {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T09:51:14Z",
- "backupId": "a0b03e72-3699-5866-628c-1db9511d0710",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- },
- {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- ]
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/215888ef-b362-4bd6-ab26-055105d46a25",
+ "name": "215888ef-b362-4bd6-ab26-055105d46a25",
+ "status": "Deleting",
+ "startTime": "2022-07-26T12:17:09.5246676Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "DELETE",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/215888ef-b362-4bd6-ab26-055105d46a25?api-version=2022-03-01",
+ "RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/f9c07de0-f6bb-45e3-a632-10a2f388762e?api-version=2022-01-01",
"Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Fri, 27 May 2022 10:06:56 GMT",
+ "Content-Encoding": "gzip",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Tue, 26 Jul 2022 12:20:11 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f9c07de0-f6bb-45e3-a632-10a2f388762e?api-version=2022-01-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": "89be7207-68e0-439c-a02a-95afc1a2d441",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100656Z:89be7207-68e0-439c-a02a-95afc1a2d441",
+ "x-ms-correlation-request-id": "ca891096-c6b5-40f4-a9ef-350c51805cb0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11918",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122012Z:ca891096-c6b5-40f4-a9ef-350c51805cb0",
"X-Powered-By": "ASP.NET"
},
- "ResponseBody": null
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/215888ef-b362-4bd6-ab26-055105d46a25",
+ "name": "215888ef-b362-4bd6-ab26-055105d46a25",
+ "status": "Deleting",
+ "startTime": "2022-07-26T12:17:09.5246676Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/f9c07de0-f6bb-45e3-a632-10a2f388762e?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/215888ef-b362-4bd6-ab26-055105d46a25?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5693,7 +4994,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:07:27 GMT",
+ "Date": "Tue, 26 Jul 2022 12:20:42 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5701,31 +5002,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3a0a262d-285a-4ed9-98d2-e0db69bcbccf",
- "x-ms-ratelimit-remaining-subscription-reads": "11895",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100727Z:3a0a262d-285a-4ed9-98d2-e0db69bcbccf",
+ "x-ms-correlation-request-id": "055fe1bd-4c28-45ab-b56d-3c74400201d5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11917",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122042Z:055fe1bd-4c28-45ab-b56d-3c74400201d5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f9c07de0-f6bb-45e3-a632-10a2f388762e",
- "name": "f9c07de0-f6bb-45e3-a632-10a2f388762e",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/215888ef-b362-4bd6-ab26-055105d46a25",
+ "name": "215888ef-b362-4bd6-ab26-055105d46a25",
"status": "Succeeded",
- "startTime": "2022-05-27T10:06:56.8307016Z",
- "endTime": "2022-05-27T10:07:07.4441348Z",
+ "startTime": "2022-07-26T12:17:09.5246676Z",
+ "endTime": "2022-07-26T12:20:20.3000463Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/f9c07de0-f6bb-45e3-a632-10a2f388762e?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/215888ef-b362-4bd6-ab26-055105d46a25?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5733,7 +5034,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:07:27 GMT",
+ "Date": "Tue, 26 Jul 2022 12:20:42 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5741,26 +5042,26 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8a84f0a1-f29e-4244-ab53-d08ed68c1fb9",
- "x-ms-ratelimit-remaining-subscription-reads": "11894",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100727Z:8a84f0a1-f29e-4244-ab53-d08ed68c1fb9",
+ "x-ms-correlation-request-id": "84ad187a-3961-4d2b-9a00-a99c898223fd",
+ "x-ms-ratelimit-remaining-subscription-reads": "11916",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122042Z:84ad187a-3961-4d2b-9a00-a99c898223fd",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage"
+ "location": "westus2"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
@@ -5768,15 +5069,15 @@
"Cache-Control": "no-cache",
"Content-Length": "77",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:07:30 GMT",
+ "Date": "Tue, 26 Jul 2022 12:20:45 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": "4d9a6098-5a2a-42e8-9b21-75ffcca24cf3",
- "x-ms-ratelimit-remaining-subscription-reads": "11893",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100730Z:4d9a6098-5a2a-42e8-9b21-75ffcca24cf3",
+ "x-ms-correlation-request-id": "74cfb06a-ed2f-4c76-8a41-361eee84521e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11915",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122045Z:74cfb06a-ed2f-4c76-8a41-361eee84521e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -5787,13 +5088,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5801,7 +5102,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:07:30 GMT",
+ "Date": "Tue, 26 Jul 2022 12:20:45 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5809,26 +5110,26 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1f2a3875-7492-4f67-8524-48a2c048a26e",
- "x-ms-ratelimit-remaining-subscription-reads": "11892",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100731Z:1f2a3875-7492-4f67-8524-48a2c048a26e",
+ "x-ms-correlation-request-id": "8637c7ae-3dc7-4e67-b336-af5eee5abdb0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11914",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122046Z:8637c7ae-3dc7-4e67-b336-af5eee5abdb0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T09:59:07Z",
- "backupId": "2533fc11-8bde-3cbe-bdcb-f75764ff5538",
- "size": 0,
+ "creationDate": "2022-07-26T12:12:29Z",
+ "backupId": "343901cc-2773-9ed3-26bf-f5a83d42a3b4",
+ "size": 339968,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "sdk-py-tests-vol-3-c2b62691",
"useExistingSnapshot": false
}
}
@@ -5836,13 +5137,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/vaults?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5850,7 +5151,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:07:31 GMT",
+ "Date": "Tue, 26 Jul 2022 12:20:46 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5858,32 +5159,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "032174dd-a44a-4818-a08c-283f4ceda89c",
- "x-ms-ratelimit-remaining-subscription-reads": "11891",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100731Z:032174dd-a44a-4818-a08c-283f4ceda89c",
+ "x-ms-correlation-request-id": "75dbe468-b5e0-47bf-b2d3-fb6680cc2d2c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11913",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122046Z:75dbe468-b5e0-47bf-b2d3-fb6680cc2d2c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "name": "sdk-py-tests-acc-1/cbsvault",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/vaults/cbsvault",
+ "name": "sdk-py-tests-acc-1-c2b62691/cbsvault",
"type": "Microsoft.NetApp/netAppAccounts/vaults",
- "properties": {}
+ "properties": {
+ "enabled": true,
+ "vaultId": "6130fdad-3bac-11eb-aba9-0e6a0f269857"
+ }
}
]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691?api-version=2022-03-01",
"RequestMethod": "PATCH",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "402",
+ "Content-Length": "409",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
"properties": {
@@ -5891,7 +5195,7 @@
"usageThreshold": 107374182400,
"dataProtection": {
"backup": {
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/vaults/cbsvault",
"backupEnabled": false
}
},
@@ -5902,44 +5206,44 @@
},
"StatusCode": 202,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c1319036-7bce-490b-a47d-4562e6942ddc?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a279fc7a-e4e6-41ee-aceb-59f52a1fd532?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "2638",
+ "Content-Length": "2544",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:07:31 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-27T10%3A07%3A31.9130774Z\u0027\u0022",
+ "Date": "Tue, 26 Jul 2022 12:20:46 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T12%3A20%3A46.9449108Z\u0027\u0022",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c1319036-7bce-490b-a47d-4562e6942ddc?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a279fc7a-e4e6-41ee-aceb-59f52a1fd532?api-version=2022-03-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": "2d01b7dc-7c3a-407a-9ab9-7a98025b942c",
- "x-ms-ratelimit-remaining-subscription-writes": "1192",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100731Z:2d01b7dc-7c3a-407a-9ab9-7a98025b942c",
+ "x-ms-correlation-request-id": "51b7e00b-bf10-48ad-adf0-f75a811fcb30",
+ "x-ms-ratelimit-remaining-subscription-writes": "1190",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122047Z:51b7e00b-bf10-48ad-adf0-f75a811fcb30",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-27T10%3A07%3A31.9130774Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-26T12%3A20%3A46.9449108Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-27T09:50:41.3237230Z"
+ "CreatedOnDate": "2022-07-26T12:12:21.7588674Z"
},
"properties": {
"dataProtection": {
"backup": {
"backupEnabled": true,
"policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/vaults/cbsvault"
}
},
"provisioningState": "Patching",
- "fileSystemId": "e48d4122-0a8d-b9fb-adc9-0a56ebd2b720",
+ "fileSystemId": "03fbe872-8e67-3c2e-524a-cffd209816b2",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-c2b62691",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -5965,10 +5269,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_69e392be",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_856e58a8",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -5980,9 +5284,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "e48d4122-0a8d-b9fb-adc9-0a56ebd2b720",
- "fileSystemId": "e48d4122-0a8d-b9fb-adc9-0a56ebd2b720",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "03fbe872-8e67-3c2e-524a-cffd209816b2",
+ "fileSystemId": "03fbe872-8e67-3c2e-524a-cffd209816b2",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -5993,27 +5297,23 @@
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true
+ "maximumNumberOfFiles": 100000000
},
"systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T09:45:53.9904806Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T09:59:04.8952934Z"
+ "lastModifiedAt": "2022-07-26T12:12:21.9207302Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c1319036-7bce-490b-a47d-4562e6942ddc?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a279fc7a-e4e6-41ee-aceb-59f52a1fd532?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6021,7 +5321,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:08:01 GMT",
+ "Date": "Tue, 26 Jul 2022 12:21:16 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6029,31 +5329,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f840796b-c15a-45be-b8f2-03cdd633d911",
- "x-ms-ratelimit-remaining-subscription-reads": "11890",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100802Z:f840796b-c15a-45be-b8f2-03cdd633d911",
+ "x-ms-correlation-request-id": "3bb923dd-fb83-4444-9121-8916ef847c45",
+ "x-ms-ratelimit-remaining-subscription-reads": "11912",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122117Z:3bb923dd-fb83-4444-9121-8916ef847c45",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c1319036-7bce-490b-a47d-4562e6942ddc",
- "name": "c1319036-7bce-490b-a47d-4562e6942ddc",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a279fc7a-e4e6-41ee-aceb-59f52a1fd532",
+ "name": "a279fc7a-e4e6-41ee-aceb-59f52a1fd532",
"status": "Succeeded",
- "startTime": "2022-05-27T10:07:31.9141806Z",
- "endTime": "2022-05-27T10:07:42.1693954Z",
+ "startTime": "2022-07-26T12:20:46.9483744Z",
+ "endTime": "2022-07-26T12:20:53.9113862Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/c1319036-7bce-490b-a47d-4562e6942ddc?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a279fc7a-e4e6-41ee-aceb-59f52a1fd532?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6061,7 +5361,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:08:02 GMT",
+ "Date": "Tue, 26 Jul 2022 12:21:16 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6069,32 +5369,33 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "827200ae-e8fe-4605-a8da-67bbb81899ec",
- "x-ms-ratelimit-remaining-subscription-reads": "11889",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100802Z:827200ae-e8fe-4605-a8da-67bbb81899ec",
+ "x-ms-correlation-request-id": "7978a52d-9fc0-4845-9cc7-6c7863a51df2",
+ "x-ms-ratelimit-remaining-subscription-reads": "11911",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122117Z:7978a52d-9fc0-4845-9cc7-6c7863a51df2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-27T10%3A07%3A42.1622036Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-26T12%3A20%3A53.9097818Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-27T09:50:41.3237230Z"
+ "CreatedOnDate": "2022-07-26T12:12:21.7588674Z"
},
"properties": {
+ "networkFeatures": "Basic",
"dataProtection": {
"backup": {
"backupEnabled": false,
"policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/vaults/cbsvault"
}
},
- "fileSystemId": "e48d4122-0a8d-b9fb-adc9-0a56ebd2b720",
+ "fileSystemId": "03fbe872-8e67-3c2e-524a-cffd209816b2",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
+ "creationToken": "sdk-py-tests-vol-3-c2b62691",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -6122,25 +5423,24 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_69e392be",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_856e58a8",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "22e59147-e7b8-eb92-36ea-c18edabf1274",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691",
+ "poolId": "06fbf305-223e-f811-62aa-98e516e57e6d",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "e48d4122-0a8d-b9fb-adc9-0a56ebd2b720",
- "fileSystemId": "e48d4122-0a8d-b9fb-adc9-0a56ebd2b720",
+ "mountTargetId": "03fbe872-8e67-3c2e-524a-cffd209816b2",
+ "fileSystemId": "03fbe872-8e67-3c2e-524a-cffd209816b2",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -6159,28 +5459,23 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"encrypted": true,
- "smbAccessBasedEnumeration": "Disabled",
- "smbNonBrowsable": "Disabled",
"provisioningState": "Succeeded"
},
"systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T09:45:53.9904806Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T10:07:31.7800481Z"
+ "lastModifiedAt": "2022-07-26T12:20:46.8056422Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
@@ -6188,15 +5483,15 @@
"Cache-Control": "no-cache",
"Content-Length": "77",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:08:04 GMT",
+ "Date": "Tue, 26 Jul 2022 12:21:19 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": "2cde44f0-c48f-46fb-9535-a12941c6f61a",
- "x-ms-ratelimit-remaining-subscription-reads": "11888",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100805Z:2cde44f0-c48f-46fb-9535-a12941c6f61a",
+ "x-ms-correlation-request-id": "883a92de-9efb-4740-be5c-2b4722d7d7fb",
+ "x-ms-ratelimit-remaining-subscription-reads": "11910",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122120Z:883a92de-9efb-4740-be5c-2b4722d7d7fb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -6207,13 +5502,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6221,7 +5516,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:08:05 GMT",
+ "Date": "Tue, 26 Jul 2022 12:21:19 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6229,9 +5524,9 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7eb68a2b-cc05-469c-a4de-2eb034f4278d",
- "x-ms-ratelimit-remaining-subscription-reads": "11887",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100806Z:7eb68a2b-cc05-469c-a4de-2eb034f4278d",
+ "x-ms-correlation-request-id": "7a6b2b37-bc7f-44c8-88fc-4207367ea36c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11909",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122120Z:7a6b2b37-bc7f-44c8-88fc-4207367ea36c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -6239,83 +5534,43 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/58b54b13-9a61-40c5-9d00-513beb9e4926?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30e4d51f-9454-4618-84ba-4478ccdcfe89?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Fri, 27 May 2022 10:08:06 GMT",
+ "Date": "Tue, 26 Jul 2022 12:21:20 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/58b54b13-9a61-40c5-9d00-513beb9e4926?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30e4d51f-9454-4618-84ba-4478ccdcfe89?api-version=2022-03-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": "fb69ddf7-6da9-4fb6-898b-3d229e72aefe",
+ "x-ms-correlation-request-id": "86e1023f-9f98-48be-8071-a7aaed63103e",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100806Z:fb69ddf7-6da9-4fb6-898b-3d229e72aefe",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122121Z:86e1023f-9f98-48be-8071-a7aaed63103e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/58b54b13-9a61-40c5-9d00-513beb9e4926?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:08: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": "f083d3b7-fc05-4546-922d-5e062462a36f",
- "x-ms-ratelimit-remaining-subscription-reads": "11886",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100837Z:f083d3b7-fc05-4546-922d-5e062462a36f",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/58b54b13-9a61-40c5-9d00-513beb9e4926",
- "name": "58b54b13-9a61-40c5-9d00-513beb9e4926",
- "status": "Deleting",
- "startTime": "2022-05-27T10:08:06.7362044Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/58b54b13-9a61-40c5-9d00-513beb9e4926?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30e4d51f-9454-4618-84ba-4478ccdcfe89?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6323,7 +5578,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:09:07 GMT",
+ "Date": "Tue, 26 Jul 2022 12:21:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6331,31 +5586,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4597289d-033a-47a3-8bb4-d6e31a5a85a1",
- "x-ms-ratelimit-remaining-subscription-reads": "11885",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100907Z:4597289d-033a-47a3-8bb4-d6e31a5a85a1",
+ "x-ms-correlation-request-id": "a489008e-abea-40ac-9577-b5c0ae2f5191",
+ "x-ms-ratelimit-remaining-subscription-reads": "11908",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122151Z:a489008e-abea-40ac-9577-b5c0ae2f5191",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/58b54b13-9a61-40c5-9d00-513beb9e4926",
- "name": "58b54b13-9a61-40c5-9d00-513beb9e4926",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30e4d51f-9454-4618-84ba-4478ccdcfe89",
+ "name": "30e4d51f-9454-4618-84ba-4478ccdcfe89",
"status": "Deleting",
- "startTime": "2022-05-27T10:08:06.7362044Z",
+ "startTime": "2022-07-26T12:21:21.1785897Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/58b54b13-9a61-40c5-9d00-513beb9e4926?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30e4d51f-9454-4618-84ba-4478ccdcfe89?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6363,7 +5618,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:09:37 GMT",
+ "Date": "Tue, 26 Jul 2022 12:22:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6371,31 +5626,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "77c92c8c-b4c7-4660-a1b8-2f94188adae1",
- "x-ms-ratelimit-remaining-subscription-reads": "11884",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T100938Z:77c92c8c-b4c7-4660-a1b8-2f94188adae1",
+ "x-ms-correlation-request-id": "40c5affc-9595-48e4-b169-2da3799a3154",
+ "x-ms-ratelimit-remaining-subscription-reads": "11907",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122221Z:40c5affc-9595-48e4-b169-2da3799a3154",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/58b54b13-9a61-40c5-9d00-513beb9e4926",
- "name": "58b54b13-9a61-40c5-9d00-513beb9e4926",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30e4d51f-9454-4618-84ba-4478ccdcfe89",
+ "name": "30e4d51f-9454-4618-84ba-4478ccdcfe89",
"status": "Deleting",
- "startTime": "2022-05-27T10:08:06.7362044Z",
+ "startTime": "2022-07-26T12:21:21.1785897Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/58b54b13-9a61-40c5-9d00-513beb9e4926?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30e4d51f-9454-4618-84ba-4478ccdcfe89?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6403,7 +5658,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:10:07 GMT",
+ "Date": "Tue, 26 Jul 2022 12:22:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6411,31 +5666,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4d371f24-546e-4cf8-92a8-f267c50187b5",
- "x-ms-ratelimit-remaining-subscription-reads": "11883",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T101008Z:4d371f24-546e-4cf8-92a8-f267c50187b5",
+ "x-ms-correlation-request-id": "5091a2b5-4c4d-4361-80be-831970b76ce9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11906",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122252Z:5091a2b5-4c4d-4361-80be-831970b76ce9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/58b54b13-9a61-40c5-9d00-513beb9e4926",
- "name": "58b54b13-9a61-40c5-9d00-513beb9e4926",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30e4d51f-9454-4618-84ba-4478ccdcfe89",
+ "name": "30e4d51f-9454-4618-84ba-4478ccdcfe89",
"status": "Succeeded",
- "startTime": "2022-05-27T10:08:06.7362044Z",
- "endTime": "2022-05-27T10:09:38.5662032Z",
+ "startTime": "2022-07-26T12:21:21.1785897Z",
+ "endTime": "2022-07-26T12:22:23.079477Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/58b54b13-9a61-40c5-9d00-513beb9e4926?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30e4d51f-9454-4618-84ba-4478ccdcfe89?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6443,7 +5698,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:10:07 GMT",
+ "Date": "Tue, 26 Jul 2022 12:22:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6451,32 +5706,33 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a7d65f09-4c73-403b-a90b-c0c64ea95349",
- "x-ms-ratelimit-remaining-subscription-reads": "11882",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T101008Z:a7d65f09-4c73-403b-a90b-c0c64ea95349",
+ "x-ms-correlation-request-id": "da5c517b-c326-4d60-bca4-a98aa9c48f40",
+ "x-ms-ratelimit-remaining-subscription-reads": "11905",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122252Z:da5c517b-c326-4d60-bca4-a98aa9c48f40",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-27T10%3A09%3A21.4343106Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-26T12%3A21%3A21.1546337Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-27T09:50:41.3237230Z"
+ "CreatedOnDate": "2022-07-26T12:12:21.7588674Z"
},
"properties": {
+ "networkFeatures": "Basic",
"dataProtection": {
"backup": {
"backupEnabled": false,
"policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/vaults/cbsvault"
}
},
- "fileSystemId": "e48d4122-0a8d-b9fb-adc9-0a56ebd2b720",
+ "fileSystemId": "03fbe872-8e67-3c2e-524a-cffd209816b2",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
+ "creationToken": "sdk-py-tests-vol-3-c2b62691",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -6504,25 +5760,24 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "DELETED_baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_69e392be",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_856e58a8",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "22e59147-e7b8-eb92-36ea-c18edabf1274",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691",
+ "poolId": "06fbf305-223e-f811-62aa-98e516e57e6d",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "e48d4122-0a8d-b9fb-adc9-0a56ebd2b720",
- "fileSystemId": "e48d4122-0a8d-b9fb-adc9-0a56ebd2b720",
+ "mountTargetId": "03fbe872-8e67-3c2e-524a-cffd209816b2",
+ "fileSystemId": "03fbe872-8e67-3c2e-524a-cffd209816b2",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -6541,89 +5796,84 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"encrypted": true,
- "smbAccessBasedEnumeration": "Disabled",
- "smbNonBrowsable": "Disabled",
"provisioningState": "Deleting"
},
"systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T09:45:53.9904806Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T10:07:31.7800481Z"
+ "lastModifiedAt": "2022-07-26T12:20:46.8056422Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "306",
+ "Content-Length": "320",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:13:29 GMT",
+ "Date": "Tue, 26 Jul 2022 12:26:15 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4687cecf-66cf-4ba9-95cf-fb7a51ecd517",
+ "x-ms-correlation-request-id": "cf81893e-8fb0-4dcf-aabe-62fe26e4d9f3",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T101330Z:4687cecf-66cf-4ba9-95cf-fb7a51ecd517"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122615Z:cf81893e-8fb0-4dcf-aabe-62fe26e4d9f3"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/145fa42b-8062-44bf-9469-252a266bcf8d?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f3c0ce78-eb38-4337-bf6f-c182c2c50260?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Fri, 27 May 2022 10:13:42 GMT",
+ "Date": "Tue, 26 Jul 2022 12:26:27 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/145fa42b-8062-44bf-9469-252a266bcf8d?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f3c0ce78-eb38-4337-bf6f-c182c2c50260?api-version=2022-03-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": "a547d880-97aa-4718-8929-e1e59dc3e7ef",
+ "x-ms-correlation-request-id": "3eaf563b-18bd-4c63-8db8-42e19246285d",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T101343Z:a547d880-97aa-4718-8929-e1e59dc3e7ef",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122627Z:3eaf563b-18bd-4c63-8db8-42e19246285d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/145fa42b-8062-44bf-9469-252a266bcf8d?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f3c0ce78-eb38-4337-bf6f-c182c2c50260?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6631,7 +5881,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:14:12 GMT",
+ "Date": "Tue, 26 Jul 2022 12:26:58 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6639,31 +5889,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2a36bde4-f80a-4617-9829-2c0cd9c72a26",
+ "x-ms-correlation-request-id": "ef01f7c8-e42d-4427-aabb-93403a3707a7",
"x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T101413Z:2a36bde4-f80a-4617-9829-2c0cd9c72a26",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122658Z:ef01f7c8-e42d-4427-aabb-93403a3707a7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/145fa42b-8062-44bf-9469-252a266bcf8d",
- "name": "145fa42b-8062-44bf-9469-252a266bcf8d",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f3c0ce78-eb38-4337-bf6f-c182c2c50260",
+ "name": "f3c0ce78-eb38-4337-bf6f-c182c2c50260",
"status": "Succeeded",
- "startTime": "2022-05-27T10:13:42.903215Z",
- "endTime": "2022-05-27T10:13:47.0046774Z",
+ "startTime": "2022-07-26T12:26:27.7850082Z",
+ "endTime": "2022-07-26T12:26:28.2101161Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/145fa42b-8062-44bf-9469-252a266bcf8d?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f3c0ce78-eb38-4337-bf6f-c182c2c50260?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6671,7 +5921,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:14:12 GMT",
+ "Date": "Tue, 26 Jul 2022 12:26:58 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6679,211 +5929,203 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ad7186d4-6c75-4a9d-88dd-a06b6d53e9ea",
+ "x-ms-correlation-request-id": "4a379e8e-574c-491b-af84-86f625d0e3f0",
"x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T101413Z:ad7186d4-6c75-4a9d-88dd-a06b6d53e9ea",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122658Z:4a379e8e-574c-491b-af84-86f625d0e3f0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-27T10%3A13%3A42.9004776Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-26T12%3A26%3A27.7809133Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-27T09:45:08.3108425Z"
+ "CreatedOnDate": "2022-07-26T12:01:33.4451397Z"
},
"properties": {
- "poolId": "22e59147-e7b8-eb92-36ea-c18edabf1274",
+ "poolId": "06fbf305-223e-f811-62aa-98e516e57e6d",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1",
"qosType": "Auto",
"totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T09:45:10.3166089Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T09:45:10.3166089Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Fri, 27 May 2022 10:14:23 GMT",
+ "Date": "Tue, 26 Jul 2022 12:27:08 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "10dbd7d3-30c2-454f-a534-30c1770432f0",
+ "x-ms-correlation-request-id": "09a60f6f-3dae-485e-aebd-c9f5c5a04604",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T101423Z:10dbd7d3-30c2-454f-a534-30c1770432f0"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122708Z:09a60f6f-3dae-485e-aebd-c9f5c5a04604"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Fri, 27 May 2022 10:14:33 GMT",
+ "Date": "Tue, 26 Jul 2022 12:27:18 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "089baba1-2df1-4353-86b9-5b58d386c5a7",
+ "x-ms-correlation-request-id": "bdecfe54-5a52-49a4-b0fe-138106e0ae66",
"x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T101434Z:089baba1-2df1-4353-86b9-5b58d386c5a7"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122719Z:bdecfe54-5a52-49a4-b0fe-138106e0ae66"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Fri, 27 May 2022 10:14:43 GMT",
+ "Date": "Tue, 26 Jul 2022 12:27:28 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d62d65bf-6f27-4fe0-b5a6-9a23cf504d77",
+ "x-ms-correlation-request-id": "2200e940-6941-4981-a254-1a62cece5f4b",
"x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T101444Z:d62d65bf-6f27-4fe0-b5a6-9a23cf504d77"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122729Z:2200e940-6941-4981-a254-1a62cece5f4b"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Fri, 27 May 2022 10:14:54 GMT",
+ "Date": "Tue, 26 Jul 2022 12:27:39 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f8433a7f-fe43-4f54-8832-58d38b36c6de",
+ "x-ms-correlation-request-id": "182da5ad-e585-49b1-bc44-ffce9ed75f61",
"x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T101454Z:f8433a7f-fe43-4f54-8832-58d38b36c6de"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122739Z:182da5ad-e585-49b1-bc44-ffce9ed75f61"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:15:12 GMT",
+ "Date": "Tue, 26 Jul 2022 12:27:49 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a44f0a29-835b-46b4-a15b-087de903ce2a",
+ "x-ms-correlation-request-id": "77c08b33-2ae4-4104-ba09-4c1196f32ec2",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T101512Z:a44f0a29-835b-46b4-a15b-087de903ce2a"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122750Z:77c08b33-2ae4-4104-ba09-4c1196f32ec2"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/b86e4ed2-b6c7-4b33-b833-37487af0073a?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4893672e-81a3-4799-a0d8-04f0276fd94f?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Fri, 27 May 2022 10:15:17 GMT",
+ "Date": "Tue, 26 Jul 2022 12:27:51 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b86e4ed2-b6c7-4b33-b833-37487af0073a?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4893672e-81a3-4799-a0d8-04f0276fd94f?api-version=2022-03-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": "3f4e9dc1-d7b6-426b-965f-053371cb880c",
+ "x-ms-correlation-request-id": "a9d97bbb-2e69-471d-88da-6c79fc5200ad",
"x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T101518Z:3f4e9dc1-d7b6-426b-965f-053371cb880c",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122751Z:a9d97bbb-2e69-471d-88da-6c79fc5200ad",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b86e4ed2-b6c7-4b33-b833-37487af0073a?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4893672e-81a3-4799-a0d8-04f0276fd94f?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6891,7 +6133,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:15:47 GMT",
+ "Date": "Tue, 26 Jul 2022 12:28:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6899,31 +6141,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "248a5442-248e-4124-82f8-d2c321313d05",
+ "x-ms-correlation-request-id": "b6e11dd9-2209-4a3f-8a4e-0a6f1b1a7b60",
"x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T101548Z:248a5442-248e-4124-82f8-d2c321313d05",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122821Z:b6e11dd9-2209-4a3f-8a4e-0a6f1b1a7b60",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b86e4ed2-b6c7-4b33-b833-37487af0073a",
- "name": "b86e4ed2-b6c7-4b33-b833-37487af0073a",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4893672e-81a3-4799-a0d8-04f0276fd94f",
+ "name": "4893672e-81a3-4799-a0d8-04f0276fd94f",
"status": "Succeeded",
- "startTime": "2022-05-27T10:15:18.0742621Z",
- "endTime": "2022-05-27T10:15:18.1055457Z",
+ "startTime": "2022-07-26T12:27:51.415769Z",
+ "endTime": "2022-07-26T12:27:51.4626515Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b86e4ed2-b6c7-4b33-b833-37487af0073a?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4893672e-81a3-4799-a0d8-04f0276fd94f?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6931,7 +6173,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:15:48 GMT",
+ "Date": "Tue, 26 Jul 2022 12:28:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6939,19 +6181,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "890d9830-4efd-4c1e-b014-cdf6b59a5f62",
+ "x-ms-correlation-request-id": "252ea16b-24a8-4c9e-a99c-28bc10ad90ea",
"x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T101548Z:890d9830-4efd-4c1e-b014-cdf6b59a5f62",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122822Z:252ea16b-24a8-4c9e-a99c-28bc10ad90ea",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-27T10%3A15%3A18.0679283Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-26T12%3A27%3A51.4053136Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-27T09:44:31.8400694Z"
+ "CreatedOnDate": "2022-07-26T12:00:58.6290551Z"
},
"properties": {
"encryption": {
@@ -6962,43 +6204,78 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-27T09:44:35.3589591Z",
+ "createdAt": "2022-07-26T12:00:59.9840318Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T09:44:35.3589591Z"
+ "lastModifiedAt": "2022-07-26T12:00:59.9840318Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:15:50 GMT",
+ "Date": "Tue, 26 Jul 2022 12:28:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fb48264f-b5e4-4aea-a928-fe6724a03ae0",
+ "x-ms-correlation-request-id": "83b36333-08c0-4e8e-b1ac-696155dc3c48",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T101551Z:fb48264f-b5e4-4aea-a928-fe6724a03ae0"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122822Z:83b36333-08c0-4e8e-b1ac-696155dc3c48"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691?api-version=2021-08-01",
+ "RequestMethod": "DELETE",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "0",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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/08a70b92-0d5e-4642-8252-5e9ea8504a71?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "0",
+ "Date": "Tue, 26 Jul 2022 12:28:22 GMT",
+ "Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/08a70b92-0d5e-4642-8252-5e9ea8504a71?api-version=2021-08-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": "ba522b14-5fb4-4f16-91da-e5ec6f9ae3dd",
+ "x-ms-correlation-request-id": "d681fb60-76ce-44da-aaba-85af802b7eeb",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122823Z:d681fb60-76ce-44da-aaba-85af802b7eeb"
+ },
+ "ResponseBody": null
}
],
"Variables": {}
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 b906679483b3..0be18b7efa73 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 31 May 2022 08:38:27 GMT",
+ "Date": "Wed, 27 Jul 2022 11:22: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.12821.9 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 31 May 2022 08:38:27 GMT",
+ "Date": "Wed, 27 Jul 2022 11:22: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.12794.7 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - WEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "22ecd4ef-3e4e-4ead-bff9-75cc67d6ca0c",
+ "client-request-id": "6529c3b0-25c7-4810-bff4-6df19c714004",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "22ecd4ef-3e4e-4ead-bff9-75cc67d6ca0c",
+ "client-request-id": "6529c3b0-25c7-4810-bff4-6df19c714004",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:38:27 GMT",
+ "Date": "Wed, 27 Jul 2022 11:22:47 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12821.9 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - NEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,67 +213,79 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "22",
+ "Content-Length": "93",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "eastus"
+ "location": "westus2",
+ "properties": {
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ }
+ }
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5bce84dc-ca1c-40e1-9d41-2ba13e0cc0b0?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/bfc55ad1-384b-4d73-9997-f09510bf92c4?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Length": "686",
+ "Content-Length": "746",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:38:32 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A38%3A32.8496456Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 11:22:55 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Retry-After": "3",
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d5a98ac1-b3c5-4a7b-98a8-a1f03d599af8",
+ "x-ms-arm-service-request-id": "f7eda986-3a53-4f9d-ab26-6c3810a27399",
+ "x-ms-correlation-request-id": "bb94933b-b277-4e95-bb84-06ca7fd0668c",
"x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083833Z:d5a98ac1-b3c5-4a7b-98a8-a1f03d599af8",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112256Z:bb94933b-b277-4e95-bb84-06ca7fd0668c"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
- "type": "Microsoft.NetApp/netAppAccounts",
- "etag": "W/\u0022datetime\u00272022-05-31T08%3A38%3A32.8496456Z\u0027\u0022",
- "location": "eastus",
+ "name": "sdk-python-tests-vnet-westus2-74e025c5",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5",
+ "etag": "W/\u00221398a61f-0607-4666-8d1c-0e3579cb7cc5\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:38:30.3416382Z"
+ "CreatedOnDate": "2022-07-27T11:22:50.5599038Z"
},
"properties": {
- "provisioningState": "Creating"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:38:32.2565867Z",
- "createdByType": "Application",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:38:32.2565867Z",
- "lastModifiedByType": "Application"
+ "provisioningState": "Updating",
+ "resourceGuid": "8fbce584-a8ec-4841-ad16-a4e47eae8af0",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5bce84dc-ca1c-40e1-9d41-2ba13e0cc0b0?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/bfc55ad1-384b-4d73-9997-f09510bf92c4?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,39 +293,34 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:39:03 GMT",
+ "Date": "Wed, 27 Jul 2022 11:22:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "fb477cad-f82d-4130-b0eb-5ede3a9609b2",
+ "x-ms-arm-service-request-id": "773e2330-9eac-4743-922c-8bf99e251fc5",
+ "x-ms-correlation-request-id": "027fe212-f2ab-455d-8b6c-63a2468c9205",
"x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083903Z:fb477cad-f82d-4130-b0eb-5ede3a9609b2",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112300Z:027fe212-f2ab-455d-8b6c-63a2468c9205"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5bce84dc-ca1c-40e1-9d41-2ba13e0cc0b0",
- "name": "5bce84dc-ca1c-40e1-9d41-2ba13e0cc0b0",
- "status": "Succeeded",
- "startTime": "2022-05-31T08:38:32.8414707Z",
- "endTime": "2022-05-31T08:38:32.9039784Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
- }
+ "status": "Succeeded"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,119 +328,129 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:39:04 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A38%3A32.9076Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 11:22:59 GMT",
+ "ETag": "W/\u00223f8fcc44-6945-47d6-8ebf-02873ee4d193\u0022",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "2f1e161a-f2a8-4940-b08d-2468ebc5798b",
+ "x-ms-arm-service-request-id": "a925ade3-b1e5-4405-b69f-7c2909938b39",
+ "x-ms-correlation-request-id": "b783fbb2-9ac0-46fa-9655-033f87d6e9c1",
"x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083904Z:2f1e161a-f2a8-4940-b08d-2468ebc5798b",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112300Z:b783fbb2-9ac0-46fa-9655-033f87d6e9c1"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
- "type": "Microsoft.NetApp/netAppAccounts",
- "etag": "W/\u0022datetime\u00272022-05-31T08%3A38%3A32.9076Z\u0027\u0022",
- "location": "eastus",
+ "name": "sdk-python-tests-vnet-westus2-74e025c5",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5",
+ "etag": "W/\u00223f8fcc44-6945-47d6-8ebf-02873ee4d193\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:38:30.3416382Z"
+ "CreatedOnDate": "2022-07-27T11:22:50.5599038Z"
},
"properties": {
- "encryption": {
- "keySource": "Microsoft.NetApp"
+ "provisioningState": "Succeeded",
+ "resourceGuid": "8fbce584-a8ec-4841-ad16-a4e47eae8af0",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
},
- "provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:38:32.2565867Z",
- "createdByType": "Application",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:38:32.2565867Z",
- "lastModifiedByType": "Application"
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "137",
+ "Content-Length": "151",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "eastus",
"properties": {
- "size": 4398046511104,
- "serviceLevel": "Premium",
- "coolAccess": false,
- "encryptionType": "Single"
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "properties": {
+ "serviceName": "Microsoft.Netapp/volumes"
+ }
+ }
+ ]
}
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/1507f6be-2b7f-4677-8b89-b6e442c999e3?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b73276a7-896d-4d27-80f8-dc81d14a491f?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Length": "904",
+ "Content-Length": "1318",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:39:06 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A39%3A05.9574039Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 11:23:00 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Retry-After": "3",
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8e816a94-f480-4403-9c43-b7966814bd47",
+ "x-ms-arm-service-request-id": "912da8ea-7671-430b-b238-c1031cddbbd3",
+ "x-ms-correlation-request-id": "8abc2f3a-a0ee-4be2-9bce-622abb030cba",
"x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083906Z:8e816a94-f480-4403-9c43-b7966814bd47",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112301Z:8abc2f3a-a0ee-4be2-9bce-622abb030cba"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools",
- "etag": "W/\u0022datetime\u00272022-05-31T08%3A39%3A05.9574039Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-05-31T08:39:04.4997575Z"
- },
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default",
+ "etag": "W/\u00225fbc107e-51f5-4e09-b409-27ca123f6ee4\u0022",
"properties": {
- "serviceLevel": "Premium",
- "size": 4398046511104,
- "totalThroughputMibps": 0.0,
- "utilizedThroughputMibps": 0.0,
- "encryptionType": "Single",
- "coolAccess": false,
- "provisioningState": "Creating"
+ "provisioningState": "Updating",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u00225fbc107e-51f5-4e09-b409-27ca123f6ee4\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
},
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:39:05.6319026Z",
- "createdByType": "Application",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:39:05.6319026Z",
- "lastModifiedByType": "Application"
- }
+ "type": "Microsoft.Network/virtualNetworks/subnets"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/1507f6be-2b7f-4677-8b89-b6e442c999e3?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b73276a7-896d-4d27-80f8-dc81d14a491f?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -440,39 +458,34 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:39:36 GMT",
+ "Date": "Wed, 27 Jul 2022 11:23:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "a8042b4c-f2bb-4b69-94f5-445d280f3c98",
+ "x-ms-arm-service-request-id": "9a564269-c425-4ac1-8fcb-8651a51504a9",
+ "x-ms-correlation-request-id": "9cd8aa60-4ab1-41b1-a45b-a956a695bb00",
"x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083937Z:a8042b4c-f2bb-4b69-94f5-445d280f3c98",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112304Z:9cd8aa60-4ab1-41b1-a45b-a956a695bb00"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/1507f6be-2b7f-4677-8b89-b6e442c999e3",
- "name": "1507f6be-2b7f-4677-8b89-b6e442c999e3",
- "status": "Succeeded",
- "startTime": "2022-05-31T08:39:05.9641869Z",
- "endTime": "2022-05-31T08:39:06.1516954Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
- }
+ "status": "Succeeded"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -480,309 +493,327 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:39:37 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A39%3A06.1407378Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 11:23:04 GMT",
+ "ETag": "W/\u002233e1d5bb-cb6a-4d6c-a512-8770f4f22ab1\u0022",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "82c588b3-f732-4fb9-b4aa-73ef348e15b1",
+ "x-ms-arm-service-request-id": "563b9c62-73de-483b-974e-e7e531506925",
+ "x-ms-correlation-request-id": "6971f279-3804-4d08-93a8-b689fe472efe",
"x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083937Z:82c588b3-f732-4fb9-b4aa-73ef348e15b1",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools",
- "etag": "W/\u0022datetime\u00272022-05-31T08%3A39%3A06.1407378Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-05-31T08:39:04.4997575Z"
- },
- "properties": {
- "poolId": "88041560-fc94-8fb3-fbd4-0371a67d6ee7",
- "serviceLevel": "Premium",
- "size": 4398046511104,
- "qosType": "Auto",
- "totalThroughputMibps": 262.144,
- "utilizedThroughputMibps": 0.0,
- "encryptionType": "Single",
- "coolAccess": false,
- "provisioningState": "Succeeded"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "PUT",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "755",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
- },
- "RequestBody": {
- "location": "eastus",
- "properties": {
- "creationToken": "sdk-py-tests-vol-1",
- "serviceLevel": "Premium",
- "usageThreshold": 107374182400,
- "protocolTypes": [
- "NFSv3"
- ],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "coolAccess": false,
- "unixPermissions": "0770",
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0
- }
- },
- "StatusCode": 201,
- "ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c?api-version=2022-01-01",
- "Cache-Control": "no-cache",
- "Content-Length": "1524",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:39:53 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A39%3A53.8106031Z\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": "1c4ba945-432a-4d8c-81d8-4f21509c8b2f",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083954Z:1c4ba945-432a-4d8c-81d8-4f21509c8b2f",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112304Z:6971f279-3804-4d08-93a8-b689fe472efe"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-31T08%3A39%3A53.8106031Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-05-31T08:39:47.7190983Z"
- },
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default",
+ "etag": "W/\u002233e1d5bb-cb6a-4d6c-a512-8770f4f22ab1\u0022",
"properties": {
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "usageThreshold": 107374182400,
- "protocolTypes": [
- "NFSv3"
+ "provisioningState": "Succeeded",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u002233e1d5bb-cb6a-4d6c-a512-8770f4f22ab1\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Creating"
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
},
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:39:48.6642158Z",
- "createdByType": "Application",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:39:48.6642158Z",
- "lastModifiedByType": "Application"
- }
+ "type": "Microsoft.Network/virtualNetworks/subnets"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c?api-version=2022-01-01",
+ "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-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "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, 31 May 2022 08:40:23 GMT",
- "Expires": "-1",
- "Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Date": "Wed, 27 Jul 2022 11:23:04 GMT",
+ "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
+ "Set-Cookie": "[set-cookie;]",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
- "Transfer-Encoding": "chunked",
- "Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b6c8d9e6-f6c4-4ae7-afde-4182eea4b88f",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084024Z:b6c8d9e6-f6c4-4ae7-afde-4182eea4b88f",
- "X-Powered-By": "ASP.NET"
+ "x-ms-ests-server": "2.1.13355.6 - WEULR2 ProdSlices",
+ "X-XSS-Protection": "0"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c",
- "name": "42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c",
- "status": "Creating",
- "startTime": "2022-05-31T08:39:53.8180504Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
+ "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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c?api-version=2022-01-01",
+ "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": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "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, 31 May 2022 08:40:54 GMT",
- "Expires": "-1",
- "Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Date": "Wed, 27 Jul 2022 11:23:05 GMT",
+ "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
+ "Set-Cookie": "[set-cookie;]",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
- "Transfer-Encoding": "chunked",
- "Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "334d90ab-2f6e-4702-95ed-1d243f5da413",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084054Z:334d90ab-2f6e-4702-95ed-1d243f5da413",
- "X-Powered-By": "ASP.NET"
+ "x-ms-ests-server": "2.1.13355.6 - WEULR1 ProdSlices",
+ "X-XSS-Protection": "0"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c",
- "name": "42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c",
- "status": "Creating",
- "startTime": "2022-05-31T08:39:53.8180504Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
+ "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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/oauth2/v2.0/token",
+ "RequestMethod": "POST",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
+ "client-request-id": "fd61c2a1-7d19-4b00-b874-38454d4f2de0",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "281",
+ "Content-Type": "application/x-www-form-urlencoded",
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.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.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
- "RequestBody": null,
+ "RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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-cache",
- "Content-Encoding": "gzip",
+ "Cache-Control": "no-store, no-cache",
+ "client-request-id": "fd61c2a1-7d19-4b00-b874-38454d4f2de0",
+ "Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:41:24 GMT",
+ "Date": "Wed, 27 Jul 2022 11:23:05 GMT",
"Expires": "-1",
+ "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Set-Cookie": "[set-cookie;]",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
- "Transfer-Encoding": "chunked",
- "Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b0c3f82c-4411-40fa-a00a-af8c316bdcca",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084125Z:b0c3f82c-4411-40fa-a00a-af8c316bdcca",
- "X-Powered-By": "ASP.NET"
+ "x-ms-clitelem": "1,0,0,,",
+ "x-ms-ests-server": "2.1.13355.6 - WEULR1 ProdSlices",
+ "X-XSS-Protection": "0"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c",
- "name": "42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c",
- "status": "Creating",
- "startTime": "2022-05-31T08:39:53.8180504Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
+ "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/eastus/operationResults/42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5?api-version=2022-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "23",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "RequestBody": null,
- "StatusCode": 200,
+ "RequestBody": {
+ "location": "westus2"
+ },
+ "StatusCode": 201,
"ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/88dacba4-453e-41a3-8d7d-ba90696ec09c?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "702",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:41:55 GMT",
+ "Date": "Wed, 27 Jul 2022 11:23:09 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T11%3A23%3A08.2882145Z\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": "ccb5cb17-b099-471f-9575-06de93682fb1",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084155Z:ccb5cb17-b099-471f-9575-06de93682fb1",
+ "x-ms-correlation-request-id": "f7337f86-fba1-4191-b457-47b9b4b4c258",
+ "x-ms-ratelimit-remaining-subscription-writes": "1197",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112309Z:f7337f86-fba1-4191-b457-47b9b4b4c258",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c",
- "name": "42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c",
- "status": "Creating",
- "startTime": "2022-05-31T08:39:53.8180504Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T11%3A23%3A08.2882145Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T11:23:06.2165686Z"
+ },
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "provisioningState": "Creating"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-27T11:23:07.3057971Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T11:23:07.3057971Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/88dacba4-453e-41a3-8d7d-ba90696ec09c?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -790,7 +821,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:42:25 GMT",
+ "Date": "Wed, 27 Jul 2022 11:23:39 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -798,31 +829,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3d1b0528-0b40-4aa9-94e0-1908aef3651e",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084225Z:3d1b0528-0b40-4aa9-94e0-1908aef3651e",
+ "x-ms-correlation-request-id": "cd249c8f-d55b-4bea-aba3-153c3bbf6b4d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112339Z:cd249c8f-d55b-4bea-aba3-153c3bbf6b4d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c",
- "name": "42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c",
- "status": "Creating",
- "startTime": "2022-05-31T08:39:53.8180504Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/88dacba4-453e-41a3-8d7d-ba90696ec09c",
+ "name": "88dacba4-453e-41a3-8d7d-ba90696ec09c",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T11:23:08.2847146Z",
+ "endTime": "2022-07-27T11:23:08.3316613Z",
+ "percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -830,7 +861,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:42:55 GMT",
+ "Date": "Wed, 27 Jul 2022 11:23:39 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T11%3A23%3A08.346052Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -838,71 +870,128 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9c7858a6-3c64-4c66-8c91-28efeaa82a18",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084255Z:9c7858a6-3c64-4c66-8c91-28efeaa82a18",
+ "x-ms-correlation-request-id": "e7f71ff7-6b24-4a4e-aee1-ca32593ce6ab",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112339Z:e7f71ff7-6b24-4a4e-aee1-ca32593ce6ab",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c",
- "name": "42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c",
- "status": "Creating",
- "startTime": "2022-05-31T08:39:53.8180504Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T11%3A23%3A08.346052Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T11:23:06.2165686Z"
+ },
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "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"
+ },
+ "provisioningState": "Succeeded"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-27T11:23:07.3057971Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T11:23:07.3057971Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "138",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "RequestBody": null,
- "StatusCode": 200,
+ "RequestBody": {
+ "location": "westus2",
+ "properties": {
+ "size": 4398046511104,
+ "serviceLevel": "Premium",
+ "coolAccess": false,
+ "encryptionType": "Single"
+ }
+ },
+ "StatusCode": 201,
"ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3d8e208a-6e39-43fc-a432-f16c3e4153bf?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "917",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:43:25 GMT",
+ "Date": "Wed, 27 Jul 2022 11:23:42 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T11%3A23%3A42.073501Z\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": "e36fc2d4-93cc-4360-9082-60ed57d02a1b",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084325Z:e36fc2d4-93cc-4360-9082-60ed57d02a1b",
+ "x-ms-correlation-request-id": "cbcc9f19-46dc-4c14-87cd-f5d71ffa8466",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112343Z:cbcc9f19-46dc-4c14-87cd-f5d71ffa8466",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c",
- "name": "42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c",
- "status": "Creating",
- "startTime": "2022-05-31T08:39:53.8180504Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T11%3A23%3A42.073501Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T11:23:40.2860782Z"
+ },
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "serviceLevel": "Premium",
+ "size": 4398046511104,
+ "totalThroughputMibps": 0.0,
+ "utilizedThroughputMibps": 0.0,
+ "encryptionType": "Single",
+ "coolAccess": false,
+ "provisioningState": "Creating"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-27T11:23:41.8783693Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T11:23:41.8783693Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3d8e208a-6e39-43fc-a432-f16c3e4153bf?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -910,7 +999,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:43:55 GMT",
+ "Date": "Wed, 27 Jul 2022 11:24:13 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -918,31 +1007,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4c97de8e-bcc9-4298-8d12-76606f2c93a4",
- "x-ms-ratelimit-remaining-subscription-reads": "11988",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084355Z:4c97de8e-bcc9-4298-8d12-76606f2c93a4",
+ "x-ms-correlation-request-id": "5cc05993-7101-4f0b-be57-cfd99d5328db",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112413Z:5cc05993-7101-4f0b-be57-cfd99d5328db",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c",
- "name": "42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c",
- "status": "Creating",
- "startTime": "2022-05-31T08:39:53.8180504Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3d8e208a-6e39-43fc-a432-f16c3e4153bf",
+ "name": "3d8e208a-6e39-43fc-a432-f16c3e4153bf",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T11:23:42.0606895Z",
+ "endTime": "2022-07-27T11:23:42.2950163Z",
+ "percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -950,7 +1039,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:44:25 GMT",
+ "Date": "Wed, 27 Jul 2022 11:24:13 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T11%3A23%3A42.3089915Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -958,171 +1048,140 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "acbb4df9-5fb1-4ade-846c-630c2bf6479f",
- "x-ms-ratelimit-remaining-subscription-reads": "11987",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084426Z:acbb4df9-5fb1-4ade-846c-630c2bf6479f",
+ "x-ms-correlation-request-id": "62b8b442-eca7-4ae4-bcf5-4535a752447e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112414Z:62b8b442-eca7-4ae4-bcf5-4535a752447e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c",
- "name": "42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c",
- "status": "Creating",
- "startTime": "2022-05-31T08:39:53.8180504Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T11%3A23%3A42.3089915Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T11:23:40.2860782Z"
+ },
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "poolId": "a8587705-e87e-a19d-5331-11d3608b69ea",
+ "serviceLevel": "Premium",
+ "size": 4398046511104,
+ "qosType": "Auto",
+ "totalThroughputMibps": 256.0,
+ "utilizedThroughputMibps": 0.0,
+ "encryptionType": "Single",
+ "coolAccess": false,
+ "provisioningState": "Succeeded"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "779",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "RequestBody": null,
- "StatusCode": 200,
+ "RequestBody": {
+ "location": "westus2",
+ "properties": {
+ "creationToken": "sdk-py-tests-vol-3-74e025c5",
+ "serviceLevel": "Premium",
+ "usageThreshold": 107374182400,
+ "protocolTypes": [
+ "NFSv3"
+ ],
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default",
+ "networkFeatures": "Basic",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "coolAccess": false,
+ "unixPermissions": "0770",
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0
+ }
+ },
+ "StatusCode": 201,
"ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4843a864-1033-4886-9ac6-3f7158a033a7?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "1577",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:44:56 GMT",
+ "Date": "Wed, 27 Jul 2022 11:24:27 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T11%3A24%3A26.2437416Z\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": "e88597cd-8836-4da8-86e2-6928b3dc20ae",
- "x-ms-ratelimit-remaining-subscription-reads": "11986",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084456Z:e88597cd-8836-4da8-86e2-6928b3dc20ae",
+ "x-ms-correlation-request-id": "c8036f20-da7c-42d4-a368-8f31bc27aa6d",
+ "x-ms-ratelimit-remaining-subscription-writes": "1195",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112427Z:c8036f20-da7c-42d4-a368-8f31bc27aa6d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c",
- "name": "42d9ff60-8c52-4b97-b5c6-c82c0cce7f4c",
- "status": "Succeeded",
- "startTime": "2022-05-31T08:39:53.8180504Z",
- "endTime": "2022-05-31T08:44:30.555432Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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, 31 May 2022 08:44:56 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A44%3A30.5529763Z\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": "fe962e2c-fd90-4a60-b482-6807dd50d412",
- "x-ms-ratelimit-remaining-subscription-reads": "11985",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084456Z:fe962e2c-fd90-4a60-b482-6807dd50d412",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A44%3A30.5529763Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T11%3A24%3A26.2437416Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:39:47.7190983Z"
+ "CreatedOnDate": "2022-07-27T11:24:24.7276552Z"
},
"properties": {
- "fileSystemId": "e7f7b1b5-d7fe-cea3-2238-8daa898c129a",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-74e025c5",
"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_e6db99cacbc54bf6b9f6acb8edf404c5_d580cd41",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "779b008f-08a0-175d-d289-8b48d2c766e3",
- "storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
- "securityStyle": "Unix",
+ "securityStyle": "unix",
"smbEncryption": false,
"smbContinuouslyAvailable": false,
"encryptionKeySource": "Microsoft.NetApp",
"ldapEnabled": false,
"unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "e7f7b1b5-d7fe-cea3-2238-8daa898c129a",
- "fileSystemId": "e7f7b1b5-d7fe-cea3-2238-8daa898c129a",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
"coolAccess": false,
"avsDataStore": "Disabled",
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
+ "provisioningState": "Creating"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-27T11:24:25.9479451Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T11:24:25.9479451Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4843a864-1033-4886-9ac6-3f7158a033a7?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1130,8 +1189,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:45:07 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A44%3A30.5529763Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 11:24:57 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1139,90 +1197,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6012958d-39c4-4801-9c2c-45f26799f566",
- "x-ms-ratelimit-remaining-subscription-reads": "11984",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084507Z:6012958d-39c4-4801-9c2c-45f26799f566",
+ "x-ms-correlation-request-id": "e16b0182-5413-4ae9-a41a-3f7917c98c8a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112458Z:e16b0182-5413-4ae9-a41a-3f7917c98c8a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-31T08%3A44%3A30.5529763Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-05-31T08:39:47.7190983Z"
- },
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4843a864-1033-4886-9ac6-3f7158a033a7",
+ "name": "4843a864-1033-4886-9ac6-3f7158a033a7",
+ "status": "Creating",
+ "startTime": "2022-07-27T11:24:26.23926Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "fileSystemId": "e7f7b1b5-d7fe-cea3-2238-8daa898c129a",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_d580cd41",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "779b008f-08a0-175d-d289-8b48d2c766e3",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "e7f7b1b5-d7fe-cea3-2238-8daa898c129a",
- "fileSystemId": "e7f7b1b5-d7fe-cea3-2238-8daa898c129a",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4843a864-1033-4886-9ac6-3f7158a033a7?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1230,7 +1229,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:45:07 GMT",
+ "Date": "Wed, 27 Jul 2022 11:25:28 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1238,149 +1237,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "42911272-feca-4f82-9c6d-fc056179c961",
- "x-ms-ratelimit-remaining-subscription-reads": "11983",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084507Z:42911272-feca-4f82-9c6d-fc056179c961",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "value": [
- {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "name": "sdk-py-tests-acc-1/cbsvault",
- "type": "Microsoft.NetApp/netAppAccounts/vaults",
- "properties": {
- "enabled": true,
- "vaultId": "770fecc1-765b-11eb-9c9c-6ebf63ed0b3e"
- }
- }
- ]
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "PATCH",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "401",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "backupEnabled": true
- }
- },
- "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/eastus/operationResults/11e3f4bb-7d74-43fc-a880-c88711c25fc3?api-version=2022-01-01",
- "Cache-Control": "no-cache",
- "Content-Length": "2077",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:45:07 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A45%3A07.9767611Z\u0027\u0022",
- "Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/11e3f4bb-7d74-43fc-a880-c88711c25fc3?api-version=2022-01-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": "717eb88e-e0f1-4f16-a883-f92ed9466141",
- "x-ms-ratelimit-remaining-subscription-writes": "1196",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084508Z:717eb88e-e0f1-4f16-a883-f92ed9466141",
+ "x-ms-correlation-request-id": "a0893572-2bae-49a2-b5c7-c7d515e9543c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112528Z:a0893572-2bae-49a2-b5c7-c7d515e9543c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-31T08%3A45%3A07.9767611Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-05-31T08:39:47.7190983Z"
- },
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4843a864-1033-4886-9ac6-3f7158a033a7",
+ "name": "4843a864-1033-4886-9ac6-3f7158a033a7",
+ "status": "Creating",
+ "startTime": "2022-07-27T11:24:26.23926Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "provisioningState": "Patching",
- "fileSystemId": "e7f7b1b5-d7fe-cea3-2238-8daa898c129a",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_d580cd41",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "779b008f-08a0-175d-d289-8b48d2c766e3",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "e7f7b1b5-d7fe-cea3-2238-8daa898c129a",
- "fileSystemId": "e7f7b1b5-d7fe-cea3-2238-8daa898c129a",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/11e3f4bb-7d74-43fc-a880-c88711c25fc3?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4843a864-1033-4886-9ac6-3f7158a033a7?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1388,7 +1269,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:45:37 GMT",
+ "Date": "Wed, 27 Jul 2022 11:25:58 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1396,31 +1277,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "02a08fce-fd48-427d-a188-fcbdef64ce03",
- "x-ms-ratelimit-remaining-subscription-reads": "11982",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084538Z:02a08fce-fd48-427d-a188-fcbdef64ce03",
+ "x-ms-correlation-request-id": "02460938-59d5-4ee1-ae00-6bef2d0e620a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112558Z:02460938-59d5-4ee1-ae00-6bef2d0e620a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/11e3f4bb-7d74-43fc-a880-c88711c25fc3",
- "name": "11e3f4bb-7d74-43fc-a880-c88711c25fc3",
- "status": "Succeeded",
- "startTime": "2022-05-31T08:45:07.9721903Z",
- "endTime": "2022-05-31T08:45:16.6288599Z",
- "percentComplete": 100.0,
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4843a864-1033-4886-9ac6-3f7158a033a7",
+ "name": "4843a864-1033-4886-9ac6-3f7158a033a7",
+ "status": "Creating",
+ "startTime": "2022-07-27T11:24:26.23926Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/11e3f4bb-7d74-43fc-a880-c88711c25fc3?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4843a864-1033-4886-9ac6-3f7158a033a7?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1428,7 +1309,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:45:37 GMT",
+ "Date": "Wed, 27 Jul 2022 11:26:28 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1436,158 +1317,71 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "35848c9f-b5fb-4aad-b5d2-642a26bac7cc",
- "x-ms-ratelimit-remaining-subscription-reads": "11981",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084538Z:35848c9f-b5fb-4aad-b5d2-642a26bac7cc",
+ "x-ms-correlation-request-id": "c3acfffb-e9bf-42e5-9485-543c6c270aff",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112629Z:c3acfffb-e9bf-42e5-9485-543c6c270aff",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-31T08%3A45%3A16.6288566Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-05-31T08:45:07.7228991Z"
- },
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4843a864-1033-4886-9ac6-3f7158a033a7",
+ "name": "4843a864-1033-4886-9ac6-3f7158a033a7",
+ "status": "Creating",
+ "startTime": "2022-07-27T11:24:26.23926Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "dataProtection": {
- "backup": {
- "backupEnabled": true,
- "policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
- }
- },
- "fileSystemId": "e7f7b1b5-d7fe-cea3-2238-8daa898c129a",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_d580cd41",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "779b008f-08a0-175d-d289-8b48d2c766e3",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "88041560-fc94-8fb3-fbd4-0371a67d6ee7",
- "mountTargets": [
- {
- "provisioningState": "",
- "mountTargetId": "e7f7b1b5-d7fe-cea3-2238-8daa898c129a",
- "fileSystemId": "e7f7b1b5-d7fe-cea3-2238-8daa898c129a",
- "startIp": "",
- "endIp": "",
- "gateway": "",
- "netmask": "",
- "subnet": "",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "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",
- "provisioningState": "Succeeded"
- },
- "systemData": {
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:45:07.8700148Z",
- "lastModifiedByType": "Application"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "PUT",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4843a864-1033-4886-9ac6-3f7158a033a7?api-version=2022-03-01",
+ "RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "68",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "RequestBody": {
- "location": "eastus",
- "properties": {
- "useExistingSnapshot": false
- }
- },
- "StatusCode": 201,
+ "RequestBody": null,
+ "StatusCode": 200,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/76872530-461e-4c8c-93c0-5477fe2d2201?api-version=2022-01-01",
"Cache-Control": "no-cache",
- "Content-Length": "510",
+ "Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:45:38 GMT",
+ "Date": "Wed, 27 Jul 2022 11:26:59 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/76872530-461e-4c8c-93c0-5477fe2d2201?api-version=2022-01-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": "618307a9-9ec8-462b-99bd-be97d264543b",
- "x-ms-ratelimit-remaining-subscription-writes": "1195",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084539Z:618307a9-9ec8-462b-99bd-be97d264543b",
+ "x-ms-correlation-request-id": "443a54d3-115e-41c8-a1f8-35e3bf7bd34e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112659Z:443a54d3-115e-41c8-a1f8-35e3bf7bd34e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4843a864-1033-4886-9ac6-3f7158a033a7",
+ "name": "4843a864-1033-4886-9ac6-3f7158a033a7",
+ "status": "Creating",
+ "startTime": "2022-07-27T11:24:26.23926Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "provisioningState": "Creating",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/76872530-461e-4c8c-93c0-5477fe2d2201?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4843a864-1033-4886-9ac6-3f7158a033a7?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1595,7 +1389,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:46:08 GMT",
+ "Date": "Wed, 27 Jul 2022 11:27:29 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1603,75 +1397,71 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d2ef6118-2588-4453-8961-347e870ee7f4",
- "x-ms-ratelimit-remaining-subscription-reads": "11980",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084609Z:d2ef6118-2588-4453-8961-347e870ee7f4",
+ "x-ms-correlation-request-id": "217ba29d-9d2e-44b0-80e6-ec16c611fade",
+ "x-ms-ratelimit-remaining-subscription-reads": "11986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112729Z:217ba29d-9d2e-44b0-80e6-ec16c611fade",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/76872530-461e-4c8c-93c0-5477fe2d2201",
- "name": "76872530-461e-4c8c-93c0-5477fe2d2201",
- "status": "Succeeded",
- "startTime": "2022-05-31T08:45:38.8968783Z",
- "endTime": "2022-05-31T08:45:43.9281006Z",
- "percentComplete": 100.0,
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4843a864-1033-4886-9ac6-3f7158a033a7",
+ "name": "4843a864-1033-4886-9ac6-3f7158a033a7",
+ "status": "Creating",
+ "startTime": "2022-07-27T11:24:26.23926Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/76872530-461e-4c8c-93c0-5477fe2d2201?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4843a864-1033-4886-9ac6-3f7158a033a7?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
- "StatusCode": 201,
+ "StatusCode": 200,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "730",
+ "Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:46:08 GMT",
+ "Date": "Wed, 27 Jul 2022 11:27: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": "29945009-8968-41b8-8539-4b7ff9c866fc",
- "x-ms-ratelimit-remaining-subscription-reads": "11979",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084609Z:29945009-8968-41b8-8539-4b7ff9c866fc",
+ "x-ms-correlation-request-id": "1b654c08-d899-48e6-ab37-36b830899036",
+ "x-ms-ratelimit-remaining-subscription-reads": "11985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112800Z:1b654c08-d899-48e6-ab37-36b830899036",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "etag": "5/31/2022 8:45:43 AM",
- "location": "",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4843a864-1033-4886-9ac6-3f7158a033a7",
+ "name": "4843a864-1033-4886-9ac6-3f7158a033a7",
+ "status": "Creating",
+ "startTime": "2022-07-27T11:24:26.23926Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "fileSystemId": "e7f7b1b5-d7fe-cea3-2238-8daa898c129a",
- "creationDate": "0001-01-01T00:00:00Z",
- "backupId": "4278757d-db33-999c-07fd-ea70df301972",
- "size": 0,
- "backupType": "Manual",
- "failureReason": "None",
- "useExistingSnapshot": false,
- "provisioningState": "Creating"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4843a864-1033-4886-9ac6-3f7158a033a7?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1679,7 +1469,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:46:19 GMT",
+ "Date": "Wed, 27 Jul 2022 11:28:29 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1687,36 +1477,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4647d92d-02c0-4488-a9d4-30b6a503ea4e",
- "x-ms-ratelimit-remaining-subscription-reads": "11978",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084619Z:4647d92d-02c0-4488-a9d4-30b6a503ea4e",
+ "x-ms-correlation-request-id": "88cc57ca-9689-4d70-b151-f29711b8a0bb",
+ "x-ms-ratelimit-remaining-subscription-reads": "11984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112830Z:88cc57ca-9689-4d70-b151-f29711b8a0bb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4843a864-1033-4886-9ac6-3f7158a033a7",
+ "name": "4843a864-1033-4886-9ac6-3f7158a033a7",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T11:24:26.23926Z",
+ "endTime": "2022-07-27T11:28:29.7792214Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-31T08:45:43Z",
- "backupId": "4278757d-db33-999c-07fd-ea70df301972",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1724,7 +1509,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:46:29 GMT",
+ "Date": "Wed, 27 Jul 2022 11:28:30 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T11%3A28%3A29.7898013Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1732,36 +1518,90 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1fe98e55-b14a-4c64-9ff3-0b97a77d9f86",
- "x-ms-ratelimit-remaining-subscription-reads": "11977",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084630Z:1fe98e55-b14a-4c64-9ff3-0b97a77d9f86",
+ "x-ms-correlation-request-id": "254a91cf-c9b0-4f31-8ee9-0ec479785a3a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11983",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112830Z:254a91cf-c9b0-4f31-8ee9-0ec479785a3a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T11%3A28%3A29.7898013Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T11:24:24.7276552Z"
+ },
"properties": {
- "creationDate": "2022-05-31T08:45:43Z",
- "backupId": "4278757d-db33-999c-07fd-ea70df301972",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "fileSystemId": "b5976827-a94a-993e-4507-376184a93776",
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-3-74e025c5",
+ "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_2d690c47",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "b5976827-a94a-993e-4507-376184a93776",
+ "fileSystemId": "b5976827-a94a-993e-4507-376184a93776",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1769,7 +1609,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:46:39 GMT",
+ "Date": "Wed, 27 Jul 2022 11:28:40 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T11%3A28%3A29.7898013Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1777,36 +1618,90 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d5d8d143-bea8-4fa0-b6e1-e9bcdd784f07",
- "x-ms-ratelimit-remaining-subscription-reads": "11976",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084640Z:d5d8d143-bea8-4fa0-b6e1-e9bcdd784f07",
+ "x-ms-correlation-request-id": "098fe74e-184c-4e82-8877-6f9175dbde01",
+ "x-ms-ratelimit-remaining-subscription-reads": "11982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112841Z:098fe74e-184c-4e82-8877-6f9175dbde01",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T11%3A28%3A29.7898013Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T11:24:24.7276552Z"
+ },
"properties": {
- "creationDate": "2022-05-31T08:45:43Z",
- "backupId": "4278757d-db33-999c-07fd-ea70df301972",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "fileSystemId": "b5976827-a94a-993e-4507-376184a93776",
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-3-74e025c5",
+ "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_2d690c47",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "b5976827-a94a-993e-4507-376184a93776",
+ "fileSystemId": "b5976827-a94a-993e-4507-376184a93776",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/vaults?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1814,7 +1709,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:46:51 GMT",
+ "Date": "Wed, 27 Jul 2022 11:28:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1822,81 +1717,149 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "036a1038-6594-4ffd-aeff-b69be1b3220b",
- "x-ms-ratelimit-remaining-subscription-reads": "11975",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084651Z:036a1038-6594-4ffd-aeff-b69be1b3220b",
+ "x-ms-correlation-request-id": "02d12e0a-aebc-444e-9f0a-f8cb83db53a6",
+ "x-ms-ratelimit-remaining-subscription-reads": "11981",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112841Z:02d12e0a-aebc-444e-9f0a-f8cb83db53a6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
- "properties": {
- "creationDate": "2022-05-31T08:45:43Z",
- "backupId": "4278757d-db33-999c-07fd-ea70df301972",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
+ "value": [
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": {
+ "enabled": true,
+ "vaultId": "6130fdad-3bac-11eb-aba9-0e6a0f269857"
+ }
+ }
+ ]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "PATCH",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "408",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/vaults/cbsvault",
+ "backupEnabled": true
+ }
+ },
+ "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/446233a5-c5e8-4529-a823-64b91694e7f7?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "2130",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:47:01 GMT",
+ "Date": "Wed, 27 Jul 2022 11:28:41 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T11%3A28%3A42.252553Z\u0027\u0022",
"Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/446233a5-c5e8-4529-a823-64b91694e7f7?api-version=2022-03-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": "8741f4bd-29c5-44ec-b9b2-cb6dd7834bc0",
- "x-ms-ratelimit-remaining-subscription-reads": "11974",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084701Z:8741f4bd-29c5-44ec-b9b2-cb6dd7834bc0",
+ "x-ms-correlation-request-id": "b7d068a9-2d89-46e6-93af-ea6a9a06f8c4",
+ "x-ms-ratelimit-remaining-subscription-writes": "1194",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112842Z:b7d068a9-2d89-46e6-93af-ea6a9a06f8c4",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T11%3A28%3A42.252553Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T11:24:24.7276552Z"
+ },
"properties": {
- "creationDate": "2022-05-31T08:45:43Z",
- "backupId": "4278757d-db33-999c-07fd-ea70df301972",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "provisioningState": "Patching",
+ "fileSystemId": "b5976827-a94a-993e-4507-376184a93776",
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-3-74e025c5",
+ "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_2d690c47",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "b5976827-a94a-993e-4507-376184a93776",
+ "fileSystemId": "b5976827-a94a-993e-4507-376184a93776",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/446233a5-c5e8-4529-a823-64b91694e7f7?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1904,7 +1867,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:47:11 GMT",
+ "Date": "Wed, 27 Jul 2022 11:29:11 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1912,36 +1875,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ad39b57e-41e8-4e80-b63d-f373a17a0f77",
- "x-ms-ratelimit-remaining-subscription-reads": "11973",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084711Z:ad39b57e-41e8-4e80-b63d-f373a17a0f77",
+ "x-ms-correlation-request-id": "cfb8351d-f5a6-4f6c-bd28-271f8976f2b8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11980",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112912Z:cfb8351d-f5a6-4f6c-bd28-271f8976f2b8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/446233a5-c5e8-4529-a823-64b91694e7f7",
+ "name": "446233a5-c5e8-4529-a823-64b91694e7f7",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T11:28:42.2428599Z",
+ "endTime": "2022-07-27T11:28:46.0497846Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-31T08:45:43Z",
- "backupId": "4278757d-db33-999c-07fd-ea70df301972",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/446233a5-c5e8-4529-a823-64b91694e7f7?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1949,7 +1907,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:47:22 GMT",
+ "Date": "Wed, 27 Jul 2022 11:29:12 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1957,126 +1915,159 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "37dce66a-28e1-4527-9549-1708f5f7f52e",
- "x-ms-ratelimit-remaining-subscription-reads": "11972",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084722Z:37dce66a-28e1-4527-9549-1708f5f7f52e",
+ "x-ms-correlation-request-id": "ee3bbe69-5282-4b47-a9c3-3f84172d6878",
+ "x-ms-ratelimit-remaining-subscription-reads": "11979",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112913Z:ee3bbe69-5282-4b47-a9c3-3f84172d6878",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T11%3A28%3A46.0663353Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T11:28:41.9224997Z"
+ },
"properties": {
- "creationDate": "2022-05-31T08:45:43Z",
- "backupId": "4278757d-db33-999c-07fd-ea70df301972",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "dataProtection": {
+ "backup": {
+ "backupEnabled": true,
+ "policyEnforced": false,
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/vaults/cbsvault"
+ }
+ },
+ "fileSystemId": "b5976827-a94a-993e-4507-376184a93776",
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-3-74e025c5",
+ "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_2d690c47",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5",
+ "poolId": "a8587705-e87e-a19d-5331-11d3608b69ea",
+ "mountTargets": [
+ {
+ "provisioningState": "",
+ "mountTargetId": "b5976827-a94a-993e-4507-376184a93776",
+ "fileSystemId": "b5976827-a94a-993e-4507-376184a93776",
+ "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,
+ "provisioningState": "Succeeded"
+ },
+ "systemData": {
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T11:28:42.1012914Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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, 31 May 2022 08:47: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": "a6566666-b2df-44c3-b7f1-412be6df1a99",
- "x-ms-ratelimit-remaining-subscription-reads": "11971",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084732Z:a6566666-b2df-44c3-b7f1-412be6df1a99",
- "X-Powered-By": "ASP.NET"
+ "Content-Length": "69",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "RequestBody": {
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T08:45:43Z",
- "backupId": "4278757d-db33-999c-07fd-ea70df301972",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
"useExistingSnapshot": false
}
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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/4ae96855-2756-447d-8ba1-cdcf05d11aea?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "538",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:47:42 GMT",
+ "Date": "Wed, 27 Jul 2022 11:29:13 GMT",
"Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4ae96855-2756-447d-8ba1-cdcf05d11aea?api-version=2022-03-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": "3465aeb1-9053-4842-b636-dea94a03839d",
- "x-ms-ratelimit-remaining-subscription-reads": "11970",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084743Z:3465aeb1-9053-4842-b636-dea94a03839d",
+ "x-ms-correlation-request-id": "38188ecf-cb13-4163-b6c0-6a2a73ce717c",
+ "x-ms-ratelimit-remaining-subscription-writes": "1193",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112914Z:38188ecf-cb13-4163-b6c0-6a2a73ce717c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T08:45:43Z",
- "backupId": "4278757d-db33-999c-07fd-ea70df301972",
- "size": 0,
- "backupType": "Manual",
"provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
"useExistingSnapshot": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4ae96855-2756-447d-8ba1-cdcf05d11aea?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2084,7 +2075,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:47:53 GMT",
+ "Date": "Wed, 27 Jul 2022 11:29:44 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2092,81 +2083,75 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6b651b98-4732-4a31-88d9-601b9858a99d",
- "x-ms-ratelimit-remaining-subscription-reads": "11969",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084753Z:6b651b98-4732-4a31-88d9-601b9858a99d",
+ "x-ms-correlation-request-id": "21037f8f-fd7d-4e49-9946-53fdc7d96c8b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11978",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112944Z:21037f8f-fd7d-4e49-9946-53fdc7d96c8b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4ae96855-2756-447d-8ba1-cdcf05d11aea",
+ "name": "4ae96855-2756-447d-8ba1-cdcf05d11aea",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T11:29:14.1690055Z",
+ "endTime": "2022-07-27T11:29:14.4659585Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-31T08:45:43Z",
- "backupId": "4278757d-db33-999c-07fd-ea70df301972",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4ae96855-2756-447d-8ba1-cdcf05d11aea?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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": "758",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:48:03 GMT",
+ "Date": "Wed, 27 Jul 2022 11:29: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": "f9ea3327-8af8-4c1c-92d3-dfa7211b7998",
- "x-ms-ratelimit-remaining-subscription-reads": "11968",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084804Z:f9ea3327-8af8-4c1c-92d3-dfa7211b7998",
+ "x-ms-correlation-request-id": "4029fc6d-095f-4951-b6f4-633080ee6df4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11977",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112944Z:4029fc6d-095f-4951-b6f4-633080ee6df4",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "etag": "7/27/2022 11:29:14 AM",
+ "location": "",
"properties": {
- "creationDate": "2022-05-31T08:45:43Z",
- "backupId": "4278757d-db33-999c-07fd-ea70df301972",
+ "fileSystemId": "b5976827-a94a-993e-4507-376184a93776",
+ "creationDate": "0001-01-01T00:00:00Z",
+ "backupId": "db9498a4-b30b-5c7c-9956-bc4f9cc92d79",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Creating",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "useExistingSnapshot": false,
+ "provisioningState": "Creating"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2174,7 +2159,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:48:13 GMT",
+ "Date": "Wed, 27 Jul 2022 11:29:55 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2182,36 +2167,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "bed40af7-579c-4a82-9d00-31ff398bb1e6",
- "x-ms-ratelimit-remaining-subscription-reads": "11967",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084814Z:bed40af7-579c-4a82-9d00-31ff398bb1e6",
+ "x-ms-correlation-request-id": "62c5cd5f-ae49-44e4-b3dd-15f9a3d121d0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11976",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T112955Z:62c5cd5f-ae49-44e4-b3dd-15f9a3d121d0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T08:45:43Z",
- "backupId": "4278757d-db33-999c-07fd-ea70df301972",
+ "creationDate": "2022-07-27T11:29:14Z",
+ "backupId": "db9498a4-b30b-5c7c-9956-bc4f9cc92d79",
"size": 0,
"backupType": "Manual",
"provisioningState": "Creating",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2219,7 +2204,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:48:24 GMT",
+ "Date": "Wed, 27 Jul 2022 11:30:05 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2227,36 +2212,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b0baf91d-376e-4c2b-a5df-f84d5f98ebd3",
- "x-ms-ratelimit-remaining-subscription-reads": "11966",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084824Z:b0baf91d-376e-4c2b-a5df-f84d5f98ebd3",
+ "x-ms-correlation-request-id": "ce002f45-b95c-45b7-a6c7-47fd6fa53689",
+ "x-ms-ratelimit-remaining-subscription-reads": "11975",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113006Z:ce002f45-b95c-45b7-a6c7-47fd6fa53689",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T08:45:43Z",
- "backupId": "4278757d-db33-999c-07fd-ea70df301972",
+ "creationDate": "2022-07-27T11:29:14Z",
+ "backupId": "db9498a4-b30b-5c7c-9956-bc4f9cc92d79",
"size": 0,
"backupType": "Manual",
"provisioningState": "Creating",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2264,7 +2249,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:48:34 GMT",
+ "Date": "Wed, 27 Jul 2022 11:30:16 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2272,36 +2257,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7bf38dcb-f8f0-4608-900e-86f175020f43",
- "x-ms-ratelimit-remaining-subscription-reads": "11965",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084835Z:7bf38dcb-f8f0-4608-900e-86f175020f43",
+ "x-ms-correlation-request-id": "7c24c9a4-f9f2-40a4-a777-c8479da6222b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11974",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113016Z:7c24c9a4-f9f2-40a4-a777-c8479da6222b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T08:45:43Z",
- "backupId": "4278757d-db33-999c-07fd-ea70df301972",
+ "creationDate": "2022-07-27T11:29:14Z",
+ "backupId": "db9498a4-b30b-5c7c-9956-bc4f9cc92d79",
"size": 0,
"backupType": "Manual",
"provisioningState": "Creating",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2309,7 +2294,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:48:45 GMT",
+ "Date": "Wed, 27 Jul 2022 11:30:26 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2317,36 +2302,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "cd9a1421-0c18-4b97-819d-eeb27593a176",
- "x-ms-ratelimit-remaining-subscription-reads": "11964",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084845Z:cd9a1421-0c18-4b97-819d-eeb27593a176",
+ "x-ms-correlation-request-id": "11a39ea9-619e-4edc-ad2d-a00f8752955d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11973",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113027Z:11a39ea9-619e-4edc-ad2d-a00f8752955d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T08:45:43Z",
- "backupId": "4278757d-db33-999c-07fd-ea70df301972",
+ "creationDate": "2022-07-27T11:29:14Z",
+ "backupId": "db9498a4-b30b-5c7c-9956-bc4f9cc92d79",
"size": 0,
"backupType": "Manual",
"provisioningState": "Creating",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2354,7 +2339,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:48:55 GMT",
+ "Date": "Wed, 27 Jul 2022 11:30:37 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2362,36 +2347,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "543e7563-1ee3-447d-aad6-05894cecdce3",
- "x-ms-ratelimit-remaining-subscription-reads": "11963",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084856Z:543e7563-1ee3-447d-aad6-05894cecdce3",
+ "x-ms-correlation-request-id": "301cd258-cf6d-4803-91b4-9d03300d9266",
+ "x-ms-ratelimit-remaining-subscription-reads": "11972",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113037Z:301cd258-cf6d-4803-91b4-9d03300d9266",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T08:45:43Z",
- "backupId": "4278757d-db33-999c-07fd-ea70df301972",
+ "creationDate": "2022-07-27T11:29:14Z",
+ "backupId": "db9498a4-b30b-5c7c-9956-bc4f9cc92d79",
"size": 0,
"backupType": "Manual",
"provisioningState": "Creating",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2399,7 +2384,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:49:06 GMT",
+ "Date": "Wed, 27 Jul 2022 11:30:48 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2407,36 +2392,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "791aaeb3-33a3-4ef0-9259-6df4f11e23e3",
- "x-ms-ratelimit-remaining-subscription-reads": "11962",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084906Z:791aaeb3-33a3-4ef0-9259-6df4f11e23e3",
+ "x-ms-correlation-request-id": "789a6698-a2fe-49e5-9319-0b67873071e5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11971",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113048Z:789a6698-a2fe-49e5-9319-0b67873071e5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T08:45:43Z",
- "backupId": "4278757d-db33-999c-07fd-ea70df301972",
+ "creationDate": "2022-07-27T11:29:14Z",
+ "backupId": "db9498a4-b30b-5c7c-9956-bc4f9cc92d79",
"size": 0,
"backupType": "Manual",
"provisioningState": "Creating",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2444,7 +2429,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:49:16 GMT",
+ "Date": "Wed, 27 Jul 2022 11:30:58 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2452,36 +2437,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2f7253a1-485d-49be-989f-982720aa48b4",
- "x-ms-ratelimit-remaining-subscription-reads": "11961",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084916Z:2f7253a1-485d-49be-989f-982720aa48b4",
+ "x-ms-correlation-request-id": "8ace1bce-071e-474d-b064-47e8ccc18b5a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11970",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113058Z:8ace1bce-071e-474d-b064-47e8ccc18b5a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T08:46:36Z",
- "backupId": "4278757d-db33-999c-07fd-ea70df301972",
- "size": 331776,
+ "creationDate": "2022-07-27T11:29:19Z",
+ "backupId": "db9498a4-b30b-5c7c-9956-bc4f9cc92d79",
+ "size": 319488,
"backupType": "Manual",
"provisioningState": "Succeeded",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2489,7 +2474,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:49:17 GMT",
+ "Date": "Wed, 27 Jul 2022 11:30:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2497,36 +2482,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ee1ce4e3-a6c5-4557-a1d9-a67957269c63",
- "x-ms-ratelimit-remaining-subscription-reads": "11960",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084917Z:ee1ce4e3-a6c5-4557-a1d9-a67957269c63",
+ "x-ms-correlation-request-id": "bd0a8997-2b16-469e-86ff-4f31a95c7cd1",
+ "x-ms-ratelimit-remaining-subscription-reads": "11969",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113059Z:bd0a8997-2b16-469e-86ff-4f31a95c7cd1",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T08:46:36Z",
- "backupId": "4278757d-db33-999c-07fd-ea70df301972",
- "size": 331776,
+ "creationDate": "2022-07-27T11:29:19Z",
+ "backupId": "db9498a4-b30b-5c7c-9956-bc4f9cc92d79",
+ "size": 319488,
"backupType": "Manual",
"provisioningState": "Succeeded",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/vaults?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2534,7 +2519,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:49:17 GMT",
+ "Date": "Wed, 27 Jul 2022 11:30:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2542,35 +2527,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f82ee779-b285-4fcb-b631-9726b09f0d7b",
- "x-ms-ratelimit-remaining-subscription-reads": "11959",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084917Z:f82ee779-b285-4fcb-b631-9726b09f0d7b",
+ "x-ms-correlation-request-id": "051a520a-0436-462e-85fc-b75f1b57b55c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11968",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113100Z:051a520a-0436-462e-85fc-b75f1b57b55c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "name": "sdk-py-tests-acc-1/cbsvault",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": {
"enabled": true,
- "vaultId": "770fecc1-765b-11eb-9c9c-6ebf63ed0b3e"
+ "vaultId": "6130fdad-3bac-11eb-aba9-0e6a0f269857"
}
}
]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "PATCH",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "402",
+ "Content-Length": "409",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
"properties": {
@@ -2578,7 +2563,7 @@
"usageThreshold": 107374182400,
"dataProtection": {
"backup": {
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/vaults/cbsvault",
"backupEnabled": false
}
},
@@ -2589,44 +2574,44 @@
},
"StatusCode": 202,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ba1228ab-c862-43eb-8f49-f79508c22daf?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9c05fb98-44a4-4c0c-96e7-21a2befd06b5?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "2483",
+ "Content-Length": "2544",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:49:17 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A49%3A17.8989965Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 11:31:00 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T11%3A31%3A00.6776388Z\u0027\u0022",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ba1228ab-c862-43eb-8f49-f79508c22daf?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9c05fb98-44a4-4c0c-96e7-21a2befd06b5?api-version=2022-03-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": "11d1d722-6151-479c-8437-6238df3c68f8",
- "x-ms-ratelimit-remaining-subscription-writes": "1194",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084918Z:11d1d722-6151-479c-8437-6238df3c68f8",
+ "x-ms-correlation-request-id": "0023f49a-e155-4481-a0ab-ec09d7c7b112",
+ "x-ms-ratelimit-remaining-subscription-writes": "1192",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113100Z:0023f49a-e155-4481-a0ab-ec09d7c7b112",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A49%3A17.8989965Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T11%3A31%3A00.6776388Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:45:07.7228991Z"
+ "CreatedOnDate": "2022-07-27T11:28:41.9224997Z"
},
"properties": {
"dataProtection": {
"backup": {
"backupEnabled": true,
"policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/vaults/cbsvault"
}
},
"provisioningState": "Patching",
- "fileSystemId": "e7f7b1b5-d7fe-cea3-2238-8daa898c129a",
+ "fileSystemId": "b5976827-a94a-993e-4507-376184a93776",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-74e025c5",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -2652,10 +2637,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_d580cd41",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_2d690c47",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "779b008f-08a0-175d-d289-8b48d2c766e3",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -2667,12 +2652,12 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "e7f7b1b5-d7fe-cea3-2238-8daa898c129a",
- "fileSystemId": "e7f7b1b5-d7fe-cea3-2238-8daa898c129a",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "b5976827-a94a-993e-4507-376184a93776",
+ "fileSystemId": "b5976827-a94a-993e-4507-376184a93776",
+ "ipAddress": "10.0.0.4"
}
],
- "throughputMibps": 6.4,
+ "throughputMibps": 6.25,
"volumeSpecName": "generic",
"coolAccess": false,
"avsDataStore": "Disabled",
@@ -2684,19 +2669,19 @@
},
"systemData": {
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:45:07.8700148Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T11:28:42.1012914Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ba1228ab-c862-43eb-8f49-f79508c22daf?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9c05fb98-44a4-4c0c-96e7-21a2befd06b5?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2704,7 +2689,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:49:47 GMT",
+ "Date": "Wed, 27 Jul 2022 11:31:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2712,31 +2697,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ab747dd2-f1c3-4dc8-8b00-92d97a3ef940",
- "x-ms-ratelimit-remaining-subscription-reads": "11958",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084948Z:ab747dd2-f1c3-4dc8-8b00-92d97a3ef940",
+ "x-ms-correlation-request-id": "e769599d-3f73-421e-a840-739fcf53ea8c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11967",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113131Z:e769599d-3f73-421e-a840-739fcf53ea8c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ba1228ab-c862-43eb-8f49-f79508c22daf",
- "name": "ba1228ab-c862-43eb-8f49-f79508c22daf",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9c05fb98-44a4-4c0c-96e7-21a2befd06b5",
+ "name": "9c05fb98-44a4-4c0c-96e7-21a2befd06b5",
"status": "Succeeded",
- "startTime": "2022-05-31T08:49:17.9073891Z",
- "endTime": "2022-05-31T08:49:28.0931692Z",
+ "startTime": "2022-07-27T11:31:00.6629108Z",
+ "endTime": "2022-07-27T11:31:07.136063Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/ba1228ab-c862-43eb-8f49-f79508c22daf?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9c05fb98-44a4-4c0c-96e7-21a2befd06b5?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2744,7 +2729,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:49:48 GMT",
+ "Date": "Wed, 27 Jul 2022 11:31:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2752,32 +2737,32 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ab25d64b-78ab-4984-80e7-d6dd6c127311",
- "x-ms-ratelimit-remaining-subscription-reads": "11957",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084948Z:ab25d64b-78ab-4984-80e7-d6dd6c127311",
+ "x-ms-correlation-request-id": "7e724e1e-0686-4ce8-ac2b-35075121c904",
+ "x-ms-ratelimit-remaining-subscription-reads": "11966",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113131Z:7e724e1e-0686-4ce8-ac2b-35075121c904",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A49%3A28.093212Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T11%3A31%3A07.1466843Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:49:17.6169118Z"
+ "CreatedOnDate": "2022-07-27T11:31:00.2933123Z"
},
"properties": {
"dataProtection": {
"backup": {
"backupEnabled": false,
"policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/vaults/cbsvault"
}
},
- "fileSystemId": "e7f7b1b5-d7fe-cea3-2238-8daa898c129a",
+ "fileSystemId": "b5976827-a94a-993e-4507-376184a93776",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5",
+ "creationToken": "sdk-py-tests-vol-3-74e025c5",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -2805,28 +2790,28 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_d580cd41",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_2d690c47",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "779b008f-08a0-175d-d289-8b48d2c766e3",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "88041560-fc94-8fb3-fbd4-0371a67d6ee7",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5",
+ "poolId": "a8587705-e87e-a19d-5331-11d3608b69ea",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "e7f7b1b5-d7fe-cea3-2238-8daa898c129a",
- "fileSystemId": "e7f7b1b5-d7fe-cea3-2238-8daa898c129a",
+ "mountTargetId": "b5976827-a94a-993e-4507-376184a93776",
+ "fileSystemId": "b5976827-a94a-993e-4507-376184a93776",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
- "throughputMibps": 6.4,
+ "throughputMibps": 6.25,
"kerberosEnabled": false,
"securityStyle": "Unix",
"smbEncryption": false,
@@ -2841,23 +2826,24 @@
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
+ "encrypted": true,
"provisioningState": "Succeeded"
},
"systemData": {
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:49:17.778516Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T11:31:00.4923066Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
@@ -2865,15 +2851,15 @@
"Cache-Control": "no-cache",
"Content-Length": "77",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:49:50 GMT",
+ "Date": "Wed, 27 Jul 2022 11:31: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": "e1167e9a-f364-4722-a115-6fa48d8447c5",
- "x-ms-ratelimit-remaining-subscription-reads": "11956",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084950Z:e1167e9a-f364-4722-a115-6fa48d8447c5",
+ "x-ms-correlation-request-id": "9ac37f41-9958-4c20-bec9-820c2a89cd40",
+ "x-ms-ratelimit-remaining-subscription-reads": "11965",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113133Z:9ac37f41-9958-4c20-bec9-820c2a89cd40",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -2884,43 +2870,83 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/eastus/operationResults/a97f9ae2-7f3d-463d-9df5-027b9adc2894?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac04d58f-86c7-49d0-aeb8-e4f16aa738e0?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 08:49:51 GMT",
+ "Date": "Wed, 27 Jul 2022 11:31:33 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a97f9ae2-7f3d-463d-9df5-027b9adc2894?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac04d58f-86c7-49d0-aeb8-e4f16aa738e0?api-version=2022-03-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": "023bf36b-88c1-4be9-9cc5-f07aa0859e31",
+ "x-ms-correlation-request-id": "45a2559a-cef0-4086-a7e8-982663bdf6bc",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T084951Z:023bf36b-88c1-4be9-9cc5-f07aa0859e31",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113134Z:45a2559a-cef0-4086-a7e8-982663bdf6bc",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a97f9ae2-7f3d-463d-9df5-027b9adc2894?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac04d58f-86c7-49d0-aeb8-e4f16aa738e0?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 11: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": "c2faace4-8bd1-499d-a8ae-26476e15351d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11964",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113205Z:c2faace4-8bd1-499d-a8ae-26476e15351d",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac04d58f-86c7-49d0-aeb8-e4f16aa738e0",
+ "name": "ac04d58f-86c7-49d0-aeb8-e4f16aa738e0",
+ "status": "Deleting",
+ "startTime": "2022-07-27T11:31:34.5338037Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/ac04d58f-86c7-49d0-aeb8-e4f16aa738e0?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2928,7 +2954,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:50:21 GMT",
+ "Date": "Wed, 27 Jul 2022 11:32:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2936,31 +2962,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fba144eb-dad1-4f9f-9ca9-61dc6bc118d4",
- "x-ms-ratelimit-remaining-subscription-reads": "11955",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T085021Z:fba144eb-dad1-4f9f-9ca9-61dc6bc118d4",
+ "x-ms-correlation-request-id": "d6d03245-4ab2-4d58-a67b-967ec9a53ec0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11963",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113235Z:d6d03245-4ab2-4d58-a67b-967ec9a53ec0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a97f9ae2-7f3d-463d-9df5-027b9adc2894",
- "name": "a97f9ae2-7f3d-463d-9df5-027b9adc2894",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac04d58f-86c7-49d0-aeb8-e4f16aa738e0",
+ "name": "ac04d58f-86c7-49d0-aeb8-e4f16aa738e0",
"status": "Deleting",
- "startTime": "2022-05-31T08:49:51.262381Z",
+ "startTime": "2022-07-27T11:31:34.5338037Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/a97f9ae2-7f3d-463d-9df5-027b9adc2894?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac04d58f-86c7-49d0-aeb8-e4f16aa738e0?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2968,7 +2994,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:50:51 GMT",
+ "Date": "Wed, 27 Jul 2022 11:33:05 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2976,31 +3002,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "68361101-af93-4daf-b54e-8e911092b6d6",
- "x-ms-ratelimit-remaining-subscription-reads": "11954",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T085051Z:68361101-af93-4daf-b54e-8e911092b6d6",
+ "x-ms-correlation-request-id": "d997aef2-6a19-443b-a44b-6b574041e1e7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11962",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113305Z:d997aef2-6a19-443b-a44b-6b574041e1e7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a97f9ae2-7f3d-463d-9df5-027b9adc2894",
- "name": "a97f9ae2-7f3d-463d-9df5-027b9adc2894",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac04d58f-86c7-49d0-aeb8-e4f16aa738e0",
+ "name": "ac04d58f-86c7-49d0-aeb8-e4f16aa738e0",
"status": "Deleting",
- "startTime": "2022-05-31T08:49:51.262381Z",
+ "startTime": "2022-07-27T11:31:34.5338037Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/a97f9ae2-7f3d-463d-9df5-027b9adc2894?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac04d58f-86c7-49d0-aeb8-e4f16aa738e0?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3008,7 +3034,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:51:21 GMT",
+ "Date": "Wed, 27 Jul 2022 11:33:35 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3016,31 +3042,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "909082bf-c614-4d2f-a952-11081bcb133d",
- "x-ms-ratelimit-remaining-subscription-reads": "11953",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T085122Z:909082bf-c614-4d2f-a952-11081bcb133d",
+ "x-ms-correlation-request-id": "b9658e4a-3dd1-414a-8725-3cf616d6a123",
+ "x-ms-ratelimit-remaining-subscription-reads": "11961",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113336Z:b9658e4a-3dd1-414a-8725-3cf616d6a123",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a97f9ae2-7f3d-463d-9df5-027b9adc2894",
- "name": "a97f9ae2-7f3d-463d-9df5-027b9adc2894",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac04d58f-86c7-49d0-aeb8-e4f16aa738e0",
+ "name": "ac04d58f-86c7-49d0-aeb8-e4f16aa738e0",
"status": "Succeeded",
- "startTime": "2022-05-31T08:49:51.262381Z",
- "endTime": "2022-05-31T08:51:16.2829021Z",
+ "startTime": "2022-07-27T11:31:34.5338037Z",
+ "endTime": "2022-07-27T11:33:15.5584054Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/a97f9ae2-7f3d-463d-9df5-027b9adc2894?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac04d58f-86c7-49d0-aeb8-e4f16aa738e0?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3048,7 +3074,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:51:21 GMT",
+ "Date": "Wed, 27 Jul 2022 11:33:36 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3056,32 +3082,32 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a89ccf51-7c7d-4fc3-90ff-a3508c30f44e",
- "x-ms-ratelimit-remaining-subscription-reads": "11952",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T085122Z:a89ccf51-7c7d-4fc3-90ff-a3508c30f44e",
+ "x-ms-correlation-request-id": "62faefd5-64d4-42ff-a188-75a5fcfb4f6f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11960",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113336Z:62faefd5-64d4-42ff-a188-75a5fcfb4f6f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A49%3A51.244075Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T11%3A31%3A34.532867Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:49:17.6169118Z"
+ "CreatedOnDate": "2022-07-27T11:31:00.2933123Z"
},
"properties": {
"dataProtection": {
"backup": {
"backupEnabled": false,
"policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/vaults/cbsvault"
}
},
- "fileSystemId": "e7f7b1b5-d7fe-cea3-2238-8daa898c129a",
+ "fileSystemId": "b5976827-a94a-993e-4507-376184a93776",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5",
+ "creationToken": "sdk-py-tests-vol-3-74e025c5",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -3109,28 +3135,28 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_d580cd41",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_2d690c47",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "779b008f-08a0-175d-d289-8b48d2c766e3",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "88041560-fc94-8fb3-fbd4-0371a67d6ee7",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5",
+ "poolId": "a8587705-e87e-a19d-5331-11d3608b69ea",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "e7f7b1b5-d7fe-cea3-2238-8daa898c129a",
- "fileSystemId": "e7f7b1b5-d7fe-cea3-2238-8daa898c129a",
+ "mountTargetId": "b5976827-a94a-993e-4507-376184a93776",
+ "fileSystemId": "b5976827-a94a-993e-4507-376184a93776",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
- "throughputMibps": 6.4,
+ "throughputMibps": 6.25,
"kerberosEnabled": false,
"securityStyle": "Unix",
"smbEncryption": false,
@@ -3145,84 +3171,85 @@
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
+ "encrypted": true,
"provisioningState": "Deleting"
},
"systemData": {
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:49:17.778516Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T11:31:00.4923066Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "306",
+ "Content-Length": "320",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:54:45 GMT",
+ "Date": "Wed, 27 Jul 2022 11:36:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3d8f2ed4-4ed8-4cb5-99ce-b79f1a38d8c7",
+ "x-ms-correlation-request-id": "3ef69e57-e98a-4d5c-b2e9-b8d656b891c8",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T085446Z:3d8f2ed4-4ed8-4cb5-99ce-b79f1a38d8c7"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113659Z:3ef69e57-e98a-4d5c-b2e9-b8d656b891c8"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/eastus/operationResults/2aa01cb8-ba11-4b56-a8bf-f22ee4190d1e?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/11f9a9bb-d3ca-4eff-995a-946672c0a69e?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 08:54:58 GMT",
+ "Date": "Wed, 27 Jul 2022 11:37:12 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/2aa01cb8-ba11-4b56-a8bf-f22ee4190d1e?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/11f9a9bb-d3ca-4eff-995a-946672c0a69e?api-version=2022-03-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": "51256f5d-c32e-450b-a5b5-ff4f5b772a59",
+ "x-ms-correlation-request-id": "4c172523-c030-485b-a963-827285e93b28",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T085458Z:51256f5d-c32e-450b-a5b5-ff4f5b772a59",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113713Z:4c172523-c030-485b-a963-827285e93b28",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/2aa01cb8-ba11-4b56-a8bf-f22ee4190d1e?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/11f9a9bb-d3ca-4eff-995a-946672c0a69e?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3230,7 +3257,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:55:28 GMT",
+ "Date": "Wed, 27 Jul 2022 11:37:43 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3238,31 +3265,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "10ce506f-6ac7-4f00-a925-e191ac4b809d",
+ "x-ms-correlation-request-id": "89c815ff-6c4b-4405-8eef-302b362725b9",
"x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T085528Z:10ce506f-6ac7-4f00-a925-e191ac4b809d",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113743Z:89c815ff-6c4b-4405-8eef-302b362725b9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/2aa01cb8-ba11-4b56-a8bf-f22ee4190d1e",
- "name": "2aa01cb8-ba11-4b56-a8bf-f22ee4190d1e",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/11f9a9bb-d3ca-4eff-995a-946672c0a69e",
+ "name": "11f9a9bb-d3ca-4eff-995a-946672c0a69e",
"status": "Succeeded",
- "startTime": "2022-05-31T08:54:58.5536242Z",
- "endTime": "2022-05-31T08:54:59.0224081Z",
+ "startTime": "2022-07-27T11:37:12.8773724Z",
+ "endTime": "2022-07-27T11:37:13.3307115Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/2aa01cb8-ba11-4b56-a8bf-f22ee4190d1e?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/11f9a9bb-d3ca-4eff-995a-946672c0a69e?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3270,7 +3297,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:55:28 GMT",
+ "Date": "Wed, 27 Jul 2022 11:37:43 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3278,27 +3305,28 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "05c2a671-42e3-4704-9551-c74c8b7d0be1",
+ "x-ms-correlation-request-id": "df3b2b29-fb1f-4f89-bd96-00208c9dd1ba",
"x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T085529Z:05c2a671-42e3-4704-9551-c74c8b7d0be1",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113743Z:df3b2b29-fb1f-4f89-bd96-00208c9dd1ba",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A54%3A58.5436463Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T11%3A37%3A12.8879037Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:39:04.4997575Z"
+ "CreatedOnDate": "2022-07-27T11:23:40.2860782Z"
},
"properties": {
- "poolId": "88041560-fc94-8fb3-fbd4-0371a67d6ee7",
+ "poolId": "a8587705-e87e-a19d-5331-11d3608b69ea",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1",
"qosType": "Auto",
- "totalThroughputMibps": 262.144,
+ "totalThroughputMibps": 256.0,
+ "utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
@@ -3306,174 +3334,174 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 31 May 2022 08:55:38 GMT",
+ "Date": "Wed, 27 Jul 2022 11:37:53 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "747eb874-914a-467a-875b-0b86bcd43845",
+ "x-ms-correlation-request-id": "a0d108e9-ce66-4f72-947a-611a61592cf6",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T085539Z:747eb874-914a-467a-875b-0b86bcd43845"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113754Z:a0d108e9-ce66-4f72-947a-611a61592cf6"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 31 May 2022 08:55:48 GMT",
+ "Date": "Wed, 27 Jul 2022 11:38:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "09a0e2d6-0b4c-4947-84ce-410c04207341",
+ "x-ms-correlation-request-id": "4e722672-138b-4b49-87f5-430b39305a17",
"x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T085549Z:09a0e2d6-0b4c-4947-84ce-410c04207341"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113804Z:4e722672-138b-4b49-87f5-430b39305a17"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 31 May 2022 08:56:00 GMT",
+ "Date": "Wed, 27 Jul 2022 11:38:14 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "357070d1-7708-494a-8f39-7b7fdeefc015",
+ "x-ms-correlation-request-id": "bfebbb50-a750-408e-ada5-bc3e957b4ffb",
"x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T085600Z:357070d1-7708-494a-8f39-7b7fdeefc015"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113814Z:bfebbb50-a750-408e-ada5-bc3e957b4ffb"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 31 May 2022 08:56:10 GMT",
+ "Date": "Wed, 27 Jul 2022 11:38:25 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b30ee35d-dac5-4d49-8ab6-d30426f83bad",
+ "x-ms-correlation-request-id": "f5632b59-73fd-486b-b65f-a7b483ebcfc7",
"x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T085610Z:b30ee35d-dac5-4d49-8ab6-d30426f83bad"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113825Z:f5632b59-73fd-486b-b65f-a7b483ebcfc7"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:56:20 GMT",
+ "Date": "Wed, 27 Jul 2022 11:38:35 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "42792ac1-4298-425c-975e-390d1e0a4d84",
+ "x-ms-correlation-request-id": "f73f9dd9-eee4-4449-a117-26b51b8798ce",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T085620Z:42792ac1-4298-425c-975e-390d1e0a4d84"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113835Z:f73f9dd9-eee4-4449-a117-26b51b8798ce"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/eastus/operationResults/ef07d010-e1e4-4d48-b154-8d10771cb8dc?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cab67aef-b9ca-4d59-89c3-fe0cdd0b4988?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 08:56:21 GMT",
+ "Date": "Wed, 27 Jul 2022 11:38:37 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ef07d010-e1e4-4d48-b154-8d10771cb8dc?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cab67aef-b9ca-4d59-89c3-fe0cdd0b4988?api-version=2022-03-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": "65380406-f2cc-4876-8d0d-e824ff4195a8",
+ "x-ms-correlation-request-id": "d8e85555-1023-4b35-8044-d255f3a72bd8",
"x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T085621Z:65380406-f2cc-4876-8d0d-e824ff4195a8",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113837Z:d8e85555-1023-4b35-8044-d255f3a72bd8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ef07d010-e1e4-4d48-b154-8d10771cb8dc?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cab67aef-b9ca-4d59-89c3-fe0cdd0b4988?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3481,7 +3509,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:56:51 GMT",
+ "Date": "Wed, 27 Jul 2022 11:39:06 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3489,31 +3517,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "649974f8-44ca-4137-a4e6-a39e4d98c051",
+ "x-ms-correlation-request-id": "f53218f1-2731-4140-833d-a5faf939de88",
"x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T085651Z:649974f8-44ca-4137-a4e6-a39e4d98c051",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113907Z:f53218f1-2731-4140-833d-a5faf939de88",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ef07d010-e1e4-4d48-b154-8d10771cb8dc",
- "name": "ef07d010-e1e4-4d48-b154-8d10771cb8dc",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cab67aef-b9ca-4d59-89c3-fe0cdd0b4988",
+ "name": "cab67aef-b9ca-4d59-89c3-fe0cdd0b4988",
"status": "Succeeded",
- "startTime": "2022-05-31T08:56:21.5224327Z",
- "endTime": "2022-05-31T08:56:21.5536857Z",
+ "startTime": "2022-07-27T11:38:37.1115723Z",
+ "endTime": "2022-07-27T11:38:37.2053019Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ef07d010-e1e4-4d48-b154-8d10771cb8dc?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cab67aef-b9ca-4d59-89c3-fe0cdd0b4988?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3521,7 +3549,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:56:51 GMT",
+ "Date": "Wed, 27 Jul 2022 11:39:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3529,19 +3557,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a5c73b97-0cbc-48ce-84f1-55e06bf5f227",
+ "x-ms-correlation-request-id": "3b5212f2-6608-45ac-b6ba-1f918d80c7f2",
"x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T085651Z:a5c73b97-0cbc-48ce-84f1-55e06bf5f227",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113907Z:3b5212f2-6608-45ac-b6ba-1f918d80c7f2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A56%3A21.5165503Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T11%3A38%3A37.1183586Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:38:30.3416382Z"
+ "CreatedOnDate": "2022-07-27T11:23:06.2165686Z"
},
"properties": {
"encryption": {
@@ -3551,44 +3579,79 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:38:32.2565867Z",
"createdByType": "Application",
+ "createdAt": "2022-07-27T11:23:07.3057971Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:38:32.2565867Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T11:23:07.3057971Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:56:53 GMT",
+ "Date": "Wed, 27 Jul 2022 11:39:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "73cd29e6-69f0-4895-bc52-c1e53feaa330",
+ "x-ms-correlation-request-id": "c6fb8219-7995-4e04-bf16-60f3f3fcb7a0",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T085654Z:73cd29e6-69f0-4895-bc52-c1e53feaa330"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113908Z:c6fb8219-7995-4e04-bf16-60f3f3fcb7a0"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5?api-version=2021-08-01",
+ "RequestMethod": "DELETE",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "0",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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/bfa0186d-7df8-4b80-871e-0ef2949a532a?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "0",
+ "Date": "Wed, 27 Jul 2022 11:39:08 GMT",
+ "Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/bfa0186d-7df8-4b80-871e-0ef2949a532a?api-version=2021-08-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": "53bcf8b1-e162-4da8-8512-de7bbc482a70",
+ "x-ms-correlation-request-id": "80b6ce96-22ea-43aa-a973-507c59b2e8bb",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T113909Z:80b6ce96-22ea-43aa-a973-507c59b2e8bb"
+ },
+ "ResponseBody": null
}
],
"Variables": {}
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 2561b3dfb766..8fd62871b3d3 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 31 May 2022 16:10:59 GMT",
+ "Date": "Wed, 27 Jul 2022 12:17: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.12821.9 - NEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 31 May 2022 16:10:59 GMT",
+ "Date": "Wed, 27 Jul 2022 12:17: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.12794.7 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - WEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "b304651a-e2d9-4703-b994-8da211427e1b",
+ "client-request-id": "ebfd2046-1d60-4e32-80b0-6d869e398a98",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "b304651a-e2d9-4703-b994-8da211427e1b",
+ "client-request-id": "ebfd2046-1d60-4e32-80b0-6d869e398a98",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:10:59 GMT",
+ "Date": "Wed, 27 Jul 2022 12:17:50 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12821.9 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - NEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,67 +213,79 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "22",
+ "Content-Length": "93",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "eastus"
+ "location": "westus2",
+ "properties": {
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ }
+ }
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0df296e0-6e13-4248-894d-d44251e6e334?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/cef22281-f405-445b-a1f9-a7ad97b142e2?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Length": "686",
+ "Content-Length": "746",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:11:04 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T16%3A11%3A03.9116436Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 12:17:58 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Retry-After": "3",
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "821ae69d-8587-4d81-aacd-825d3cb8d6fb",
+ "x-ms-arm-service-request-id": "be6d9689-e95b-4b90-8750-1433de2e64f3",
+ "x-ms-correlation-request-id": "f18f24d7-8373-41f2-b88c-8217bc3b59d1",
"x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161104Z:821ae69d-8587-4d81-aacd-825d3cb8d6fb",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T121759Z:f18f24d7-8373-41f2-b88c-8217bc3b59d1"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
- "type": "Microsoft.NetApp/netAppAccounts",
- "etag": "W/\u0022datetime\u00272022-05-31T16%3A11%3A03.9116436Z\u0027\u0022",
- "location": "eastus",
+ "name": "sdk-python-tests-vnet-westus2-503c258e",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e",
+ "etag": "W/\u00221342fd48-101e-49da-890d-289057e2741b\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T16:11:01.5779238Z"
+ "CreatedOnDate": "2022-07-27T12:17:52.9327824Z"
},
"properties": {
- "provisioningState": "Creating"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T16:11:03.3229881Z",
- "createdByType": "Application",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T16:11:03.3229881Z",
- "lastModifiedByType": "Application"
+ "provisioningState": "Updating",
+ "resourceGuid": "7147478d-0711-4847-8962-a1d22f78c08d",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0df296e0-6e13-4248-894d-d44251e6e334?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/cef22281-f405-445b-a1f9-a7ad97b142e2?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,39 +293,34 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:11:34 GMT",
+ "Date": "Wed, 27 Jul 2022 12:18:01 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "29ae7adb-cc8d-4ca2-8781-4e501d8ec944",
+ "x-ms-arm-service-request-id": "3444d37f-09f3-48a3-8046-32e49b581927",
+ "x-ms-correlation-request-id": "3db6ca76-914f-4ce0-8509-ad5bd0292d99",
"x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161135Z:29ae7adb-cc8d-4ca2-8781-4e501d8ec944",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T121802Z:3db6ca76-914f-4ce0-8509-ad5bd0292d99"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0df296e0-6e13-4248-894d-d44251e6e334",
- "name": "0df296e0-6e13-4248-894d-d44251e6e334",
- "status": "Succeeded",
- "startTime": "2022-05-31T16:11:03.9103343Z",
- "endTime": "2022-05-31T16:11:03.9572194Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
- }
+ "status": "Succeeded"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,119 +328,129 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:11:34 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T16%3A11%3A03.9624239Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 12:18:02 GMT",
+ "ETag": "W/\u0022c3f1f28b-6932-4057-bf99-6d6eb3f0a1e9\u0022",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "eb1e2ad2-efce-4260-8d8e-07e457bab4f6",
+ "x-ms-arm-service-request-id": "840621f1-9508-4f69-9472-dae8b29f5b3c",
+ "x-ms-correlation-request-id": "1ba37f02-9b41-4d88-a28d-0d73cce62c72",
"x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161135Z:eb1e2ad2-efce-4260-8d8e-07e457bab4f6",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T121802Z:1ba37f02-9b41-4d88-a28d-0d73cce62c72"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
- "type": "Microsoft.NetApp/netAppAccounts",
- "etag": "W/\u0022datetime\u00272022-05-31T16%3A11%3A03.9624239Z\u0027\u0022",
- "location": "eastus",
+ "name": "sdk-python-tests-vnet-westus2-503c258e",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e",
+ "etag": "W/\u0022c3f1f28b-6932-4057-bf99-6d6eb3f0a1e9\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T16:11:01.5779238Z"
+ "CreatedOnDate": "2022-07-27T12:17:52.9327824Z"
},
"properties": {
- "encryption": {
- "keySource": "Microsoft.NetApp"
+ "provisioningState": "Succeeded",
+ "resourceGuid": "7147478d-0711-4847-8962-a1d22f78c08d",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
},
- "provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T16:11:03.3229881Z",
- "createdByType": "Application",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T16:11:03.3229881Z",
- "lastModifiedByType": "Application"
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "137",
+ "Content-Length": "151",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "eastus",
"properties": {
- "size": 4398046511104,
- "serviceLevel": "Premium",
- "coolAccess": false,
- "encryptionType": "Single"
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "properties": {
+ "serviceName": "Microsoft.Netapp/volumes"
+ }
+ }
+ ]
}
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/126bc4dc-7e54-4e3d-83e4-e6ca5e018abe?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/13ced553-22ff-4baf-a08c-3fc391ea29d0?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Length": "903",
+ "Content-Length": "1318",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:11:36 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T16%3A11%3A36.979308Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 12:18:02 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Retry-After": "3",
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "43701f29-23bf-4064-9c80-699769caa712",
+ "x-ms-arm-service-request-id": "e115b756-232b-470d-a293-45f0642c1cf6",
+ "x-ms-correlation-request-id": "f3c7f01d-7769-4997-a874-3d466df5f9d9",
"x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161137Z:43701f29-23bf-4064-9c80-699769caa712",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T121803Z:f3c7f01d-7769-4997-a874-3d466df5f9d9"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools",
- "etag": "W/\u0022datetime\u00272022-05-31T16%3A11%3A36.979308Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-05-31T16:11:35.5383463Z"
- },
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default",
+ "etag": "W/\u00227c84ff4d-d80a-4c70-98ec-8acde4d8c4c4\u0022",
"properties": {
- "serviceLevel": "Premium",
- "size": 4398046511104,
- "totalThroughputMibps": 0.0,
- "utilizedThroughputMibps": 0.0,
- "encryptionType": "Single",
- "coolAccess": false,
- "provisioningState": "Creating"
+ "provisioningState": "Updating",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u00227c84ff4d-d80a-4c70-98ec-8acde4d8c4c4\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
},
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T16:11:36.6981491Z",
- "createdByType": "Application",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T16:11:36.6981491Z",
- "lastModifiedByType": "Application"
- }
+ "type": "Microsoft.Network/virtualNetworks/subnets"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/126bc4dc-7e54-4e3d-83e4-e6ca5e018abe?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/13ced553-22ff-4baf-a08c-3fc391ea29d0?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -440,39 +458,34 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:12:07 GMT",
+ "Date": "Wed, 27 Jul 2022 12:18:06 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "63e795fa-fd8e-4d5b-9bfb-abdd9f046e28",
+ "x-ms-arm-service-request-id": "f8c628d9-f0ab-498c-af58-b9c2ae9ecbd8",
+ "x-ms-correlation-request-id": "2eee9690-0de0-42eb-aab1-df6f8018f99b",
"x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161207Z:63e795fa-fd8e-4d5b-9bfb-abdd9f046e28",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T121806Z:2eee9690-0de0-42eb-aab1-df6f8018f99b"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/126bc4dc-7e54-4e3d-83e4-e6ca5e018abe",
- "name": "126bc4dc-7e54-4e3d-83e4-e6ca5e018abe",
- "status": "Succeeded",
- "startTime": "2022-05-31T16:11:36.9822549Z",
- "endTime": "2022-05-31T16:11:37.2947675Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
- }
+ "status": "Succeeded"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -480,1163 +493,327 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:12:07 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T16%3A11%3A37.2885173Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 12:18:06 GMT",
+ "ETag": "W/\u00228000af48-ce4e-41a8-9e95-1d0fa9cf494a\u0022",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "5801fe6b-7093-46ae-ba36-199974b19c55",
+ "x-ms-arm-service-request-id": "caf22888-84aa-4497-b798-32a441c9c7dd",
+ "x-ms-correlation-request-id": "59ae76dc-e551-47c6-81d5-d41d487bd7a1",
"x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161208Z:5801fe6b-7093-46ae-ba36-199974b19c55",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools",
- "etag": "W/\u0022datetime\u00272022-05-31T16%3A11%3A37.2885173Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-05-31T16:11:35.5383463Z"
- },
- "properties": {
- "poolId": "6029fb36-1c88-6116-5a78-356dd05be958",
- "serviceLevel": "Premium",
- "size": 4398046511104,
- "qosType": "Auto",
- "totalThroughputMibps": 262.144,
- "utilizedThroughputMibps": 0.0,
- "encryptionType": "Single",
- "coolAccess": false,
- "provisioningState": "Succeeded"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "PUT",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "755",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
- },
- "RequestBody": {
- "location": "eastus",
- "properties": {
- "creationToken": "sdk-py-tests-vol-1",
- "serviceLevel": "Premium",
- "usageThreshold": 107374182400,
- "protocolTypes": [
- "NFSv3"
- ],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "coolAccess": false,
- "unixPermissions": "0770",
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0
- }
- },
- "StatusCode": 201,
- "ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/29f43bf5-3155-42b5-b1a9-b6a01bdeb12c?api-version=2022-01-01",
- "Cache-Control": "no-cache",
- "Content-Length": "1524",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:12:20 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T16%3A12%3A19.5914114Z\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": "c0fe1027-f142-43b6-9693-afed4353eebd",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161220Z:c0fe1027-f142-43b6-9693-afed4353eebd",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T121807Z:59ae76dc-e551-47c6-81d5-d41d487bd7a1"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-31T16%3A12%3A19.5914114Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-05-31T16:12:18.4235011Z"
- },
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default",
+ "etag": "W/\u00228000af48-ce4e-41a8-9e95-1d0fa9cf494a\u0022",
"properties": {
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "usageThreshold": 107374182400,
- "protocolTypes": [
- "NFSv3"
+ "provisioningState": "Succeeded",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u00228000af48-ce4e-41a8-9e95-1d0fa9cf494a\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Creating"
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
},
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T16:12:19.2295928Z",
- "createdByType": "Application",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T16:12:19.2295928Z",
- "lastModifiedByType": "Application"
- }
+ "type": "Microsoft.Network/virtualNetworks/subnets"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/29f43bf5-3155-42b5-b1a9-b6a01bdeb12c?api-version=2022-01-01",
+ "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-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "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, 31 May 2022 16:12:49 GMT",
- "Expires": "-1",
- "Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Date": "Wed, 27 Jul 2022 12:18:07 GMT",
+ "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
+ "Set-Cookie": "[set-cookie;]",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
- "Transfer-Encoding": "chunked",
- "Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "576ef59c-20d9-4344-baaf-666898fba357",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161250Z:576ef59c-20d9-4344-baaf-666898fba357",
- "X-Powered-By": "ASP.NET"
+ "x-ms-ests-server": "2.1.13355.6 - NEULR1 ProdSlices",
+ "X-XSS-Protection": "0"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/29f43bf5-3155-42b5-b1a9-b6a01bdeb12c",
- "name": "29f43bf5-3155-42b5-b1a9-b6a01bdeb12c",
- "status": "Creating",
- "startTime": "2022-05-31T16:12:19.5912939Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
+ "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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/29f43bf5-3155-42b5-b1a9-b6a01bdeb12c?api-version=2022-01-01",
+ "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": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.0b3 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, 31 May 2022 16:13: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": "4d7ecdc7-c7a2-41ce-81cf-af2b69991129",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161320Z:4d7ecdc7-c7a2-41ce-81cf-af2b69991129",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/29f43bf5-3155-42b5-b1a9-b6a01bdeb12c",
- "name": "29f43bf5-3155-42b5-b1a9-b6a01bdeb12c",
- "status": "Creating",
- "startTime": "2022-05-31T16:12:19.5912939Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/29f43bf5-3155-42b5-b1a9-b6a01bdeb12c?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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, 31 May 2022 16:13: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": "a5242d07-fa2b-40bd-9a62-41b118855abb",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161351Z:a5242d07-fa2b-40bd-9a62-41b118855abb",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/29f43bf5-3155-42b5-b1a9-b6a01bdeb12c",
- "name": "29f43bf5-3155-42b5-b1a9-b6a01bdeb12c",
- "status": "Creating",
- "startTime": "2022-05-31T16:12:19.5912939Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/29f43bf5-3155-42b5-b1a9-b6a01bdeb12c?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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, 31 May 2022 16:14: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": "3e423262-f728-42dd-8b61-eb3bdfbdad01",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161421Z:3e423262-f728-42dd-8b61-eb3bdfbdad01",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/29f43bf5-3155-42b5-b1a9-b6a01bdeb12c",
- "name": "29f43bf5-3155-42b5-b1a9-b6a01bdeb12c",
- "status": "Creating",
- "startTime": "2022-05-31T16:12:19.5912939Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/29f43bf5-3155-42b5-b1a9-b6a01bdeb12c?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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, 31 May 2022 16:14: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": "e1b9410a-6cf0-41e6-b73d-fce162b80d84",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161451Z:e1b9410a-6cf0-41e6-b73d-fce162b80d84",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/29f43bf5-3155-42b5-b1a9-b6a01bdeb12c",
- "name": "29f43bf5-3155-42b5-b1a9-b6a01bdeb12c",
- "status": "Creating",
- "startTime": "2022-05-31T16:12:19.5912939Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/29f43bf5-3155-42b5-b1a9-b6a01bdeb12c?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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, 31 May 2022 16:15: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": "c883d41c-9943-4b88-8b0e-3d5a8b2fa1d4",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161521Z:c883d41c-9943-4b88-8b0e-3d5a8b2fa1d4",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/29f43bf5-3155-42b5-b1a9-b6a01bdeb12c",
- "name": "29f43bf5-3155-42b5-b1a9-b6a01bdeb12c",
- "status": "Creating",
- "startTime": "2022-05-31T16:12:19.5912939Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/29f43bf5-3155-42b5-b1a9-b6a01bdeb12c?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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, 31 May 2022 16:15: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": "4e098adb-b69c-473c-85d9-063bee53dd01",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161552Z:4e098adb-b69c-473c-85d9-063bee53dd01",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/29f43bf5-3155-42b5-b1a9-b6a01bdeb12c",
- "name": "29f43bf5-3155-42b5-b1a9-b6a01bdeb12c",
- "status": "Creating",
- "startTime": "2022-05-31T16:12:19.5912939Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/29f43bf5-3155-42b5-b1a9-b6a01bdeb12c?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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, 31 May 2022 16:16: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": "f884ba2c-076b-4c2d-9c93-d86cb8a89d04",
- "x-ms-ratelimit-remaining-subscription-reads": "11988",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161622Z:f884ba2c-076b-4c2d-9c93-d86cb8a89d04",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/29f43bf5-3155-42b5-b1a9-b6a01bdeb12c",
- "name": "29f43bf5-3155-42b5-b1a9-b6a01bdeb12c",
- "status": "Succeeded",
- "startTime": "2022-05-31T16:12:19.5912939Z",
- "endTime": "2022-05-31T16:16:15.0038346Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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, 31 May 2022 16:16:21 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T16%3A16%3A14.9989266Z\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": "da631db2-1eb0-4f47-ac71-f2402bc70961",
- "x-ms-ratelimit-remaining-subscription-reads": "11987",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161622Z:da631db2-1eb0-4f47-ac71-f2402bc70961",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-31T16%3A16%3A14.9989266Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-05-31T16:12:18.4235011Z"
- },
- "properties": {
- "fileSystemId": "654dff83-9d5b-9061-0908-7acdf8b891b7",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_2a2b4824",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "654dff83-9d5b-9061-0908-7acdf8b891b7",
- "fileSystemId": "654dff83-9d5b-9061-0908-7acdf8b891b7",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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, 31 May 2022 16:16:32 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T16%3A16%3A14.9989266Z\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": "8ed86a9f-e550-4e52-8d66-1d66455f213a",
- "x-ms-ratelimit-remaining-subscription-reads": "11986",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161632Z:8ed86a9f-e550-4e52-8d66-1d66455f213a",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-31T16%3A16%3A14.9989266Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-05-31T16:12:18.4235011Z"
- },
- "properties": {
- "fileSystemId": "654dff83-9d5b-9061-0908-7acdf8b891b7",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_2a2b4824",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "654dff83-9d5b-9061-0908-7acdf8b891b7",
- "fileSystemId": "654dff83-9d5b-9061-0908-7acdf8b891b7",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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, 31 May 2022 16:16: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": "39520cbd-125a-41ce-98cc-bd0af8b175e2",
- "x-ms-ratelimit-remaining-subscription-reads": "11985",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161633Z:39520cbd-125a-41ce-98cc-bd0af8b175e2",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "value": [
- {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "name": "sdk-py-tests-acc-1/cbsvault",
- "type": "Microsoft.NetApp/netAppAccounts/vaults",
- "properties": {
- "enabled": true,
- "vaultId": "770fecc1-765b-11eb-9c9c-6ebf63ed0b3e"
- }
- }
- ]
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "PATCH",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "401",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "backupEnabled": true
- }
- },
- "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/eastus/operationResults/536f28b4-c056-4d35-8f43-5db8f426b82f?api-version=2022-01-01",
- "Cache-Control": "no-cache",
- "Content-Length": "2077",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:16:32 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T16%3A16%3A33.5094201Z\u0027\u0022",
- "Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/536f28b4-c056-4d35-8f43-5db8f426b82f?api-version=2022-01-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": "27c71c22-8c6a-4d21-a6cc-cd04f3b60e31",
- "x-ms-ratelimit-remaining-subscription-writes": "1196",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161633Z:27c71c22-8c6a-4d21-a6cc-cd04f3b60e31",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-31T16%3A16%3A33.5094201Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-05-31T16:12:18.4235011Z"
- },
- "properties": {
- "provisioningState": "Patching",
- "fileSystemId": "654dff83-9d5b-9061-0908-7acdf8b891b7",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_2a2b4824",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "654dff83-9d5b-9061-0908-7acdf8b891b7",
- "fileSystemId": "654dff83-9d5b-9061-0908-7acdf8b891b7",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/536f28b4-c056-4d35-8f43-5db8f426b82f?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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, 31 May 2022 16: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": "57007f34-2213-43e4-8b84-2aa3c70b94fb",
- "x-ms-ratelimit-remaining-subscription-reads": "11984",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161703Z:57007f34-2213-43e4-8b84-2aa3c70b94fb",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/536f28b4-c056-4d35-8f43-5db8f426b82f",
- "name": "536f28b4-c056-4d35-8f43-5db8f426b82f",
- "status": "Succeeded",
- "startTime": "2022-05-31T16:16:33.5040515Z",
- "endTime": "2022-05-31T16:16:42.2198137Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/536f28b4-c056-4d35-8f43-5db8f426b82f?api-version=2022-01-01\u0026operationResultResponseType=Location",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "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, 31 May 2022 16:17:02 GMT",
- "Expires": "-1",
- "Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Date": "Wed, 27 Jul 2022 12:18:07 GMT",
+ "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
+ "Set-Cookie": "[set-cookie;]",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
- "Transfer-Encoding": "chunked",
- "Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "30e49820-28b1-4f6a-8054-6c3f122e604e",
- "x-ms-ratelimit-remaining-subscription-reads": "11983",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161703Z:30e49820-28b1-4f6a-8054-6c3f122e604e",
- "X-Powered-By": "ASP.NET"
+ "x-ms-ests-server": "2.1.13355.6 - WEULR1 ProdSlices",
+ "X-XSS-Protection": "0"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-31T16%3A16%3A42.2124797Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-05-31T16:16:33.2606143Z"
- },
- "properties": {
- "dataProtection": {
- "backup": {
- "backupEnabled": true,
- "policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
- }
+ "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"
+ ]
},
- "fileSystemId": "654dff83-9d5b-9061-0908-7acdf8b891b7",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5",
- "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"
- }
+ {
+ "preferred_network": "login.partner.microsoftonline.cn",
+ "preferred_cache": "login.partner.microsoftonline.cn",
+ "aliases": [
+ "login.partner.microsoftonline.cn",
+ "login.chinacloudapi.cn"
]
},
- "protocolTypes": [
- "NFSv3"
- ],
- "baremetalTenantId": "baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_2a2b4824",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "6029fb36-1c88-6116-5a78-356dd05be958",
- "mountTargets": [
- {
- "provisioningState": "",
- "mountTargetId": "654dff83-9d5b-9061-0908-7acdf8b891b7",
- "fileSystemId": "654dff83-9d5b-9061-0908-7acdf8b891b7",
- "startIp": "",
- "endIp": "",
- "gateway": "",
- "netmask": "",
- "subnet": "",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "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",
- "provisioningState": "Succeeded"
- },
- "systemData": {
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T16:16:33.4026655Z",
- "lastModifiedByType": "Application"
- }
+ {
+ "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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "PUT",
+ "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": "0051f480-5894-439a-b925-d7e065daa761",
"Connection": "keep-alive",
- "Content-Length": "68",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
- },
- "RequestBody": {
- "location": "eastus",
- "properties": {
- "useExistingSnapshot": false
- }
- },
- "StatusCode": 201,
- "ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e8bd9e46-9c2d-4e42-81b2-a762202b4757?api-version=2022-01-01",
- "Cache-Control": "no-cache",
- "Content-Length": "510",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:17:03 GMT",
- "Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e8bd9e46-9c2d-4e42-81b2-a762202b4757?api-version=2022-01-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": "464bd6ae-5b49-4906-bb13-7cb42644b866",
- "x-ms-ratelimit-remaining-subscription-writes": "1195",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161704Z:464bd6ae-5b49-4906-bb13-7cb42644b866",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
- "properties": {
- "provisioningState": "Creating",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e8bd9e46-9c2d-4e42-81b2-a762202b4757?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "281",
+ "Content-Type": "application/x-www-form-urlencoded",
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.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.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
- "RequestBody": null,
+ "RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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-cache",
- "Content-Encoding": "gzip",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:17: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": "d7aa403c-ac53-407f-9bec-7df2bf8b8dcf",
- "x-ms-ratelimit-remaining-subscription-reads": "11982",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161734Z:d7aa403c-ac53-407f-9bec-7df2bf8b8dcf",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e8bd9e46-9c2d-4e42-81b2-a762202b4757",
- "name": "e8bd9e46-9c2d-4e42-81b2-a762202b4757",
- "status": "Succeeded",
- "startTime": "2022-05-31T16:17:04.3194722Z",
- "endTime": "2022-05-31T16:17:04.7257162Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e8bd9e46-9c2d-4e42-81b2-a762202b4757?api-version=2022-01-01\u0026operationResultResponseType=Location",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
- },
- "RequestBody": null,
- "StatusCode": 201,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Length": "730",
+ "Cache-Control": "no-store, no-cache",
+ "client-request-id": "0051f480-5894-439a-b925-d7e065daa761",
+ "Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:17:34 GMT",
+ "Date": "Wed, 27 Jul 2022 12:18:07 GMT",
"Expires": "-1",
+ "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Set-Cookie": "[set-cookie;]",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c39acf15-c38d-4097-b292-523d63385fb8",
- "x-ms-ratelimit-remaining-subscription-reads": "11981",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161734Z:c39acf15-c38d-4097-b292-523d63385fb8",
- "X-Powered-By": "ASP.NET"
+ "x-ms-clitelem": "1,0,0,,",
+ "x-ms-ests-server": "2.1.13355.6 - WEULR1 ProdSlices",
+ "X-XSS-Protection": "0"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "etag": "5/31/2022 4:17:04 PM",
- "location": "",
- "properties": {
- "fileSystemId": "654dff83-9d5b-9061-0908-7acdf8b891b7",
- "creationDate": "0001-01-01T00:00:00Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
- "size": 0,
- "backupType": "Manual",
- "failureReason": "None",
- "useExistingSnapshot": false,
- "provisioningState": "Creating"
- }
+ "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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e?api-version=2022-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "23",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "RequestBody": null,
- "StatusCode": 200,
+ "RequestBody": {
+ "location": "westus2"
+ },
+ "StatusCode": 201,
"ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/42d03161-b6a4-4268-a862-705b6aef30c9?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "702",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:17:44 GMT",
+ "Date": "Wed, 27 Jul 2022 12:18:11 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T12%3A18%3A11.0904051Z\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": "5943a940-49ba-4515-8881-be45200251c8",
- "x-ms-ratelimit-remaining-subscription-reads": "11980",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161745Z:5943a940-49ba-4515-8881-be45200251c8",
+ "x-ms-correlation-request-id": "4c83b060-35f8-4af1-ad29-ac1e437e28d8",
+ "x-ms-ratelimit-remaining-subscription-writes": "1197",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T121812Z:4c83b060-35f8-4af1-ad29-ac1e437e28d8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T12%3A18%3A11.0904051Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T12:18:08.5934222Z"
+ },
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "provisioningState": "Creating"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-27T12:18:10.1692771Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T12:18:10.1692771Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/42d03161-b6a4-4268-a862-705b6aef30c9?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1644,7 +821,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:17:55 GMT",
+ "Date": "Wed, 27 Jul 2022 12:18:42 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1652,36 +829,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "be74d452-e124-4548-a414-b752da0f6f8b",
- "x-ms-ratelimit-remaining-subscription-reads": "11979",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161755Z:be74d452-e124-4548-a414-b752da0f6f8b",
+ "x-ms-correlation-request-id": "df010c10-20cd-4c94-b6f3-4d078e8664cb",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T121842Z:df010c10-20cd-4c94-b6f3-4d078e8664cb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/42d03161-b6a4-4268-a862-705b6aef30c9",
+ "name": "42d03161-b6a4-4268-a862-705b6aef30c9",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T12:18:11.0914854Z",
+ "endTime": "2022-07-27T12:18:11.1383397Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1689,7 +861,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:18:05 GMT",
+ "Date": "Wed, 27 Jul 2022 12:18:42 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T12%3A18%3A11.1550861Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1697,81 +870,128 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d8d05cea-3ddd-4683-9b6b-3c5417353837",
- "x-ms-ratelimit-remaining-subscription-reads": "11978",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161806Z:d8d05cea-3ddd-4683-9b6b-3c5417353837",
+ "x-ms-correlation-request-id": "c46ebdff-619b-4ce0-a692-095a3b234dcd",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T121843Z:c46ebdff-619b-4ce0-a692-095a3b234dcd",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T12%3A18%3A11.1550861Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T12:18:08.5934222Z"
+ },
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "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"
+ },
+ "provisioningState": "Succeeded"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-27T12:18:10.1692771Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T12:18:10.1692771Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "138",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "RequestBody": null,
- "StatusCode": 200,
+ "RequestBody": {
+ "location": "westus2",
+ "properties": {
+ "size": 4398046511104,
+ "serviceLevel": "Premium",
+ "coolAccess": false,
+ "encryptionType": "Single"
+ }
+ },
+ "StatusCode": 201,
"ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f14795aa-8c2a-4127-9491-5a9a4e861729?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "918",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:18:15 GMT",
+ "Date": "Wed, 27 Jul 2022 12:18:46 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T12%3A18%3A45.2138735Z\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": "a67d3999-02ab-47ca-9050-65025fa831b3",
- "x-ms-ratelimit-remaining-subscription-reads": "11977",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161816Z:a67d3999-02ab-47ca-9050-65025fa831b3",
+ "x-ms-correlation-request-id": "2b90324a-37e0-4d4a-b55a-76f15b1066e7",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T121846Z:2b90324a-37e0-4d4a-b55a-76f15b1066e7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T12%3A18%3A45.2138735Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T12:18:43.4109188Z"
+ },
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "serviceLevel": "Premium",
+ "size": 4398046511104,
+ "totalThroughputMibps": 0.0,
+ "utilizedThroughputMibps": 0.0,
+ "encryptionType": "Single",
+ "coolAccess": false,
+ "provisioningState": "Creating"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-27T12:18:45.0299035Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T12:18:45.0299035Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f14795aa-8c2a-4127-9491-5a9a4e861729?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1779,7 +999,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:18:26 GMT",
+ "Date": "Wed, 27 Jul 2022 12:19:15 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1787,36 +1007,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e4c01bdd-2e8f-4656-a687-24c0f7364709",
- "x-ms-ratelimit-remaining-subscription-reads": "11976",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161826Z:e4c01bdd-2e8f-4656-a687-24c0f7364709",
+ "x-ms-correlation-request-id": "5247558c-1e0c-41ce-b805-44b553878e2f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T121916Z:5247558c-1e0c-41ce-b805-44b553878e2f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f14795aa-8c2a-4127-9491-5a9a4e861729",
+ "name": "f14795aa-8c2a-4127-9491-5a9a4e861729",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T12:18:45.22151Z",
+ "endTime": "2022-07-27T12:18:45.3621306Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1824,7 +1039,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:18:36 GMT",
+ "Date": "Wed, 27 Jul 2022 12:19:16 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T12%3A18%3A45.3771467Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1832,81 +1048,140 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "de54ac6a-b69e-4b26-b5bf-39db188fafe9",
- "x-ms-ratelimit-remaining-subscription-reads": "11975",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161837Z:de54ac6a-b69e-4b26-b5bf-39db188fafe9",
+ "x-ms-correlation-request-id": "0b7a8575-b6b0-42c1-b802-b14b2c622fd9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T121917Z:0b7a8575-b6b0-42c1-b802-b14b2c622fd9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T12%3A18%3A45.3771467Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T12:18:43.4109188Z"
+ },
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "poolId": "eea2892a-e2d1-b9e2-3569-3e7a76189d0c",
+ "serviceLevel": "Premium",
+ "size": 4398046511104,
+ "qosType": "Auto",
+ "totalThroughputMibps": 256.0,
+ "utilizedThroughputMibps": 0.0,
+ "encryptionType": "Single",
+ "coolAccess": false,
+ "provisioningState": "Succeeded"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "779",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "RequestBody": null,
- "StatusCode": 200,
+ "RequestBody": {
+ "location": "westus2",
+ "properties": {
+ "creationToken": "sdk-py-tests-vol-3-503c258e",
+ "serviceLevel": "Premium",
+ "usageThreshold": 107374182400,
+ "protocolTypes": [
+ "NFSv3"
+ ],
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default",
+ "networkFeatures": "Basic",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "coolAccess": false,
+ "unixPermissions": "0770",
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0
+ }
+ },
+ "StatusCode": 201,
"ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e507d53-a35d-4121-8cfb-e4063aa2cdbc?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "1577",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:18:46 GMT",
+ "Date": "Wed, 27 Jul 2022 12:19:29 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T12%3A19%3A28.8508998Z\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": "c93efa3e-b69e-4f8b-a69d-780874ebd5a3",
- "x-ms-ratelimit-remaining-subscription-reads": "11974",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161847Z:c93efa3e-b69e-4f8b-a69d-780874ebd5a3",
+ "x-ms-correlation-request-id": "c1163ff8-3b80-4867-ad89-2aa8e862f0c6",
+ "x-ms-ratelimit-remaining-subscription-writes": "1195",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T121929Z:c1163ff8-3b80-4867-ad89-2aa8e862f0c6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T12%3A19%3A28.8508998Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T12:19:27.4621111Z"
+ },
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-3-503c258e",
+ "usageThreshold": 107374182400,
+ "protocolTypes": [
+ "NFSv3"
+ ],
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default",
+ "networkFeatures": "Basic",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Creating"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-27T12:19:28.5591095Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T12:19:28.5591095Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e507d53-a35d-4121-8cfb-e4063aa2cdbc?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1914,7 +1189,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:18:57 GMT",
+ "Date": "Wed, 27 Jul 2022 12:19:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1922,36 +1197,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8589811b-86dd-44a9-8a38-ace500c9b52c",
- "x-ms-ratelimit-remaining-subscription-reads": "11973",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161857Z:8589811b-86dd-44a9-8a38-ace500c9b52c",
+ "x-ms-correlation-request-id": "2420414a-f716-46fc-b8ad-203dcacdbb4f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122000Z:2420414a-f716-46fc-b8ad-203dcacdbb4f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e507d53-a35d-4121-8cfb-e4063aa2cdbc",
+ "name": "7e507d53-a35d-4121-8cfb-e4063aa2cdbc",
+ "status": "Creating",
+ "startTime": "2022-07-27T12:19:28.8532872Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e507d53-a35d-4121-8cfb-e4063aa2cdbc?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1959,7 +1229,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:19:08 GMT",
+ "Date": "Wed, 27 Jul 2022 12:20:29 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1967,36 +1237,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9b18e644-01fb-46b6-a766-90c05a6ab929",
- "x-ms-ratelimit-remaining-subscription-reads": "11972",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161908Z:9b18e644-01fb-46b6-a766-90c05a6ab929",
+ "x-ms-correlation-request-id": "14ec6c90-291c-484a-9dac-f26dbcf72bbd",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122030Z:14ec6c90-291c-484a-9dac-f26dbcf72bbd",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e507d53-a35d-4121-8cfb-e4063aa2cdbc",
+ "name": "7e507d53-a35d-4121-8cfb-e4063aa2cdbc",
+ "status": "Creating",
+ "startTime": "2022-07-27T12:19:28.8532872Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e507d53-a35d-4121-8cfb-e4063aa2cdbc?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2004,7 +1269,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:19:18 GMT",
+ "Date": "Wed, 27 Jul 2022 12:21:00 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2012,36 +1277,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "cd83d369-ff6a-4278-9c26-7fea091fb037",
- "x-ms-ratelimit-remaining-subscription-reads": "11971",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161918Z:cd83d369-ff6a-4278-9c26-7fea091fb037",
+ "x-ms-correlation-request-id": "af7011f6-5892-4095-beea-3a140d99a22e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122100Z:af7011f6-5892-4095-beea-3a140d99a22e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e507d53-a35d-4121-8cfb-e4063aa2cdbc",
+ "name": "7e507d53-a35d-4121-8cfb-e4063aa2cdbc",
+ "status": "Creating",
+ "startTime": "2022-07-27T12:19:28.8532872Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e507d53-a35d-4121-8cfb-e4063aa2cdbc?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2049,7 +1309,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:19:28 GMT",
+ "Date": "Wed, 27 Jul 2022 12:21:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2057,36 +1317,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6b74b29d-8202-4c35-9a8c-62f11501cca9",
- "x-ms-ratelimit-remaining-subscription-reads": "11970",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161928Z:6b74b29d-8202-4c35-9a8c-62f11501cca9",
+ "x-ms-correlation-request-id": "8af9778b-3a35-40ba-ba63-98c3d78abc34",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122131Z:8af9778b-3a35-40ba-ba63-98c3d78abc34",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e507d53-a35d-4121-8cfb-e4063aa2cdbc",
+ "name": "7e507d53-a35d-4121-8cfb-e4063aa2cdbc",
+ "status": "Creating",
+ "startTime": "2022-07-27T12:19:28.8532872Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e507d53-a35d-4121-8cfb-e4063aa2cdbc?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2094,7 +1349,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:19:38 GMT",
+ "Date": "Wed, 27 Jul 2022 12:22:00 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2102,36 +1357,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "707940db-841f-4fcb-a932-3409a03bc5e8",
- "x-ms-ratelimit-remaining-subscription-reads": "11969",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161939Z:707940db-841f-4fcb-a932-3409a03bc5e8",
+ "x-ms-correlation-request-id": "9ba0396c-e4eb-4b59-b6eb-3032d66dc6f2",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122201Z:9ba0396c-e4eb-4b59-b6eb-3032d66dc6f2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
- "properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e507d53-a35d-4121-8cfb-e4063aa2cdbc",
+ "name": "7e507d53-a35d-4121-8cfb-e4063aa2cdbc",
+ "status": "Creating",
+ "startTime": "2022-07-27T12:19:28.8532872Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e507d53-a35d-4121-8cfb-e4063aa2cdbc?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2139,7 +1389,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:19:49 GMT",
+ "Date": "Wed, 27 Jul 2022 12:22:31 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2147,36 +1397,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "babc6a17-581c-4e49-a2fc-2ed68895a01e",
- "x-ms-ratelimit-remaining-subscription-reads": "11968",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T161949Z:babc6a17-581c-4e49-a2fc-2ed68895a01e",
+ "x-ms-correlation-request-id": "e1b8b7d3-a736-4b7b-9122-45a27cbd3054",
+ "x-ms-ratelimit-remaining-subscription-reads": "11986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122231Z:e1b8b7d3-a736-4b7b-9122-45a27cbd3054",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e507d53-a35d-4121-8cfb-e4063aa2cdbc",
+ "name": "7e507d53-a35d-4121-8cfb-e4063aa2cdbc",
+ "status": "Creating",
+ "startTime": "2022-07-27T12:19:28.8532872Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e507d53-a35d-4121-8cfb-e4063aa2cdbc?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2184,7 +1429,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:20:00 GMT",
+ "Date": "Wed, 27 Jul 2022 12:23:01 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2192,36 +1437,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4ea54017-9a35-474f-b7bc-57272cd9c52c",
- "x-ms-ratelimit-remaining-subscription-reads": "11967",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162000Z:4ea54017-9a35-474f-b7bc-57272cd9c52c",
+ "x-ms-correlation-request-id": "61364431-c4f3-4993-b203-a4a54c514545",
+ "x-ms-ratelimit-remaining-subscription-reads": "11985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122302Z:61364431-c4f3-4993-b203-a4a54c514545",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e507d53-a35d-4121-8cfb-e4063aa2cdbc",
+ "name": "7e507d53-a35d-4121-8cfb-e4063aa2cdbc",
+ "status": "Creating",
+ "startTime": "2022-07-27T12:19:28.8532872Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e507d53-a35d-4121-8cfb-e4063aa2cdbc?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2229,7 +1469,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:20:10 GMT",
+ "Date": "Wed, 27 Jul 2022 12:23:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2237,36 +1477,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "47277c75-4cf7-4d16-b328-21a7b17ea2cc",
- "x-ms-ratelimit-remaining-subscription-reads": "11966",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162010Z:47277c75-4cf7-4d16-b328-21a7b17ea2cc",
+ "x-ms-correlation-request-id": "07a66814-3e99-4a33-88c4-cc77b602be00",
+ "x-ms-ratelimit-remaining-subscription-reads": "11984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122333Z:07a66814-3e99-4a33-88c4-cc77b602be00",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e507d53-a35d-4121-8cfb-e4063aa2cdbc",
+ "name": "7e507d53-a35d-4121-8cfb-e4063aa2cdbc",
+ "status": "Creating",
+ "startTime": "2022-07-27T12:19:28.8532872Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e507d53-a35d-4121-8cfb-e4063aa2cdbc?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2274,7 +1509,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:20:20 GMT",
+ "Date": "Wed, 27 Jul 2022 12:24:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2282,36 +1517,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4d628a4a-1bb9-4ef1-b177-9c5cf22ce91e",
- "x-ms-ratelimit-remaining-subscription-reads": "11965",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162021Z:4d628a4a-1bb9-4ef1-b177-9c5cf22ce91e",
+ "x-ms-correlation-request-id": "e04601fc-a59f-45d9-bad0-6287edc2cabc",
+ "x-ms-ratelimit-remaining-subscription-reads": "11983",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122403Z:e04601fc-a59f-45d9-bad0-6287edc2cabc",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e507d53-a35d-4121-8cfb-e4063aa2cdbc",
+ "name": "7e507d53-a35d-4121-8cfb-e4063aa2cdbc",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T12:19:28.8532872Z",
+ "endTime": "2022-07-27T12:23:34.1367639Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2319,7 +1549,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:20:30 GMT",
+ "Date": "Wed, 27 Jul 2022 12:24:03 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T12%3A23%3A34.1411238Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2327,36 +1558,90 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1afcaca4-31c6-4179-9ecd-55cd1aa6033a",
- "x-ms-ratelimit-remaining-subscription-reads": "11964",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162031Z:1afcaca4-31c6-4179-9ecd-55cd1aa6033a",
+ "x-ms-correlation-request-id": "0aa7c0bf-bb36-4e26-bc31-564f30ca454b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122404Z:0aa7c0bf-bb36-4e26-bc31-564f30ca454b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T12%3A23%3A34.1411238Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T12:19:27.4621111Z"
+ },
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "fileSystemId": "2ff994eb-f0e8-cf7e-f6d3-33021b6d9956",
+ "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_32004168",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "2ff994eb-f0e8-cf7e-f6d3-33021b6d9956",
+ "fileSystemId": "2ff994eb-f0e8-cf7e-f6d3-33021b6d9956",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2364,7 +1649,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:20:41 GMT",
+ "Date": "Wed, 27 Jul 2022 12:24:14 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T12%3A23%3A34.1411238Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2372,36 +1658,90 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d88d876d-1180-4076-8f56-dd409f7bf8dc",
- "x-ms-ratelimit-remaining-subscription-reads": "11963",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162042Z:d88d876d-1180-4076-8f56-dd409f7bf8dc",
+ "x-ms-correlation-request-id": "39bbfc62-703a-46d3-8c11-70bc879410b7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11981",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122414Z:39bbfc62-703a-46d3-8c11-70bc879410b7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T12%3A23%3A34.1411238Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T12:19:27.4621111Z"
+ },
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "fileSystemId": "2ff994eb-f0e8-cf7e-f6d3-33021b6d9956",
+ "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_32004168",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "2ff994eb-f0e8-cf7e-f6d3-33021b6d9956",
+ "fileSystemId": "2ff994eb-f0e8-cf7e-f6d3-33021b6d9956",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/vaults?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2409,7 +1749,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:20:51 GMT",
+ "Date": "Wed, 27 Jul 2022 12:24:14 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2417,81 +1757,149 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1e567b3d-4436-423b-a003-4027a9c4916a",
- "x-ms-ratelimit-remaining-subscription-reads": "11962",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162052Z:1e567b3d-4436-423b-a003-4027a9c4916a",
+ "x-ms-correlation-request-id": "56b6244f-43b0-441d-9a92-25b304d418aa",
+ "x-ms-ratelimit-remaining-subscription-reads": "11980",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122415Z:56b6244f-43b0-441d-9a92-25b304d418aa",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
- "properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
+ "value": [
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": {
+ "enabled": true,
+ "vaultId": "6130fdad-3bac-11eb-aba9-0e6a0f269857"
+ }
+ }
+ ]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "PATCH",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "408",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/vaults/cbsvault",
+ "backupEnabled": true
+ }
+ },
+ "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/eeb67930-7f61-4088-a0c9-8ee3e26d99d8?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "2130",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:21:02 GMT",
+ "Date": "Wed, 27 Jul 2022 12:24:15 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T12%3A24%3A15.587856Z\u0027\u0022",
"Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eeb67930-7f61-4088-a0c9-8ee3e26d99d8?api-version=2022-03-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": "c3819e26-9b96-4347-817e-8aa083c583b7",
- "x-ms-ratelimit-remaining-subscription-reads": "11961",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162102Z:c3819e26-9b96-4347-817e-8aa083c583b7",
+ "x-ms-correlation-request-id": "531dfb68-d02e-4842-bee9-1d7daf9ccc7e",
+ "x-ms-ratelimit-remaining-subscription-writes": "1194",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122415Z:531dfb68-d02e-4842-bee9-1d7daf9ccc7e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T12%3A24%3A15.587856Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T12:19:27.4621111Z"
+ },
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "provisioningState": "Patching",
+ "fileSystemId": "2ff994eb-f0e8-cf7e-f6d3-33021b6d9956",
+ "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_32004168",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "2ff994eb-f0e8-cf7e-f6d3-33021b6d9956",
+ "fileSystemId": "2ff994eb-f0e8-cf7e-f6d3-33021b6d9956",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eeb67930-7f61-4088-a0c9-8ee3e26d99d8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2499,7 +1907,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:21:13 GMT",
+ "Date": "Wed, 27 Jul 2022 12:24:46 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2507,36 +1915,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4bbcf950-b01b-489d-a00b-926d5793d34f",
- "x-ms-ratelimit-remaining-subscription-reads": "11960",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162113Z:4bbcf950-b01b-489d-a00b-926d5793d34f",
+ "x-ms-correlation-request-id": "660e52f6-ed1c-4f35-b930-f1b181dd0aa2",
+ "x-ms-ratelimit-remaining-subscription-reads": "11979",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122446Z:660e52f6-ed1c-4f35-b930-f1b181dd0aa2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eeb67930-7f61-4088-a0c9-8ee3e26d99d8",
+ "name": "eeb67930-7f61-4088-a0c9-8ee3e26d99d8",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T12:24:15.5748175Z",
+ "endTime": "2022-07-27T12:24:19.7938882Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eeb67930-7f61-4088-a0c9-8ee3e26d99d8?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2544,7 +1947,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:21:23 GMT",
+ "Date": "Wed, 27 Jul 2022 12:24:46 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2552,126 +1955,159 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e1a989e7-f307-4b3e-aa2f-b6097aaf2b3f",
- "x-ms-ratelimit-remaining-subscription-reads": "11959",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162123Z:e1a989e7-f307-4b3e-aa2f-b6097aaf2b3f",
+ "x-ms-correlation-request-id": "f9e83876-9aeb-4dc5-aae8-60f8dd8c0389",
+ "x-ms-ratelimit-remaining-subscription-reads": "11978",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122446Z:f9e83876-9aeb-4dc5-aae8-60f8dd8c0389",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T12%3A24%3A19.7993001Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T12:24:15.2867032Z"
+ },
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "dataProtection": {
+ "backup": {
+ "backupEnabled": true,
+ "policyEnforced": false,
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/vaults/cbsvault"
+ }
+ },
+ "fileSystemId": "2ff994eb-f0e8-cf7e-f6d3-33021b6d9956",
+ "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_32004168",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e",
+ "poolId": "eea2892a-e2d1-b9e2-3569-3e7a76189d0c",
+ "mountTargets": [
+ {
+ "provisioningState": "",
+ "mountTargetId": "2ff994eb-f0e8-cf7e-f6d3-33021b6d9956",
+ "fileSystemId": "2ff994eb-f0e8-cf7e-f6d3-33021b6d9956",
+ "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,
+ "provisioningState": "Succeeded"
+ },
+ "systemData": {
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T12:24:15.4452275Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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, 31 May 2022 16:21: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": "3c8d17be-f37c-46e4-a630-ac7c3560b15f",
- "x-ms-ratelimit-remaining-subscription-reads": "11958",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162134Z:3c8d17be-f37c-46e4-a630-ac7c3560b15f",
- "X-Powered-By": "ASP.NET"
+ "Content-Length": "69",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "RequestBody": {
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
"useExistingSnapshot": false
}
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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/7827fcd6-237e-480b-af95-fa86176c8a61?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "556",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:21:43 GMT",
+ "Date": "Wed, 27 Jul 2022 12:24:46 GMT",
"Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7827fcd6-237e-480b-af95-fa86176c8a61?api-version=2022-03-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": "a4cabe4b-6e44-4c88-9427-4f9bd7772e5f",
- "x-ms-ratelimit-remaining-subscription-reads": "11957",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162144Z:a4cabe4b-6e44-4c88-9427-4f9bd7772e5f",
+ "x-ms-correlation-request-id": "4f131cdd-2afd-4fb5-bcf4-2d997853388d",
+ "x-ms-ratelimit-remaining-subscription-writes": "1193",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122446Z:4f131cdd-2afd-4fb5-bcf4-2d997853388d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
- "size": 0,
- "backupType": "Manual",
"provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
"useExistingSnapshot": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7827fcd6-237e-480b-af95-fa86176c8a61?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2679,7 +2115,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:21:54 GMT",
+ "Date": "Wed, 27 Jul 2022 12:25:16 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2687,81 +2123,75 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0be85fcf-df4b-49df-9125-81dd63c914f1",
- "x-ms-ratelimit-remaining-subscription-reads": "11956",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162154Z:0be85fcf-df4b-49df-9125-81dd63c914f1",
+ "x-ms-correlation-request-id": "435c2938-f843-4427-bedf-112f89c6ee8e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11977",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122517Z:435c2938-f843-4427-bedf-112f89c6ee8e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "eastus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7827fcd6-237e-480b-af95-fa86176c8a61",
+ "name": "7827fcd6-237e-480b-af95-fa86176c8a61",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T12:24:46.865963Z",
+ "endTime": "2022-07-27T12:24:47.1316095Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Creating",
- "failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7827fcd6-237e-480b-af95-fa86176c8a61?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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": "776",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:22:04 GMT",
+ "Date": "Wed, 27 Jul 2022 12:25: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": "4594dafd-43c5-4451-bb0e-28e4ce64e866",
- "x-ms-ratelimit-remaining-subscription-reads": "11955",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162205Z:4594dafd-43c5-4451-bb0e-28e4ce64e866",
+ "x-ms-correlation-request-id": "30ad6600-96ed-4135-9509-74dc08003c47",
+ "x-ms-ratelimit-remaining-subscription-reads": "11976",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122517Z:30ad6600-96ed-4135-9509-74dc08003c47",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "etag": "7/27/2022 12:24:47 PM",
+ "location": "",
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
+ "fileSystemId": "2ff994eb-f0e8-cf7e-f6d3-33021b6d9956",
+ "creationDate": "0001-01-01T00:00:00Z",
+ "backupId": "5c5d48f8-f595-c1a9-36fa-c2d2413bd29c",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Creating",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "useExistingSnapshot": false,
+ "provisioningState": "Creating"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2769,7 +2199,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:22:14 GMT",
+ "Date": "Wed, 27 Jul 2022 12:25:27 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2777,36 +2207,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ebceeb5f-9f92-401f-82ee-66fad1157b1d",
- "x-ms-ratelimit-remaining-subscription-reads": "11954",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162215Z:ebceeb5f-9f92-401f-82ee-66fad1157b1d",
+ "x-ms-correlation-request-id": "d705da70-5bc2-4b17-979c-f88f74073bff",
+ "x-ms-ratelimit-remaining-subscription-reads": "11975",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122528Z:d705da70-5bc2-4b17-979c-f88f74073bff",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
+ "creationDate": "2022-07-27T12:24:47Z",
+ "backupId": "5c5d48f8-f595-c1a9-36fa-c2d2413bd29c",
"size": 0,
"backupType": "Manual",
"provisioningState": "Creating",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2814,7 +2244,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:22:25 GMT",
+ "Date": "Wed, 27 Jul 2022 12:25:38 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2822,36 +2252,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4ebf62e6-b733-4b74-9008-7b6d8ec117e6",
- "x-ms-ratelimit-remaining-subscription-reads": "11953",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162225Z:4ebf62e6-b733-4b74-9008-7b6d8ec117e6",
+ "x-ms-correlation-request-id": "3ddba93e-1f2b-4c18-9690-73fe9fbdf409",
+ "x-ms-ratelimit-remaining-subscription-reads": "11974",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122538Z:3ddba93e-1f2b-4c18-9690-73fe9fbdf409",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
+ "creationDate": "2022-07-27T12:24:47Z",
+ "backupId": "5c5d48f8-f595-c1a9-36fa-c2d2413bd29c",
"size": 0,
"backupType": "Manual",
"provisioningState": "Creating",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2859,7 +2289,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:22:35 GMT",
+ "Date": "Wed, 27 Jul 2022 12:25:48 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2867,36 +2297,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ff455280-6455-4ade-a6d0-c692240015f4",
- "x-ms-ratelimit-remaining-subscription-reads": "11952",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162236Z:ff455280-6455-4ade-a6d0-c692240015f4",
+ "x-ms-correlation-request-id": "bef891d3-6ee9-4761-8a18-3cdb5268f694",
+ "x-ms-ratelimit-remaining-subscription-reads": "11973",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122549Z:bef891d3-6ee9-4761-8a18-3cdb5268f694",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T16:17:04Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
+ "creationDate": "2022-07-27T12:24:47Z",
+ "backupId": "5c5d48f8-f595-c1a9-36fa-c2d2413bd29c",
"size": 0,
"backupType": "Manual",
"provisioningState": "Creating",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2904,7 +2334,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:22:54 GMT",
+ "Date": "Wed, 27 Jul 2022 12:25:58 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2912,36 +2342,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ecf7c83a-a077-4ff3-be66-891613d8072e",
- "x-ms-ratelimit-remaining-subscription-reads": "11951",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162255Z:ecf7c83a-a077-4ff3-be66-891613d8072e",
+ "x-ms-correlation-request-id": "edb699cf-1f0b-49c0-8465-2bcccd56d1b8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11972",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122559Z:edb699cf-1f0b-49c0-8465-2bcccd56d1b8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T16:19:10Z",
- "backupId": "3f825dc5-f409-4225-1231-c38ecb2c779d",
+ "creationDate": "2022-07-27T12:24:51Z",
+ "backupId": "5c5d48f8-f595-c1a9-36fa-c2d2413bd29c",
"size": 331776,
"backupType": "Manual",
"provisioningState": "Succeeded",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backupStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2949,7 +2379,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:24:57 GMT",
+ "Date": "Wed, 27 Jul 2022 12:28:02 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2957,9 +2387,9 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "15165a4d-f8eb-4d47-92c6-80529e8280fc",
+ "x-ms-correlation-request-id": "464cea23-bfd6-469b-a446-90aab9bac16c",
"x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162457Z:15165a4d-f8eb-4d47-92c6-80529e8280fc",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122803Z:464cea23-bfd6-469b-a446-90aab9bac16c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -2972,13 +2402,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/vaults?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2986,7 +2416,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:24:57 GMT",
+ "Date": "Wed, 27 Jul 2022 12:28:04 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2994,35 +2424,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3e43cc0c-4eea-4d88-b0c2-5e114a6522c6",
+ "x-ms-correlation-request-id": "1cfedd70-1717-41dc-b55a-275f0ae7a944",
"x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162457Z:3e43cc0c-4eea-4d88-b0c2-5e114a6522c6",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122804Z:1cfedd70-1717-41dc-b55a-275f0ae7a944",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "name": "sdk-py-tests-acc-1/cbsvault",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": {
"enabled": true,
- "vaultId": "770fecc1-765b-11eb-9c9c-6ebf63ed0b3e"
+ "vaultId": "6130fdad-3bac-11eb-aba9-0e6a0f269857"
}
}
]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "PATCH",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "402",
+ "Content-Length": "409",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
"properties": {
@@ -3030,7 +2460,7 @@
"usageThreshold": 107374182400,
"dataProtection": {
"backup": {
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/vaults/cbsvault",
"backupEnabled": false
}
},
@@ -3041,44 +2471,44 @@
},
"StatusCode": 202,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d728b0d8-6a1b-44d4-8612-ca174947182a?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/88f5886c-e476-4569-817f-1c02148d00bd?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "2483",
+ "Content-Length": "2544",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:24:58 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T16%3A24%3A58.7039774Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 12:28:05 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T12%3A28%3A05.4333477Z\u0027\u0022",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d728b0d8-6a1b-44d4-8612-ca174947182a?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/88f5886c-e476-4569-817f-1c02148d00bd?api-version=2022-03-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": "a890a319-563d-44f9-8543-108d6e50077b",
+ "x-ms-correlation-request-id": "b0cd887d-0a3d-4f8e-bb27-af8738faddad",
"x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162458Z:a890a319-563d-44f9-8543-108d6e50077b",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122805Z:b0cd887d-0a3d-4f8e-bb27-af8738faddad",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T16%3A24%3A58.7039774Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A28%3A05.4333477Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T16:16:33.2606143Z"
+ "CreatedOnDate": "2022-07-27T12:24:15.2867032Z"
},
"properties": {
"dataProtection": {
"backup": {
"backupEnabled": true,
"policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/vaults/cbsvault"
}
},
"provisioningState": "Patching",
- "fileSystemId": "654dff83-9d5b-9061-0908-7acdf8b891b7",
+ "fileSystemId": "2ff994eb-f0e8-cf7e-f6d3-33021b6d9956",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-503c258e",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -3104,10 +2534,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_2a2b4824",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_32004168",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -3119,12 +2549,12 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "654dff83-9d5b-9061-0908-7acdf8b891b7",
- "fileSystemId": "654dff83-9d5b-9061-0908-7acdf8b891b7",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "2ff994eb-f0e8-cf7e-f6d3-33021b6d9956",
+ "fileSystemId": "2ff994eb-f0e8-cf7e-f6d3-33021b6d9956",
+ "ipAddress": "10.0.0.4"
}
],
- "throughputMibps": 6.4,
+ "throughputMibps": 6.25,
"volumeSpecName": "generic",
"coolAccess": false,
"avsDataStore": "Disabled",
@@ -3136,19 +2566,19 @@
},
"systemData": {
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T16:16:33.4026655Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T12:24:15.4452275Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d728b0d8-6a1b-44d4-8612-ca174947182a?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/88f5886c-e476-4569-817f-1c02148d00bd?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3156,7 +2586,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:25:28 GMT",
+ "Date": "Wed, 27 Jul 2022 12:28:35 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3164,31 +2594,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c1eac1aa-0899-46ed-b3ba-24459525d9e4",
+ "x-ms-correlation-request-id": "f39fe8b4-5c9d-4aa4-bf2a-1060efcdc76d",
"x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162529Z:c1eac1aa-0899-46ed-b3ba-24459525d9e4",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122835Z:f39fe8b4-5c9d-4aa4-bf2a-1060efcdc76d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d728b0d8-6a1b-44d4-8612-ca174947182a",
- "name": "d728b0d8-6a1b-44d4-8612-ca174947182a",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/88f5886c-e476-4569-817f-1c02148d00bd",
+ "name": "88f5886c-e476-4569-817f-1c02148d00bd",
"status": "Succeeded",
- "startTime": "2022-05-31T16:24:58.6968098Z",
- "endTime": "2022-05-31T16:25:08.7027044Z",
+ "startTime": "2022-07-27T12:28:05.4310348Z",
+ "endTime": "2022-07-27T12:28:17.2614854Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/d728b0d8-6a1b-44d4-8612-ca174947182a?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/88f5886c-e476-4569-817f-1c02148d00bd?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3196,7 +2626,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:25:28 GMT",
+ "Date": "Wed, 27 Jul 2022 12:28:35 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3204,32 +2634,32 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "27c5f6c9-9c60-431b-b0f5-7a325fc3925f",
+ "x-ms-correlation-request-id": "36f313e3-baa8-45c5-bff1-0040f7601f7a",
"x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162529Z:27c5f6c9-9c60-431b-b0f5-7a325fc3925f",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122836Z:36f313e3-baa8-45c5-bff1-0040f7601f7a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T16%3A25%3A08.697316Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A28%3A17.2623525Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T16:16:33.2606143Z"
+ "CreatedOnDate": "2022-07-27T12:24:15.2867032Z"
},
"properties": {
"dataProtection": {
"backup": {
"backupEnabled": false,
"policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/vaults/cbsvault"
}
},
- "fileSystemId": "654dff83-9d5b-9061-0908-7acdf8b891b7",
+ "fileSystemId": "2ff994eb-f0e8-cf7e-f6d3-33021b6d9956",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5",
+ "creationToken": "sdk-py-tests-vol-3-503c258e",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -3257,28 +2687,28 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_2a2b4824",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_32004168",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "6029fb36-1c88-6116-5a78-356dd05be958",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e",
+ "poolId": "eea2892a-e2d1-b9e2-3569-3e7a76189d0c",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "654dff83-9d5b-9061-0908-7acdf8b891b7",
- "fileSystemId": "654dff83-9d5b-9061-0908-7acdf8b891b7",
+ "mountTargetId": "2ff994eb-f0e8-cf7e-f6d3-33021b6d9956",
+ "fileSystemId": "2ff994eb-f0e8-cf7e-f6d3-33021b6d9956",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
- "throughputMibps": 6.4,
+ "throughputMibps": 6.25,
"kerberosEnabled": false,
"securityStyle": "Unix",
"smbEncryption": false,
@@ -3293,23 +2723,24 @@
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
+ "encrypted": true,
"provisioningState": "Succeeded"
},
"systemData": {
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T16:24:58.6012916Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T12:28:05.2457399Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
@@ -3317,15 +2748,15 @@
"Cache-Control": "no-cache",
"Content-Length": "77",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:25:30 GMT",
+ "Date": "Wed, 27 Jul 2022 12:28: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": "e80d24e5-9fad-47d1-a455-690f2aa9825f",
+ "x-ms-correlation-request-id": "82f180b0-177d-4a99-992c-6c4bd9092f08",
"x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162531Z:e80d24e5-9fad-47d1-a455-690f2aa9825f",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122838Z:82f180b0-177d-4a99-992c-6c4bd9092f08",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -3336,43 +2767,43 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/eastus/operationResults/bb0d8536-98f6-4ff3-aa09-a20bfcf8d030?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4a701b72-6fb4-49b1-ab31-f63f774a59c2?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 16:25:31 GMT",
+ "Date": "Wed, 27 Jul 2022 12:28:38 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bb0d8536-98f6-4ff3-aa09-a20bfcf8d030?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4a701b72-6fb4-49b1-ab31-f63f774a59c2?api-version=2022-03-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": "1c925456-7378-410d-8b9c-de89f7b66d26",
+ "x-ms-correlation-request-id": "f66208f4-b523-485f-a4d9-982f562ee043",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162532Z:1c925456-7378-410d-8b9c-de89f7b66d26",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122839Z:f66208f4-b523-485f-a4d9-982f562ee043",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bb0d8536-98f6-4ff3-aa09-a20bfcf8d030?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4a701b72-6fb4-49b1-ab31-f63f774a59c2?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3380,7 +2811,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:26:02 GMT",
+ "Date": "Wed, 27 Jul 2022 12:29:09 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3388,31 +2819,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7f73c897-8b95-4027-8ac3-bd1500cf058c",
+ "x-ms-correlation-request-id": "92c1813b-4ff6-41da-a536-411b1396c578",
"x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162602Z:7f73c897-8b95-4027-8ac3-bd1500cf058c",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122909Z:92c1813b-4ff6-41da-a536-411b1396c578",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bb0d8536-98f6-4ff3-aa09-a20bfcf8d030",
- "name": "bb0d8536-98f6-4ff3-aa09-a20bfcf8d030",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4a701b72-6fb4-49b1-ab31-f63f774a59c2",
+ "name": "4a701b72-6fb4-49b1-ab31-f63f774a59c2",
"status": "Deleting",
- "startTime": "2022-05-31T16:25:32.1968653Z",
+ "startTime": "2022-07-27T12:28:39.2905374Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/bb0d8536-98f6-4ff3-aa09-a20bfcf8d030?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4a701b72-6fb4-49b1-ab31-f63f774a59c2?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3420,7 +2851,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:26:32 GMT",
+ "Date": "Wed, 27 Jul 2022 12:29:39 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3428,31 +2859,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9c03b881-73bc-4a4b-8b6e-dea48062c514",
+ "x-ms-correlation-request-id": "2815d777-2360-4a82-9be8-0a01f580efea",
"x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162632Z:9c03b881-73bc-4a4b-8b6e-dea48062c514",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T122940Z:2815d777-2360-4a82-9be8-0a01f580efea",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bb0d8536-98f6-4ff3-aa09-a20bfcf8d030",
- "name": "bb0d8536-98f6-4ff3-aa09-a20bfcf8d030",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4a701b72-6fb4-49b1-ab31-f63f774a59c2",
+ "name": "4a701b72-6fb4-49b1-ab31-f63f774a59c2",
"status": "Deleting",
- "startTime": "2022-05-31T16:25:32.1968653Z",
+ "startTime": "2022-07-27T12:28:39.2905374Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/bb0d8536-98f6-4ff3-aa09-a20bfcf8d030?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4a701b72-6fb4-49b1-ab31-f63f774a59c2?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3460,7 +2891,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:27:01 GMT",
+ "Date": "Wed, 27 Jul 2022 12:30:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3468,71 +2899,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7f39cdda-b747-417e-85b9-236e6c2a13ac",
+ "x-ms-correlation-request-id": "3b85a049-41c7-4587-817b-8c837970c28e",
"x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162702Z:7f39cdda-b747-417e-85b9-236e6c2a13ac",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bb0d8536-98f6-4ff3-aa09-a20bfcf8d030",
- "name": "bb0d8536-98f6-4ff3-aa09-a20bfcf8d030",
- "status": "Deleting",
- "startTime": "2022-05-31T16:25:32.1968653Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bb0d8536-98f6-4ff3-aa09-a20bfcf8d030?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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, 31 May 2022 16:27: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": "cf66b1fc-75e0-40a7-aaf1-a342ddbd77a2",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162732Z:cf66b1fc-75e0-40a7-aaf1-a342ddbd77a2",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T123010Z:3b85a049-41c7-4587-817b-8c837970c28e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bb0d8536-98f6-4ff3-aa09-a20bfcf8d030",
- "name": "bb0d8536-98f6-4ff3-aa09-a20bfcf8d030",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4a701b72-6fb4-49b1-ab31-f63f774a59c2",
+ "name": "4a701b72-6fb4-49b1-ab31-f63f774a59c2",
"status": "Succeeded",
- "startTime": "2022-05-31T16:25:32.1968653Z",
- "endTime": "2022-05-31T16:27:04.3293887Z",
+ "startTime": "2022-07-27T12:28:39.2905374Z",
+ "endTime": "2022-07-27T12:29:58.8309226Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/bb0d8536-98f6-4ff3-aa09-a20bfcf8d030?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4a701b72-6fb4-49b1-ab31-f63f774a59c2?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3540,7 +2931,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:27:32 GMT",
+ "Date": "Wed, 27 Jul 2022 12:30:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3548,32 +2939,32 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ea2f0515-3807-4a32-a4ce-827026436956",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T162733Z:ea2f0515-3807-4a32-a4ce-827026436956",
+ "x-ms-correlation-request-id": "3193bb9d-2499-42b9-95ca-f26445d7d4e0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T123010Z:3193bb9d-2499-42b9-95ca-f26445d7d4e0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T16%3A25%3A32.1670075Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A28%3A39.2873471Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T16:16:33.2606143Z"
+ "CreatedOnDate": "2022-07-27T12:24:15.2867032Z"
},
"properties": {
"dataProtection": {
"backup": {
"backupEnabled": false,
"policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/vaults/cbsvault"
}
},
- "fileSystemId": "654dff83-9d5b-9061-0908-7acdf8b891b7",
+ "fileSystemId": "2ff994eb-f0e8-cf7e-f6d3-33021b6d9956",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5",
+ "creationToken": "sdk-py-tests-vol-3-503c258e",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -3601,28 +2992,28 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_2a2b4824",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_32004168",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "6029fb36-1c88-6116-5a78-356dd05be958",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e",
+ "poolId": "eea2892a-e2d1-b9e2-3569-3e7a76189d0c",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "654dff83-9d5b-9061-0908-7acdf8b891b7",
- "fileSystemId": "654dff83-9d5b-9061-0908-7acdf8b891b7",
+ "mountTargetId": "2ff994eb-f0e8-cf7e-f6d3-33021b6d9956",
+ "fileSystemId": "2ff994eb-f0e8-cf7e-f6d3-33021b6d9956",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
- "throughputMibps": 6.4,
+ "throughputMibps": 6.25,
"kerberosEnabled": false,
"securityStyle": "Unix",
"smbEncryption": false,
@@ -3637,84 +3028,85 @@
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
+ "encrypted": true,
"provisioningState": "Deleting"
},
"systemData": {
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T16:24:58.6012916Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T12:28:05.2457399Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "306",
+ "Content-Length": "320",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:30:56 GMT",
+ "Date": "Wed, 27 Jul 2022 12:33:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c0d27f3c-b555-4f42-bdbd-d05db21004b4",
+ "x-ms-correlation-request-id": "2282aa50-75a9-4e86-8ab5-603d31bb4ff4",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T163056Z:c0d27f3c-b555-4f42-bdbd-d05db21004b4"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T123333Z:2282aa50-75a9-4e86-8ab5-603d31bb4ff4"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "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\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/eastus/operationResults/a44d21e7-5945-489f-8e79-ff2685216313?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58d612a7-844f-4eff-bc62-05ac4b430cd2?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 16:31:08 GMT",
+ "Date": "Wed, 27 Jul 2022 12:33:46 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a44d21e7-5945-489f-8e79-ff2685216313?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58d612a7-844f-4eff-bc62-05ac4b430cd2?api-version=2022-03-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": "c6ec28d6-f948-40a4-aff5-5167299817a8",
+ "x-ms-correlation-request-id": "12a610e7-467d-4b5c-afd4-96c946b95511",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T163109Z:c6ec28d6-f948-40a4-aff5-5167299817a8",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T123346Z:12a610e7-467d-4b5c-afd4-96c946b95511",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a44d21e7-5945-489f-8e79-ff2685216313?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58d612a7-844f-4eff-bc62-05ac4b430cd2?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3722,7 +3114,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:31:38 GMT",
+ "Date": "Wed, 27 Jul 2022 12:34:16 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3730,31 +3122,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6c2c64fc-1948-4960-bb9e-8a9435cdcc75",
+ "x-ms-correlation-request-id": "93c02c98-2f41-479e-bbcf-a58cc12846d6",
"x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T163139Z:6c2c64fc-1948-4960-bb9e-8a9435cdcc75",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T123417Z:93c02c98-2f41-479e-bbcf-a58cc12846d6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a44d21e7-5945-489f-8e79-ff2685216313",
- "name": "a44d21e7-5945-489f-8e79-ff2685216313",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58d612a7-844f-4eff-bc62-05ac4b430cd2",
+ "name": "58d612a7-844f-4eff-bc62-05ac4b430cd2",
"status": "Succeeded",
- "startTime": "2022-05-31T16:31:08.8303107Z",
- "endTime": "2022-05-31T16:31:09.2991015Z",
+ "startTime": "2022-07-27T12:33:46.5335664Z",
+ "endTime": "2022-07-27T12:33:46.908795Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/locations/eastus/operationResults/a44d21e7-5945-489f-8e79-ff2685216313?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58d612a7-844f-4eff-bc62-05ac4b430cd2?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3762,7 +3154,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:31:38 GMT",
+ "Date": "Wed, 27 Jul 2022 12:34:17 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3770,27 +3162,28 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "be3e2900-a35f-4597-9703-22f9f17abcf4",
+ "x-ms-correlation-request-id": "fe179db7-a854-4bed-a705-0c9883fe04ee",
"x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T163139Z:be3e2900-a35f-4597-9703-22f9f17abcf4",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T123417Z:fe179db7-a854-4bed-a705-0c9883fe04ee",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T16%3A31%3A08.8210334Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A33%3A46.5378152Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T16:11:35.5383463Z"
+ "CreatedOnDate": "2022-07-27T12:18:43.4109188Z"
},
"properties": {
- "poolId": "6029fb36-1c88-6116-5a78-356dd05be958",
+ "poolId": "eea2892a-e2d1-b9e2-3569-3e7a76189d0c",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1",
"qosType": "Auto",
- "totalThroughputMibps": 262.144,
+ "totalThroughputMibps": 256.0,
+ "utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
@@ -3798,199 +3191,174 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
- "RequestMethod": "DELETE",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
- },
- "RequestBody": null,
- "StatusCode": 204,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Date": "Tue, 31 May 2022 16:32:19 GMT",
- "Expires": "-1",
- "Pragma": "no-cache",
- "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
- "X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f038bfd8-688e-4fac-a5e7-e59af290985e",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T163219Z:f038bfd8-688e-4fac-a5e7-e59af290985e"
- },
- "ResponseBody": null
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 31 May 2022 16:33:00 GMT",
+ "Date": "Wed, 27 Jul 2022 12:34:27 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "92f46cda-df57-41a7-b3df-ab05aa558668",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T163300Z:92f46cda-df57-41a7-b3df-ab05aa558668"
+ "x-ms-correlation-request-id": "da0fbf59-ff98-46d8-b1f3-3e4aecc62f8f",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14998",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T123427Z:da0fbf59-ff98-46d8-b1f3-3e4aecc62f8f"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 31 May 2022 16:33:17 GMT",
+ "Date": "Wed, 27 Jul 2022 12:34:37 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9a0b5e17-864f-4622-b8a4-5e97d8c67a67",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T163318Z:9a0b5e17-864f-4622-b8a4-5e97d8c67a67"
+ "x-ms-correlation-request-id": "44e18fcc-ed75-457c-b54f-676b5084daec",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T123438Z:44e18fcc-ed75-457c-b54f-676b5084daec"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 31 May 2022 16:38:31 GMT",
+ "Date": "Wed, 27 Jul 2022 12:34:47 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "01f323c4-6ee9-4ff9-b724-f8eab32a415f",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T163832Z:01f323c4-6ee9-4ff9-b724-f8eab32a415f"
+ "x-ms-correlation-request-id": "58292324-ab12-4c6e-b177-ce90d1a96fa8",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14996",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T123448Z:58292324-ab12-4c6e-b177-ce90d1a96fa8"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 31 May 2022 16:38:32 GMT",
+ "Date": "Wed, 27 Jul 2022 12:34:57 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e44411be-9d2d-4aca-b070-b797e5ca4b1b",
- "x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T163833Z:e44411be-9d2d-4aca-b070-b797e5ca4b1b"
+ "x-ms-correlation-request-id": "36247145-65c5-45e7-b5c9-302790ee7210",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T123458Z:36247145-65c5-45e7-b5c9-302790ee7210"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:38:42 GMT",
+ "Date": "Wed, 27 Jul 2022 12:35:09 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "627dd44e-5d92-463c-9dfb-67515d59fb89",
+ "x-ms-correlation-request-id": "8ce1c251-fa80-4e7b-8c0e-0c0930ec0b7d",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T163843Z:627dd44e-5d92-463c-9dfb-67515d59fb89"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T123509Z:8ce1c251-fa80-4e7b-8c0e-0c0930ec0b7d"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "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\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/eastus/operationResults/ee359e71-0053-40ee-b943-20264ddc9aea?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/70d8cdcd-9e72-4e10-8042-30b4934a9adb?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 16:38:43 GMT",
+ "Date": "Wed, 27 Jul 2022 12:35:10 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ee359e71-0053-40ee-b943-20264ddc9aea?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/70d8cdcd-9e72-4e10-8042-30b4934a9adb?api-version=2022-03-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": "dd452185-ffdc-4e4d-9580-cb11b2a1dbb8",
- "x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T163844Z:dd452185-ffdc-4e4d-9580-cb11b2a1dbb8",
+ "x-ms-correlation-request-id": "e0e6e00e-f32b-4db7-8dc2-672d2a218775",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T123510Z:e0e6e00e-f32b-4db7-8dc2-672d2a218775",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ee359e71-0053-40ee-b943-20264ddc9aea?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/70d8cdcd-9e72-4e10-8042-30b4934a9adb?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3998,7 +3366,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:39:14 GMT",
+ "Date": "Wed, 27 Jul 2022 12:35:40 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4006,31 +3374,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "bb30873c-6087-4010-bde7-41df88dcc580",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T163914Z:bb30873c-6087-4010-bde7-41df88dcc580",
+ "x-ms-correlation-request-id": "0d1a0abd-8599-4185-91dd-192f23c04cad",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T123541Z:0d1a0abd-8599-4185-91dd-192f23c04cad",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ee359e71-0053-40ee-b943-20264ddc9aea",
- "name": "ee359e71-0053-40ee-b943-20264ddc9aea",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/70d8cdcd-9e72-4e10-8042-30b4934a9adb",
+ "name": "70d8cdcd-9e72-4e10-8042-30b4934a9adb",
"status": "Succeeded",
- "startTime": "2022-05-31T16:38:44.1575599Z",
- "endTime": "2022-05-31T16:38:44.1888151Z",
+ "startTime": "2022-07-27T12:35:10.6433828Z",
+ "endTime": "2022-07-27T12:35:10.7215192Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ee359e71-0053-40ee-b943-20264ddc9aea?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/70d8cdcd-9e72-4e10-8042-30b4934a9adb?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4038,7 +3406,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:39:14 GMT",
+ "Date": "Wed, 27 Jul 2022 12:35:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4046,19 +3414,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "287bfdd4-6389-40c3-892b-d934450f026e",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T163914Z:287bfdd4-6389-40c3-892b-d934450f026e",
+ "x-ms-correlation-request-id": "e7e95b89-91e6-4da8-8576-39fbc1fc5ee1",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T123541Z:e7e95b89-91e6-4da8-8576-39fbc1fc5ee1",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T16%3A38%3A44.1496774Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A35%3A10.632653Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T16:11:01.5779238Z"
+ "CreatedOnDate": "2022-07-27T12:18:08.5934222Z"
},
"properties": {
"encryption": {
@@ -4068,44 +3436,79 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T16:11:03.3229881Z",
"createdByType": "Application",
+ "createdAt": "2022-07-27T12:18:10.1692771Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T16:11:03.3229881Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T12:18:10.1692771Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:39:16 GMT",
+ "Date": "Wed, 27 Jul 2022 12:35:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "110f0ce3-08da-4594-83a3-6b34d4494c2c",
+ "x-ms-correlation-request-id": "c3eb25f3-a268-47c8-85ba-88fb304ca7e1",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T163916Z:110f0ce3-08da-4594-83a3-6b34d4494c2c"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T123541Z:c3eb25f3-a268-47c8-85ba-88fb304ca7e1"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e?api-version=2021-08-01",
+ "RequestMethod": "DELETE",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "0",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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/fe2cf790-3610-4e03-a76d-c9a843f6c0a8?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "0",
+ "Date": "Wed, 27 Jul 2022 12:35:42 GMT",
+ "Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/fe2cf790-3610-4e03-a76d-c9a843f6c0a8?api-version=2021-08-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": "d1a95bde-4059-4950-a322-96d7642094e8",
+ "x-ms-correlation-request-id": "cfffbfc8-bf3f-4c6a-a367-2d81aa68c76a",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T123542Z:cfffbfc8-bf3f-4c6a-a367-2d81aa68c76a"
+ },
+ "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 28906dc3f198..0941cf6f1ecc 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 27 May 2022 10:16:22 GMT",
+ "Date": "Tue, 26 Jul 2022 12: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.12821.9 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 27 May 2022 10:16:22 GMT",
+ "Date": "Tue, 26 Jul 2022 12: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.12794.7 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - WEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "e12f04f4-e249-462d-8619-730afaf8a5e0",
+ "client-request-id": "6e16fb83-bc6c-4477-86dd-471aab13d984",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "e12f04f4-e249-462d-8619-730afaf8a5e0",
+ "client-request-id": "6e16fb83-bc6c-4477-86dd-471aab13d984",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:16:22 GMT",
+ "Date": "Tue, 26 Jul 2022 12:28:23 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12821.9 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - NEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,67 +213,79 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "93",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2",
+ "properties": {
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ }
+ }
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0bb5ee8b-5edd-4ed8-a1c7-819479c7aeac?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/fafbaa14-1a99-4ba0-9ae9-b91a4702b572?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Length": "696",
+ "Content-Length": "746",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:16:30 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-27T10%3A16%3A30.330841Z\u0027\u0022",
+ "Date": "Tue, 26 Jul 2022 12:28:29 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Retry-After": "3",
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b3fdfcd9-625e-46a0-aa2e-2937b12f94d1",
+ "x-ms-arm-service-request-id": "71bf3fb7-a6b1-4cb9-9a23-50bcc26d7f9b",
+ "x-ms-correlation-request-id": "bda9eb81-6725-40ae-87ef-1eefa66127ea",
"x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T101631Z:b3fdfcd9-625e-46a0-aa2e-2937b12f94d1",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122830Z:bda9eb81-6725-40ae-87ef-1eefa66127ea"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
- "type": "Microsoft.NetApp/netAppAccounts",
- "etag": "W/\u0022datetime\u00272022-05-27T10%3A16%3A30.330841Z\u0027\u0022",
- "location": "southcentralusstage",
+ "name": "sdk-python-tests-vnet-westus2-70dd2307",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307",
+ "etag": "W/\u002259f61f8d-9181-41f1-a1c5-4e523c85590e\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-27T10:16:26.4597106Z"
+ "CreatedOnDate": "2022-07-26T12:28:25.3205573Z"
},
"properties": {
- "provisioningState": "Creating"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T10:16:29.589743Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T10:16:29.589743Z"
+ "provisioningState": "Updating",
+ "resourceGuid": "ea0d0b45-6f13-4ddb-8249-e188809e736a",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0bb5ee8b-5edd-4ed8-a1c7-819479c7aeac?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fafbaa14-1a99-4ba0-9ae9-b91a4702b572?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,39 +293,34 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:17:00 GMT",
+ "Date": "Tue, 26 Jul 2022 12:28:32 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "e8dead31-b3bb-4377-86e1-0acfb7a249a8",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T101701Z:e8dead31-b3bb-4377-86e1-0acfb7a249a8",
- "X-Powered-By": "ASP.NET"
+ "x-ms-arm-service-request-id": "45ca6e8d-5c9a-494c-a712-e9ae41576352",
+ "x-ms-correlation-request-id": "fd07588a-c04b-49f7-8ca0-a06f1fd44200",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122833Z:fd07588a-c04b-49f7-8ca0-a06f1fd44200"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0bb5ee8b-5edd-4ed8-a1c7-819479c7aeac",
- "name": "0bb5ee8b-5edd-4ed8-a1c7-819479c7aeac",
- "status": "Succeeded",
- "startTime": "2022-05-27T10:16:30.3318748Z",
- "endTime": "2022-05-27T10:16:30.3631055Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
- }
+ "status": "Succeeded"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,177 +328,54 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:17:01 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-27T10%3A16%3A30.3674866Z\u0027\u0022",
+ "Date": "Tue, 26 Jul 2022 12:28:33 GMT",
+ "ETag": "W/\u00226f7dfb09-eb0f-47fb-990f-eddfd99597dd\u0022",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "da0772a8-6fe0-485c-8a84-cd483b64f862",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T101702Z:da0772a8-6fe0-485c-8a84-cd483b64f862",
- "X-Powered-By": "ASP.NET"
+ "x-ms-arm-service-request-id": "426e66e6-1875-42ec-bc50-e9dfc2603282",
+ "x-ms-correlation-request-id": "35a953da-65ac-46e9-b628-c437a0bc91f4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122833Z:35a953da-65ac-46e9-b628-c437a0bc91f4"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
- "type": "Microsoft.NetApp/netAppAccounts",
- "etag": "W/\u0022datetime\u00272022-05-27T10%3A16%3A30.3674866Z\u0027\u0022",
- "location": "southcentralusstage",
+ "name": "sdk-python-tests-vnet-westus2-70dd2307",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307",
+ "etag": "W/\u00226f7dfb09-eb0f-47fb-990f-eddfd99597dd\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-27T10:16:26.4597106Z"
+ "CreatedOnDate": "2022-07-26T12:28:25.3205573Z"
},
"properties": {
- "activeDirectories": [
- {
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
- "password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
- "status": "Created",
- "smbServerName": "testsmb",
- "organizationalUnit": "CN=Computers",
- "aesEncryption": false,
- "ldapSigning": false,
- "ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
- "encryptDCConnections": false,
- "ldapSearchScope": {}
- }
- ],
- "encryption": {
- "keySource": "Microsoft.NetApp"
+ "provisioningState": "Succeeded",
+ "resourceGuid": "ea0d0b45-6f13-4ddb-8249-e188809e736a",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
},
- "provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T10:16:29.589743Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T10:16:29.589743Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
- "RequestMethod": "PUT",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "150",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
- },
- "RequestBody": {
- "location": "southcentralusstage",
- "properties": {
- "size": 4398046511104,
- "serviceLevel": "Premium",
- "coolAccess": false,
- "encryptionType": "Single"
- }
- },
- "StatusCode": 201,
- "ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/930af18a-34a2-4d25-a1fb-23484c9bb91a?api-version=2022-01-01",
- "Cache-Control": "no-cache",
- "Content-Length": "917",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:17:04 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-27T10%3A17%3A04.1024262Z\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": "aee57b3f-b5c8-4011-8ead-88e337e70da0",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T101705Z:aee57b3f-b5c8-4011-8ead-88e337e70da0",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools",
- "etag": "W/\u0022datetime\u00272022-05-27T10%3A17%3A04.1024262Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-27T10:17:02.5339302Z"
- },
- "properties": {
- "serviceLevel": "Premium",
- "size": 4398046511104,
- "totalThroughputMibps": 0.0,
- "utilizedThroughputMibps": 0.0,
- "encryptionType": "Single",
- "coolAccess": false,
- "provisioningState": "Creating"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T10:17:03.6993942Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T10:17:03.6993942Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/930af18a-34a2-4d25-a1fb-23484c9bb91a?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:17: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": "25fbb534-bdbb-4ac0-ab4d-7c1c7cafd570",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T101735Z:25fbb534-bdbb-4ac0-ab4d-7c1c7cafd570",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/930af18a-34a2-4d25-a1fb-23484c9bb91a",
- "name": "930af18a-34a2-4d25-a1fb-23484c9bb91a",
- "status": "Succeeded",
- "startTime": "2022-05-27T10:17:04.1076001Z",
- "endTime": "2022-05-27T10:17:05.068191Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/08a70b92-0d5e-4642-8252-5e9ea8504a71?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -498,199 +383,142 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:17:36 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-27T10%3A17%3A05.0595999Z\u0027\u0022",
+ "Date": "Tue, 26 Jul 2022 12:28:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "50861db4-d540-4041-bff3-e463839d5327",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T101736Z:50861db4-d540-4041-bff3-e463839d5327",
- "X-Powered-By": "ASP.NET"
+ "x-ms-arm-service-request-id": "eb9f8d13-ca7a-4196-9bfa-d859a23abbab",
+ "x-ms-correlation-request-id": "0762c2ad-a2cf-4d77-96d8-b04e5061c873",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122834Z:0762c2ad-a2cf-4d77-96d8-b04e5061c873"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools",
- "etag": "W/\u0022datetime\u00272022-05-27T10%3A17%3A05.0595999Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-27T10:17:02.5339302Z"
- },
- "properties": {
- "poolId": "9627bf68-9c72-e0f8-b62a-ed71e9ca230c",
- "serviceLevel": "Premium",
- "size": 4398046511104,
- "qosType": "Auto",
- "totalThroughputMibps": 256.0,
- "utilizedThroughputMibps": 0.0,
- "encryptionType": "Single",
- "coolAccess": false,
- "provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T10:17:03.6993942Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T10:17:03.6993942Z"
- }
+ "status": "Succeeded"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "800",
+ "Content-Length": "151",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
"properties": {
- "creationToken": "sdk-py-tests-vol-1",
- "serviceLevel": "Premium",
- "usageThreshold": 107374182400,
- "protocolTypes": [
- "NFSv3"
- ],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "coolAccess": false,
- "unixPermissions": "0770",
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled"
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "properties": {
+ "serviceName": "Microsoft.Netapp/volumes"
+ }
+ }
+ ]
}
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a330e2a1-af81-4ebd-9515-0d6db946abd5?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6abb4d57-ee79-460a-b06d-a8cb6cb9735b?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Length": "1567",
+ "Content-Length": "1318",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:17:51 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-27T10%3A17%3A51.4971757Z\u0027\u0022",
+ "Date": "Tue, 26 Jul 2022 12:28:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Retry-After": "3",
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6af4ff86-5485-468c-89b0-6cee7f4dc10a",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T101752Z:6af4ff86-5485-468c-89b0-6cee7f4dc10a",
- "X-Powered-By": "ASP.NET"
+ "x-ms-arm-service-request-id": "497e09a0-57df-4397-8f63-28bae3df2ebb",
+ "x-ms-correlation-request-id": "ccbbb06b-9bc7-42fd-9ff6-f05ad09746fc",
+ "x-ms-ratelimit-remaining-subscription-writes": "1198",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122834Z:ccbbb06b-9bc7-42fd-9ff6-f05ad09746fc"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-27T10%3A17%3A51.4971757Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-27T10:17:47.1512723Z"
- },
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default",
+ "etag": "W/\u00223b90f218-55c9-4b4d-84ab-2d5ceb88033b\u0022",
"properties": {
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "usageThreshold": 107374182400,
- "protocolTypes": [
- "NFSv3"
+ "provisioningState": "Updating",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u00223b90f218-55c9-4b4d-84ab-2d5ceb88033b\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Creating"
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
},
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T10:17:49.0123706Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T10:17:49.0123706Z"
- }
+ "type": "Microsoft.Network/virtualNetworks/subnets"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a330e2a1-af81-4ebd-9515-0d6db946abd5?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/08a70b92-0d5e-4642-8252-5e9ea8504a71?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
- "StatusCode": 200,
+ "StatusCode": 204,
"ResponseHeaders": {
+ "Azure-AsyncNotification": "Enabled",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/08a70b92-0d5e-4642-8252-5e9ea8504a71?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:18:21 GMT",
+ "Date": "Tue, 26 Jul 2022 12:28:34 GMT",
"Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/08a70b92-0d5e-4642-8252-5e9ea8504a71?api-version=2021-08-01",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "9d6458cb-e355-455a-8932-47485cc8ee4b",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T101822Z:9d6458cb-e355-455a-8932-47485cc8ee4b",
- "X-Powered-By": "ASP.NET"
+ "x-ms-arm-service-request-id": "ba522b14-5fb4-4f16-91da-e5ec6f9ae3dd",
+ "x-ms-correlation-request-id": "d681fb60-76ce-44da-aaba-85af802b7eeb",
+ "x-ms-ratelimit-remaining-subscription-reads": "11999",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122835Z:e390f5fd-fb89-406c-b764-27066b2ee9a5"
},
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a330e2a1-af81-4ebd-9515-0d6db946abd5",
- "name": "a330e2a1-af81-4ebd-9515-0d6db946abd5",
- "status": "Creating",
- "startTime": "2022-05-27T10:17:51.5031946Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
+ "ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a330e2a1-af81-4ebd-9515-0d6db946abd5?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6abb4d57-ee79-460a-b06d-a8cb6cb9735b?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -698,39 +526,34 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:18:52 GMT",
+ "Date": "Tue, 26 Jul 2022 12:28:37 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "93dd33d3-3994-4b4b-99ac-9499df6a81e9",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T101852Z:93dd33d3-3994-4b4b-99ac-9499df6a81e9",
- "X-Powered-By": "ASP.NET"
+ "x-ms-arm-service-request-id": "fddd3d4a-f44f-42be-935f-9f1469fecfe1",
+ "x-ms-correlation-request-id": "8d0c8942-ca89-4202-9be7-1cb3d7e16420",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122838Z:8d0c8942-ca89-4202-9be7-1cb3d7e16420"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a330e2a1-af81-4ebd-9515-0d6db946abd5",
- "name": "a330e2a1-af81-4ebd-9515-0d6db946abd5",
- "status": "Creating",
- "startTime": "2022-05-27T10:17:51.5031946Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
+ "status": "Succeeded"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a330e2a1-af81-4ebd-9515-0d6db946abd5?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -738,1903 +561,327 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:19:23 GMT",
+ "Date": "Tue, 26 Jul 2022 12:28:39 GMT",
+ "ETag": "W/\u0022c475a1d0-d200-470d-94ed-05a71c2a77c0\u0022",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "69076963-1ac2-404f-81fc-5cd561dc4e41",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T101923Z:69076963-1ac2-404f-81fc-5cd561dc4e41",
- "X-Powered-By": "ASP.NET"
+ "x-ms-arm-service-request-id": "ad5282fc-7cf3-4274-b1e4-bb72ca02f1eb",
+ "x-ms-correlation-request-id": "13474196-f7f3-4185-8aa0-093b8e3f9a58",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122839Z:13474196-f7f3-4185-8aa0-093b8e3f9a58"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a330e2a1-af81-4ebd-9515-0d6db946abd5",
- "name": "a330e2a1-af81-4ebd-9515-0d6db946abd5",
- "status": "Creating",
- "startTime": "2022-05-27T10:17:51.5031946Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default",
+ "etag": "W/\u0022c475a1d0-d200-470d-94ed-05a71c2a77c0\u0022",
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a330e2a1-af81-4ebd-9515-0d6db946abd5?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:19: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": "61ff57b4-3225-405e-8398-cfecc233b314",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T101953Z:61ff57b4-3225-405e-8398-cfecc233b314",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a330e2a1-af81-4ebd-9515-0d6db946abd5",
- "name": "a330e2a1-af81-4ebd-9515-0d6db946abd5",
- "status": "Creating",
- "startTime": "2022-05-27T10:17:51.5031946Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a330e2a1-af81-4ebd-9515-0d6db946abd5?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:20: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": "f447a14d-3447-49d8-877c-7906b5794312",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102023Z:f447a14d-3447-49d8-877c-7906b5794312",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a330e2a1-af81-4ebd-9515-0d6db946abd5",
- "name": "a330e2a1-af81-4ebd-9515-0d6db946abd5",
- "status": "Creating",
- "startTime": "2022-05-27T10:17:51.5031946Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a330e2a1-af81-4ebd-9515-0d6db946abd5?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:20: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": "f673a871-03bc-47e3-8e1c-6cb8411dd16c",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102053Z:f673a871-03bc-47e3-8e1c-6cb8411dd16c",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a330e2a1-af81-4ebd-9515-0d6db946abd5",
- "name": "a330e2a1-af81-4ebd-9515-0d6db946abd5",
- "status": "Creating",
- "startTime": "2022-05-27T10:17:51.5031946Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a330e2a1-af81-4ebd-9515-0d6db946abd5?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:21: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": "dc21fb2f-2e5e-4359-9a5a-b2a50fd94f45",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102124Z:dc21fb2f-2e5e-4359-9a5a-b2a50fd94f45",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a330e2a1-af81-4ebd-9515-0d6db946abd5",
- "name": "a330e2a1-af81-4ebd-9515-0d6db946abd5",
- "status": "Creating",
- "startTime": "2022-05-27T10:17:51.5031946Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a330e2a1-af81-4ebd-9515-0d6db946abd5?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:21: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": "0dc31237-54d4-44c8-9799-ddb2af075004",
- "x-ms-ratelimit-remaining-subscription-reads": "11988",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102154Z:0dc31237-54d4-44c8-9799-ddb2af075004",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a330e2a1-af81-4ebd-9515-0d6db946abd5",
- "name": "a330e2a1-af81-4ebd-9515-0d6db946abd5",
- "status": "Creating",
- "startTime": "2022-05-27T10:17:51.5031946Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a330e2a1-af81-4ebd-9515-0d6db946abd5?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:22: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": "17fae548-d373-445d-8212-64908a31e7b5",
- "x-ms-ratelimit-remaining-subscription-reads": "11987",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102225Z:17fae548-d373-445d-8212-64908a31e7b5",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a330e2a1-af81-4ebd-9515-0d6db946abd5",
- "name": "a330e2a1-af81-4ebd-9515-0d6db946abd5",
- "status": "Succeeded",
- "startTime": "2022-05-27T10:17:51.5031946Z",
- "endTime": "2022-05-27T10:21:57.8170349Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:22:25 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-27T10%3A21%3A57.8177893Z\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": "6fcb8c16-8512-46ea-a8de-794686f46868",
- "x-ms-ratelimit-remaining-subscription-reads": "11986",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102225Z:6fcb8c16-8512-46ea-a8de-794686f46868",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-27T10%3A21%3A57.8177893Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-27T10:17:47.1512723Z"
- },
- "properties": {
- "fileSystemId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_93ade68ee53011e9a696c27beff6b5ea_eff01752",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
- "fileSystemId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.25,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true,
- "provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T10:17:49.0123706Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T10:17:49.0123706Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:22:35 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-27T10%3A21%3A57.8177893Z\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": "2c2fbb61-b4b0-4c3a-8ed7-d4ec196aa7b0",
- "x-ms-ratelimit-remaining-subscription-reads": "11985",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102235Z:2c2fbb61-b4b0-4c3a-8ed7-d4ec196aa7b0",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-27T10%3A21%3A57.8177893Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-27T10:17:47.1512723Z"
- },
- "properties": {
- "fileSystemId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_93ade68ee53011e9a696c27beff6b5ea_eff01752",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
- "fileSystemId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.25,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true,
- "provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T10:17:49.0123706Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T10:17:49.0123706Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:22: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": "13b197a8-1d3f-4c3e-8a68-8cbe81d5281f",
- "x-ms-ratelimit-remaining-subscription-reads": "11984",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102236Z:13b197a8-1d3f-4c3e-8a68-8cbe81d5281f",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "value": [
- {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "name": "sdk-py-tests-acc-1/cbsvault",
- "type": "Microsoft.NetApp/netAppAccounts/vaults",
- "properties": {}
- }
- ]
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "PATCH",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "401",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "backupEnabled": true
- }
- },
- "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/southcentralusstage/operationResults/04e4cf8e-d17a-4e35-b9f9-802ce8b54b9e?api-version=2022-01-01",
- "Cache-Control": "no-cache",
- "Content-Length": "2386",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:22:36 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-27T10%3A22%3A36.6565073Z\u0027\u0022",
- "Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/04e4cf8e-d17a-4e35-b9f9-802ce8b54b9e?api-version=2022-01-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": "ca991d6f-3a01-4d5a-aadf-3afcdab1ef41",
- "x-ms-ratelimit-remaining-subscription-writes": "1196",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102236Z:ca991d6f-3a01-4d5a-aadf-3afcdab1ef41",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-27T10%3A22%3A36.6565073Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-27T10:17:47.1512723Z"
- },
- "properties": {
- "provisioningState": "Patching",
- "fileSystemId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_93ade68ee53011e9a696c27beff6b5ea_eff01752",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
- "fileSystemId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.25,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T10:17:49.0123706Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T10:17:49.0123706Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/04e4cf8e-d17a-4e35-b9f9-802ce8b54b9e?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:23: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": "53f31f8a-8b74-4d81-8962-e06b2fde788d",
- "x-ms-ratelimit-remaining-subscription-reads": "11983",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102307Z:53f31f8a-8b74-4d81-8962-e06b2fde788d",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/04e4cf8e-d17a-4e35-b9f9-802ce8b54b9e",
- "name": "04e4cf8e-d17a-4e35-b9f9-802ce8b54b9e",
- "status": "Succeeded",
- "startTime": "2022-05-27T10:22:36.6558133Z",
- "endTime": "2022-05-27T10:22:54.9961183Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/04e4cf8e-d17a-4e35-b9f9-802ce8b54b9e?api-version=2022-01-01\u0026operationResultResponseType=Location",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:23: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": "d7ae0f77-5f2c-4ec4-9fa0-5777d9c7b400",
- "x-ms-ratelimit-remaining-subscription-reads": "11982",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102307Z:d7ae0f77-5f2c-4ec4-9fa0-5777d9c7b400",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-27T10%3A22%3A54.9969866Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-27T10:22:36.3359293Z"
- },
- "properties": {
- "dataProtection": {
- "backup": {
- "backupEnabled": true,
- "policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
- }
- },
- "fileSystemId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
- "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_93ade68ee53011e9a696c27beff6b5ea_eff01752",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "9627bf68-9c72-e0f8-b62a-ed71e9ca230c",
- "mountTargets": [
- {
- "provisioningState": "",
- "mountTargetId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
- "fileSystemId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
- "startIp": "",
- "endIp": "",
- "gateway": "",
- "netmask": "",
- "subnet": "",
- "ipAddress": "10.7.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": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T10:17:49.0123706Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T10:22:36.5466674Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "PUT",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "81",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
- },
- "RequestBody": {
- "location": "southcentralusstage",
- "properties": {
- "useExistingSnapshot": false
- }
- },
- "StatusCode": 201,
- "ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c2788920-e552-40c4-acec-46f2b36d28b4?api-version=2022-01-01",
- "Cache-Control": "no-cache",
- "Content-Length": "523",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:23:07 GMT",
- "Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c2788920-e552-40c4-acec-46f2b36d28b4?api-version=2022-01-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": "def918fb-40df-4f08-b5f7-a22836a82d03",
- "x-ms-ratelimit-remaining-subscription-writes": "1195",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102307Z:def918fb-40df-4f08-b5f7-a22836a82d03",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "provisioningState": "Creating",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c2788920-e552-40c4-acec-46f2b36d28b4?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:23: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": "4bc18816-8069-42e2-91db-3b657cd3e312",
- "x-ms-ratelimit-remaining-subscription-reads": "11981",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102338Z:4bc18816-8069-42e2-91db-3b657cd3e312",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c2788920-e552-40c4-acec-46f2b36d28b4",
- "name": "c2788920-e552-40c4-acec-46f2b36d28b4",
- "status": "Succeeded",
- "startTime": "2022-05-27T10:23:07.6072584Z",
- "endTime": "2022-05-27T10:23:09.4354353Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c2788920-e552-40c4-acec-46f2b36d28b4?api-version=2022-01-01\u0026operationResultResponseType=Location",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
- },
- "RequestBody": null,
- "StatusCode": 201,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Length": "731",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:23: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": "dde74503-6462-48e5-bccd-41db47cbe959",
- "x-ms-ratelimit-remaining-subscription-reads": "11980",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102338Z:dde74503-6462-48e5-bccd-41db47cbe959",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "etag": "5/27/2022 10:23:09 AM",
- "location": "",
- "properties": {
- "fileSystemId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
- "creationDate": "0001-01-01T00:00:00Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:23: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": "3a1c4571-cdb6-4e9a-af2b-e269f17ea500",
- "x-ms-ratelimit-remaining-subscription-reads": "11979",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102349Z:3a1c4571-cdb6-4e9a-af2b-e269f17ea500",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:23: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": "ba019398-d9b7-4ae1-8c6a-8dc15b1112b8",
- "x-ms-ratelimit-remaining-subscription-reads": "11978",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102359Z:ba019398-d9b7-4ae1-8c6a-8dc15b1112b8",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10: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": "d29ce86e-88e7-4d3c-a1b4-35fc84365754",
- "x-ms-ratelimit-remaining-subscription-reads": "11977",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102410Z:d29ce86e-88e7-4d3c-a1b4-35fc84365754",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:24: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": "b138330c-8361-4f46-9de7-0c329616c3b5",
- "x-ms-ratelimit-remaining-subscription-reads": "11976",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102421Z:b138330c-8361-4f46-9de7-0c329616c3b5",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:24: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": "fc16b9e5-ee3c-488a-8736-9fdc7dab2ff2",
- "x-ms-ratelimit-remaining-subscription-reads": "11975",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102432Z:fc16b9e5-ee3c-488a-8736-9fdc7dab2ff2",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:24: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": "8e8ccea4-b0b0-4519-9aa8-7b6d5323c498",
- "x-ms-ratelimit-remaining-subscription-reads": "11974",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102443Z:8e8ccea4-b0b0-4519-9aa8-7b6d5323c498",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:24: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": "d7e5919c-f0f6-42f4-9fe5-eddd0637d069",
- "x-ms-ratelimit-remaining-subscription-reads": "11973",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102454Z:d7e5919c-f0f6-42f4-9fe5-eddd0637d069",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:25: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": "2554ff45-705c-4ab5-8433-7536870db12d",
- "x-ms-ratelimit-remaining-subscription-reads": "11972",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102505Z:2554ff45-705c-4ab5-8433-7536870db12d",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:25: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": "0e238465-06ac-432f-bf15-c8d8bd12dedf",
- "x-ms-ratelimit-remaining-subscription-reads": "11971",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102516Z:0e238465-06ac-432f-bf15-c8d8bd12dedf",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:25: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": "01845892-c595-4e9e-b475-e951954adfcf",
- "x-ms-ratelimit-remaining-subscription-reads": "11970",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102527Z:01845892-c595-4e9e-b475-e951954adfcf",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:25: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": "f7ea968d-d013-40e3-87b7-b234ae47dd80",
- "x-ms-ratelimit-remaining-subscription-reads": "11969",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102539Z:f7ea968d-d013-40e3-87b7-b234ae47dd80",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:25: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": "f2386bea-0fbd-4d2b-8a22-a919bc1cb349",
- "x-ms-ratelimit-remaining-subscription-reads": "11968",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102550Z:f2386bea-0fbd-4d2b-8a22-a919bc1cb349",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:26: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": "1b8df415-76fb-4e5e-9623-f505253a76e3",
- "x-ms-ratelimit-remaining-subscription-reads": "11967",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102601Z:1b8df415-76fb-4e5e-9623-f505253a76e3",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:26: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": "5cdf4fe3-5b54-4b02-8216-c90042e9b910",
- "x-ms-ratelimit-remaining-subscription-reads": "11966",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102612Z:5cdf4fe3-5b54-4b02-8216-c90042e9b910",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:26: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": "d87feceb-b5bf-4594-b0a8-689993ae84cd",
- "x-ms-ratelimit-remaining-subscription-reads": "11965",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102622Z:d87feceb-b5bf-4594-b0a8-689993ae84cd",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10: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": "534726ba-15e9-4a3f-a6e5-70cb3b46bc68",
- "x-ms-ratelimit-remaining-subscription-reads": "11964",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102633Z:534726ba-15e9-4a3f-a6e5-70cb3b46bc68",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:26: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": "8c85e355-3cb6-4896-bf48-423e5675bac7",
- "x-ms-ratelimit-remaining-subscription-reads": "11963",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102644Z:8c85e355-3cb6-4896-bf48-423e5675bac7",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
+ "provisioningState": "Succeeded",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u0022c475a1d0-d200-470d-94ed-05a71c2a77c0\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/v2.0/.well-known/openid-configuration",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "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": "Fri, 27 May 2022 10:26:55 GMT",
- "Expires": "-1",
- "Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Date": "Tue, 26 Jul 2022 12:28:38 GMT",
+ "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
+ "Set-Cookie": "[set-cookie;]",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
- "Transfer-Encoding": "chunked",
- "Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2533ff29-8f2a-4166-a085-bbc9270d3d87",
- "x-ms-ratelimit-remaining-subscription-reads": "11962",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102655Z:2533ff29-8f2a-4166-a085-bbc9270d3d87",
- "X-Powered-By": "ASP.NET"
+ "x-ms-ests-server": "2.1.13355.6 - WEULR1 ProdSlices",
+ "X-XSS-Protection": "0"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
+ "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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "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",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "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": "Fri, 27 May 2022 10:27:07 GMT",
- "Expires": "-1",
- "Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Date": "Tue, 26 Jul 2022 12:28:39 GMT",
+ "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
+ "Set-Cookie": "[set-cookie;]",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
- "Transfer-Encoding": "chunked",
- "Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "33374132-f41e-487a-bd21-9597fb5c048d",
- "x-ms-ratelimit-remaining-subscription-reads": "11961",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102708Z:33374132-f41e-487a-bd21-9597fb5c048d",
- "X-Powered-By": "ASP.NET"
+ "x-ms-ests-server": "2.1.13315.8 - WEULR2 ProdSlices",
+ "X-XSS-Protection": "0"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
+ "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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "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": "594eadc0-a8ad-4be9-811a-9b318dc1bf61",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "281",
+ "Content-Type": "application/x-www-form-urlencoded",
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.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.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
- "RequestBody": null,
+ "RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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-cache",
- "Content-Encoding": "gzip",
+ "Cache-Control": "no-store, no-cache",
+ "client-request-id": "594eadc0-a8ad-4be9-811a-9b318dc1bf61",
+ "Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:27:18 GMT",
+ "Date": "Tue, 26 Jul 2022 12:28:39 GMT",
"Expires": "-1",
+ "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Set-Cookie": "[set-cookie;]",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
- "Transfer-Encoding": "chunked",
- "Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1d1db72e-0aeb-4b7e-bd4a-28f924b9f6fb",
- "x-ms-ratelimit-remaining-subscription-reads": "11960",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102719Z:1d1db72e-0aeb-4b7e-bd4a-28f924b9f6fb",
- "X-Powered-By": "ASP.NET"
+ "x-ms-clitelem": "1,0,0,,",
+ "x-ms-ests-server": "2.1.13355.6 - WEULR1 ProdSlices",
+ "X-XSS-Protection": "0"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
+ "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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307?api-version=2022-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "23",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "RequestBody": null,
- "StatusCode": 200,
+ "RequestBody": {
+ "location": "westus2"
+ },
+ "StatusCode": 201,
"ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3308bc5c-bc57-4e4a-8ae7-fef2cc547756?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "701",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:27:29 GMT",
+ "Date": "Tue, 26 Jul 2022 12:28:46 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T12%3A28%3A46.003926Z\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": "79f557c1-378d-4b0d-b77a-b09597887957",
- "x-ms-ratelimit-remaining-subscription-reads": "11959",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102729Z:79f557c1-378d-4b0d-b77a-b09597887957",
+ "x-ms-correlation-request-id": "469a20af-dc4b-4565-9660-f4b4ac53932f",
+ "x-ms-ratelimit-remaining-subscription-writes": "1199",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122847Z:469a20af-dc4b-4565-9660-f4b4ac53932f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T12%3A28%3A46.003926Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T12:28:41.5733203Z"
+ },
"properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "provisioningState": "Creating"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-26T12:28:45.0440991Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-26T12:28:45.0440991Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3308bc5c-bc57-4e4a-8ae7-fef2cc547756?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2642,7 +889,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:27:40 GMT",
+ "Date": "Tue, 26 Jul 2022 12:29:17 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2650,36 +897,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9bc410a5-ec7e-4434-bb35-1a030026e456",
- "x-ms-ratelimit-remaining-subscription-reads": "11958",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102740Z:9bc410a5-ec7e-4434-bb35-1a030026e456",
+ "x-ms-correlation-request-id": "2ea10908-13d4-4825-a98a-e9d282f70697",
+ "x-ms-ratelimit-remaining-subscription-reads": "11996",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122917Z:2ea10908-13d4-4825-a98a-e9d282f70697",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3308bc5c-bc57-4e4a-8ae7-fef2cc547756",
+ "name": "3308bc5c-bc57-4e4a-8ae7-fef2cc547756",
+ "status": "Succeeded",
+ "startTime": "2022-07-26T12:28:45.9988745Z",
+ "endTime": "2022-07-26T12:28:46.0457809Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2687,7 +929,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:27:50 GMT",
+ "Date": "Tue, 26 Jul 2022 12:29:18 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T12%3A28%3A46.0497642Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2695,81 +938,128 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a181a41a-7ae7-4d3a-b691-571cbbddb357",
- "x-ms-ratelimit-remaining-subscription-reads": "11957",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102751Z:a181a41a-7ae7-4d3a-b691-571cbbddb357",
+ "x-ms-correlation-request-id": "f3867c81-3cfa-4ee4-9cfe-5b2ce993ef62",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122918Z:f3867c81-3cfa-4ee4-9cfe-5b2ce993ef62",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T12%3A28%3A46.0497642Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T12:28:41.5733203Z"
+ },
"properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "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"
+ },
+ "provisioningState": "Succeeded"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-26T12:28:45.0440991Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-26T12:28:45.0440991Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "138",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "RequestBody": null,
- "StatusCode": 200,
+ "RequestBody": {
+ "location": "westus2",
+ "properties": {
+ "size": 4398046511104,
+ "serviceLevel": "Premium",
+ "coolAccess": false,
+ "encryptionType": "Single"
+ }
+ },
+ "StatusCode": 201,
"ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87f0f5b6-8dd0-4d15-94f9-254066c6fd8d?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "918",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:28:03 GMT",
+ "Date": "Tue, 26 Jul 2022 12:29:21 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T12%3A29%3A19.8465154Z\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": "77810fa1-a034-458e-86d3-c34f66850a96",
- "x-ms-ratelimit-remaining-subscription-reads": "11956",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102804Z:77810fa1-a034-458e-86d3-c34f66850a96",
+ "x-ms-correlation-request-id": "dc419077-42c3-4cf5-93eb-8e3052560312",
+ "x-ms-ratelimit-remaining-subscription-writes": "1198",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122921Z:dc419077-42c3-4cf5-93eb-8e3052560312",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T12%3A29%3A19.8465154Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T12:29:18.4306573Z"
+ },
"properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "serviceLevel": "Premium",
+ "size": 4398046511104,
+ "totalThroughputMibps": 0.0,
+ "utilizedThroughputMibps": 0.0,
+ "encryptionType": "Single",
+ "coolAccess": false,
+ "provisioningState": "Creating"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-26T12:29:19.6512128Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-26T12:29:19.6512128Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87f0f5b6-8dd0-4d15-94f9-254066c6fd8d?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2777,7 +1067,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:28:14 GMT",
+ "Date": "Tue, 26 Jul 2022 12:29:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2785,36 +1075,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c6fe5936-e002-47c4-86d2-7494d9c77e13",
- "x-ms-ratelimit-remaining-subscription-reads": "11955",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102815Z:c6fe5936-e002-47c4-86d2-7494d9c77e13",
+ "x-ms-correlation-request-id": "ad8b5e53-1a5c-4038-ac39-72f19635043e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122951Z:ad8b5e53-1a5c-4038-ac39-72f19635043e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87f0f5b6-8dd0-4d15-94f9-254066c6fd8d",
+ "name": "87f0f5b6-8dd0-4d15-94f9-254066c6fd8d",
+ "status": "Succeeded",
+ "startTime": "2022-07-26T12:29:19.8405245Z",
+ "endTime": "2022-07-26T12:29:20.1529954Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2822,7 +1107,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:28:25 GMT",
+ "Date": "Tue, 26 Jul 2022 12:29:51 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T12%3A29%3A20.1414725Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2830,81 +1116,140 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "105eb4e5-1ff5-4e0f-8aa3-a51067636a7f",
- "x-ms-ratelimit-remaining-subscription-reads": "11954",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102826Z:105eb4e5-1ff5-4e0f-8aa3-a51067636a7f",
+ "x-ms-correlation-request-id": "91b8ce8f-64ee-406e-bbd0-dfc20269968a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T122951Z:91b8ce8f-64ee-406e-bbd0-dfc20269968a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T12%3A29%3A20.1414725Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T12:29:18.4306573Z"
+ },
"properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "poolId": "99a41765-75c3-40c4-e4b2-ece2588c3e4e",
+ "serviceLevel": "Premium",
+ "size": 4398046511104,
+ "qosType": "Auto",
+ "totalThroughputMibps": 256.0,
+ "utilizedThroughputMibps": 0.0,
+ "encryptionType": "Single",
+ "coolAccess": false,
+ "provisioningState": "Succeeded"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "779",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "RequestBody": null,
- "StatusCode": 200,
+ "RequestBody": {
+ "location": "westus2",
+ "properties": {
+ "creationToken": "sdk-py-tests-vol-3-70dd2307",
+ "serviceLevel": "Premium",
+ "usageThreshold": 107374182400,
+ "protocolTypes": [
+ "NFSv3"
+ ],
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default",
+ "networkFeatures": "Basic",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "coolAccess": false,
+ "unixPermissions": "0770",
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0
+ }
+ },
+ "StatusCode": 201,
"ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d2dc637-ce44-46b8-abbc-bf715f83f25d?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "1577",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:28:36 GMT",
+ "Date": "Tue, 26 Jul 2022 12:30:04 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T12%3A30%3A03.7853139Z\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": "3d3909a0-56c7-4107-b059-6d943ac0ee39",
- "x-ms-ratelimit-remaining-subscription-reads": "11953",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102836Z:3d3909a0-56c7-4107-b059-6d943ac0ee39",
+ "x-ms-correlation-request-id": "8fcbc362-0cd8-4e41-9eb4-bc838e84167d",
+ "x-ms-ratelimit-remaining-subscription-writes": "1197",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123004Z:8fcbc362-0cd8-4e41-9eb4-bc838e84167d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T12%3A30%3A03.7853139Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T12:30:02.2297023Z"
+ },
"properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-3-70dd2307",
+ "usageThreshold": 107374182400,
+ "protocolTypes": [
+ "NFSv3"
+ ],
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default",
+ "networkFeatures": "Basic",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Creating"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-26T12:30:03.4479906Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-26T12:30:03.4479906Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d2dc637-ce44-46b8-abbc-bf715f83f25d?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2912,7 +1257,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:28:47 GMT",
+ "Date": "Tue, 26 Jul 2022 12:30:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2920,36 +1265,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "bb17367c-5147-4c5d-9f3a-83feb86b6e77",
- "x-ms-ratelimit-remaining-subscription-reads": "11952",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102847Z:bb17367c-5147-4c5d-9f3a-83feb86b6e77",
+ "x-ms-correlation-request-id": "9219633d-638d-4bcd-9c19-62daf505b0b7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123035Z:9219633d-638d-4bcd-9c19-62daf505b0b7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d2dc637-ce44-46b8-abbc-bf715f83f25d",
+ "name": "8d2dc637-ce44-46b8-abbc-bf715f83f25d",
+ "status": "Creating",
+ "startTime": "2022-07-26T12:30:03.7873422Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d2dc637-ce44-46b8-abbc-bf715f83f25d?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2957,7 +1297,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:28:58 GMT",
+ "Date": "Tue, 26 Jul 2022 12:31:04 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2965,36 +1305,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "161f93ed-f15b-4eb1-b994-752dcd52fdfd",
- "x-ms-ratelimit-remaining-subscription-reads": "11951",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102858Z:161f93ed-f15b-4eb1-b994-752dcd52fdfd",
+ "x-ms-correlation-request-id": "d4cfc8c4-0f92-41c9-91e3-17a096f35aa1",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123105Z:d4cfc8c4-0f92-41c9-91e3-17a096f35aa1",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d2dc637-ce44-46b8-abbc-bf715f83f25d",
+ "name": "8d2dc637-ce44-46b8-abbc-bf715f83f25d",
+ "status": "Creating",
+ "startTime": "2022-07-26T12:30:03.7873422Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d2dc637-ce44-46b8-abbc-bf715f83f25d?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3002,7 +1337,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:29:08 GMT",
+ "Date": "Tue, 26 Jul 2022 12:31:35 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3010,36 +1345,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "74fa70d1-1045-4ca7-9c3e-794c1f4ae881",
- "x-ms-ratelimit-remaining-subscription-reads": "11950",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102909Z:74fa70d1-1045-4ca7-9c3e-794c1f4ae881",
+ "x-ms-correlation-request-id": "5ca98ca3-0d50-4439-a771-efd0b1f27180",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123135Z:5ca98ca3-0d50-4439-a771-efd0b1f27180",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d2dc637-ce44-46b8-abbc-bf715f83f25d",
+ "name": "8d2dc637-ce44-46b8-abbc-bf715f83f25d",
+ "status": "Creating",
+ "startTime": "2022-07-26T12:30:03.7873422Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d2dc637-ce44-46b8-abbc-bf715f83f25d?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3047,7 +1377,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:29:19 GMT",
+ "Date": "Tue, 26 Jul 2022 12:32:05 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3055,36 +1385,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9c82d368-5ae4-410b-9be2-08be3a7919d9",
- "x-ms-ratelimit-remaining-subscription-reads": "11949",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102920Z:9c82d368-5ae4-410b-9be2-08be3a7919d9",
+ "x-ms-correlation-request-id": "6aea91a7-b16c-449a-bee9-a32c6fa87979",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123206Z:6aea91a7-b16c-449a-bee9-a32c6fa87979",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d2dc637-ce44-46b8-abbc-bf715f83f25d",
+ "name": "8d2dc637-ce44-46b8-abbc-bf715f83f25d",
+ "status": "Creating",
+ "startTime": "2022-07-26T12:30:03.7873422Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d2dc637-ce44-46b8-abbc-bf715f83f25d?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3092,7 +1417,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:29:30 GMT",
+ "Date": "Tue, 26 Jul 2022 12:32:35 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3100,36 +1425,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1c8c8055-5aaa-4536-866d-7088e3fd810a",
- "x-ms-ratelimit-remaining-subscription-reads": "11948",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102931Z:1c8c8055-5aaa-4536-866d-7088e3fd810a",
+ "x-ms-correlation-request-id": "c2984949-b0c7-4af0-9917-99bdfdeff33c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123236Z:c2984949-b0c7-4af0-9917-99bdfdeff33c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d2dc637-ce44-46b8-abbc-bf715f83f25d",
+ "name": "8d2dc637-ce44-46b8-abbc-bf715f83f25d",
+ "status": "Creating",
+ "startTime": "2022-07-26T12:30:03.7873422Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d2dc637-ce44-46b8-abbc-bf715f83f25d?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3137,7 +1457,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:29:41 GMT",
+ "Date": "Tue, 26 Jul 2022 12:33:06 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3145,36 +1465,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1f09a027-d282-46c0-a7a3-c5e17a0f9cfd",
- "x-ms-ratelimit-remaining-subscription-reads": "11947",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102941Z:1f09a027-d282-46c0-a7a3-c5e17a0f9cfd",
+ "x-ms-correlation-request-id": "3dbcf88b-66bb-4163-9187-ad4c78311915",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123306Z:3dbcf88b-66bb-4163-9187-ad4c78311915",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d2dc637-ce44-46b8-abbc-bf715f83f25d",
+ "name": "8d2dc637-ce44-46b8-abbc-bf715f83f25d",
+ "status": "Creating",
+ "startTime": "2022-07-26T12:30:03.7873422Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d2dc637-ce44-46b8-abbc-bf715f83f25d?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3182,7 +1497,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:29:52 GMT",
+ "Date": "Tue, 26 Jul 2022 12:33:37 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3190,36 +1505,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5ce9f2dc-6dce-4983-aa59-42172843e70d",
- "x-ms-ratelimit-remaining-subscription-reads": "11946",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T102953Z:5ce9f2dc-6dce-4983-aa59-42172843e70d",
+ "x-ms-correlation-request-id": "8d207280-80ba-4d3f-b344-2032c2411578",
+ "x-ms-ratelimit-remaining-subscription-reads": "11986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123337Z:8d207280-80ba-4d3f-b344-2032c2411578",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d2dc637-ce44-46b8-abbc-bf715f83f25d",
+ "name": "8d2dc637-ce44-46b8-abbc-bf715f83f25d",
+ "status": "Creating",
+ "startTime": "2022-07-26T12:30:03.7873422Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d2dc637-ce44-46b8-abbc-bf715f83f25d?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3227,7 +1537,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:30:03 GMT",
+ "Date": "Tue, 26 Jul 2022 12:34:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3235,36 +1545,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "cc2dd0da-63b2-481e-a12f-774ac36b83a7",
- "x-ms-ratelimit-remaining-subscription-reads": "11945",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103004Z:cc2dd0da-63b2-481e-a12f-774ac36b83a7",
+ "x-ms-correlation-request-id": "05cc9875-0105-4fb4-a545-b5419570e72f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123408Z:05cc9875-0105-4fb4-a545-b5419570e72f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d2dc637-ce44-46b8-abbc-bf715f83f25d",
+ "name": "8d2dc637-ce44-46b8-abbc-bf715f83f25d",
+ "status": "Creating",
+ "startTime": "2022-07-26T12:30:03.7873422Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
"properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d2dc637-ce44-46b8-abbc-bf715f83f25d?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3272,7 +1577,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:30:14 GMT",
+ "Date": "Tue, 26 Jul 2022 12:34:37 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3280,36 +1585,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "83f56c23-f7f9-4f02-b983-1dba58b3690d",
- "x-ms-ratelimit-remaining-subscription-reads": "11944",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103015Z:83f56c23-f7f9-4f02-b983-1dba58b3690d",
+ "x-ms-correlation-request-id": "08c60e3b-cceb-442a-b8a1-35d2e956f760",
+ "x-ms-ratelimit-remaining-subscription-reads": "11984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123438Z:08c60e3b-cceb-442a-b8a1-35d2e956f760",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d2dc637-ce44-46b8-abbc-bf715f83f25d",
+ "name": "8d2dc637-ce44-46b8-abbc-bf715f83f25d",
+ "status": "Succeeded",
+ "startTime": "2022-07-26T12:30:03.7873422Z",
+ "endTime": "2022-07-26T12:34:10.0294677Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3317,7 +1617,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:30:25 GMT",
+ "Date": "Tue, 26 Jul 2022 12:34:37 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T12%3A34%3A10.023258Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3325,36 +1626,90 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c5dce397-7600-438f-af33-dba5be93b398",
- "x-ms-ratelimit-remaining-subscription-reads": "11943",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103025Z:c5dce397-7600-438f-af33-dba5be93b398",
+ "x-ms-correlation-request-id": "1f7a5d59-00f6-4876-8205-390aa2b0da3d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11983",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123438Z:1f7a5d59-00f6-4876-8205-390aa2b0da3d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T12%3A34%3A10.023258Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T12:30:02.2297023Z"
+ },
"properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "fileSystemId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
+ "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_0fba7161",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
+ "fileSystemId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3362,7 +1717,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:30:36 GMT",
+ "Date": "Tue, 26 Jul 2022 12:34:48 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T12%3A34%3A10.023258Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3370,36 +1726,90 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b407a241-28ff-44bd-81f6-a7d2694d6171",
- "x-ms-ratelimit-remaining-subscription-reads": "11942",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103036Z:b407a241-28ff-44bd-81f6-a7d2694d6171",
+ "x-ms-correlation-request-id": "9505a2a3-14b6-45af-998a-aab5ebb6c81b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123449Z:9505a2a3-14b6-45af-998a-aab5ebb6c81b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T12%3A34%3A10.023258Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T12:30:02.2297023Z"
+ },
"properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "fileSystemId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
+ "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_0fba7161",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
+ "fileSystemId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/vaults?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3407,7 +1817,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:30:47 GMT",
+ "Date": "Tue, 26 Jul 2022 12:34:48 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3415,81 +1825,149 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e03d4dae-00b7-4ab7-9f1f-b05ad20c9218",
- "x-ms-ratelimit-remaining-subscription-reads": "11941",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103047Z:e03d4dae-00b7-4ab7-9f1f-b05ad20c9218",
+ "x-ms-correlation-request-id": "853f34bb-fb5f-49a3-8384-41373b742e34",
+ "x-ms-ratelimit-remaining-subscription-reads": "11981",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123449Z:853f34bb-fb5f-49a3-8384-41373b742e34",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
+ "value": [
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": {
+ "enabled": true,
+ "vaultId": "6130fdad-3bac-11eb-aba9-0e6a0f269857"
+ }
+ }
+ ]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "PATCH",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "408",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/vaults/cbsvault",
+ "backupEnabled": true
+ }
+ },
+ "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/975bd743-0694-44d1-957a-add83a27e707?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "2131",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:30:58 GMT",
+ "Date": "Tue, 26 Jul 2022 12:34:49 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T12%3A34%3A50.6541507Z\u0027\u0022",
"Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/975bd743-0694-44d1-957a-add83a27e707?api-version=2022-03-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": "ef9690b8-484e-4a49-8a10-35b7ad6a9b47",
- "x-ms-ratelimit-remaining-subscription-reads": "11940",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103058Z:ef9690b8-484e-4a49-8a10-35b7ad6a9b47",
+ "x-ms-correlation-request-id": "f8dc37ce-aecd-4f9f-b8b7-ce97cbd6a03e",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123450Z:f8dc37ce-aecd-4f9f-b8b7-ce97cbd6a03e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T12%3A34%3A50.6541507Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T12:30:02.2297023Z"
+ },
"properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "provisioningState": "Patching",
+ "fileSystemId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
+ "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_0fba7161",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
+ "fileSystemId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/975bd743-0694-44d1-957a-add83a27e707?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3497,7 +1975,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:30:58 GMT",
+ "Date": "Tue, 26 Jul 2022 12:35:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3505,55 +1983,39 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9528b7e0-9866-4797-8e93-aa44ce3991e4",
- "x-ms-ratelimit-remaining-subscription-reads": "11939",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103059Z:9528b7e0-9866-4797-8e93-aa44ce3991e4",
+ "x-ms-correlation-request-id": "b89870e8-d006-484b-8355-f22d5a77023c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11980",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123521Z:b89870e8-d006-484b-8355-f22d5a77023c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "value": [
- {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "name": "sdk-py-tests-acc-1/cbsvault",
- "type": "Microsoft.NetApp/netAppAccounts/vaults",
- "properties": {}
- }
- ]
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/975bd743-0694-44d1-957a-add83a27e707",
+ "name": "975bd743-0694-44d1-957a-add83a27e707",
+ "status": "Succeeded",
+ "startTime": "2022-07-26T12:34:50.6591682Z",
+ "endTime": "2022-07-26T12:34:54.6438947Z",
+ "percentComplete": 100.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "PATCH",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/975bd743-0694-44d1-957a-add83a27e707?api-version=2022-03-01\u0026operationResultResponseType=Location",
+ "RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "401",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "backupEnabled": true
- }
- },
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0
- }
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Fri, 27 May 2022 10:30:59 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-27T10%3A30%3A59.298203Z\u0027\u0022",
+ "Date": "Tue, 26 Jul 2022 12:35:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3561,33 +2023,34 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3d6174a8-cc55-4f89-b30c-8836b87064c1",
- "x-ms-ratelimit-remaining-subscription-writes": "1194",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103059Z:3d6174a8-cc55-4f89-b30c-8836b87064c1",
+ "x-ms-correlation-request-id": "d8290115-ca53-458f-b29b-e5897d4a97c8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11979",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123521Z:d8290115-ca53-458f-b29b-e5897d4a97c8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-27T10%3A30%3A59.298203Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-26T12%3A34%3A54.6088046Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-27T10:22:36.3359293Z"
+ "CreatedOnDate": "2022-07-26T12:34:50.2296582Z"
},
"properties": {
"dataProtection": {
"backup": {
"backupEnabled": true,
"policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/vaults/cbsvault"
}
},
- "provisioningState": "Succeeded",
- "fileSystemId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
+ "fileSystemId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-70dd2307",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
+ "usedBytes": 0,
"exportPolicy": {
"rules": [
{
@@ -3596,6 +2059,7 @@
"unixReadWrite": true,
"cifs": false,
"nfsv3": true,
+ "nfsv4": false,
"nfsv41": false,
"allowedClients": "0.0.0.0/0",
"kerberos5ReadOnly": false,
@@ -3612,27 +2076,35 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_eff01752",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_0fba7161",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307",
+ "poolId": "99a41765-75c3-40c4-e4b2-ece2588c3e4e",
+ "mountTargets": [
+ {
+ "provisioningState": "",
+ "mountTargetId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
+ "fileSystemId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
+ "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",
- "mountTargets": [
- {
- "mountTargetId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
- "fileSystemId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.25,
+ "encryptionKeySource": "Microsoft.NetApp",
"volumeSpecName": "generic",
"coolAccess": false,
"avsDataStore": "Disabled",
@@ -3640,59 +2112,56 @@
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true
+ "encrypted": true,
+ "provisioningState": "Succeeded"
},
"systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T10:17:49.0123706Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T10:30:59.1769989Z"
+ "lastModifiedAt": "2022-07-26T12:34:50.5190597Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "81",
+ "Content-Length": "69",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"useExistingSnapshot": false
}
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/12293c5b-a7c3-45d9-82ce-d75f72a8b787?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a02f188b-ce41-43dc-8061-bb3b604b1572?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "523",
+ "Content-Length": "538",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:30:59 GMT",
+ "Date": "Tue, 26 Jul 2022 12:35:21 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/12293c5b-a7c3-45d9-82ce-d75f72a8b787?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a02f188b-ce41-43dc-8061-bb3b604b1572?api-version=2022-03-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": "9a1973e9-e7ad-49f9-99a8-a197a7934993",
- "x-ms-ratelimit-remaining-subscription-writes": "1193",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103059Z:9a1973e9-e7ad-49f9-99a8-a197a7934993",
+ "x-ms-correlation-request-id": "e9858925-9ce4-4c62-b6d2-58d3d0bc4bbf",
+ "x-ms-ratelimit-remaining-subscription-writes": "1195",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123522Z:e9858925-9ce4-4c62-b6d2-58d3d0bc4bbf",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
"provisioningState": "Creating",
"useExistingSnapshot": false
@@ -3700,13 +2169,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/12293c5b-a7c3-45d9-82ce-d75f72a8b787?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a02f188b-ce41-43dc-8061-bb3b604b1572?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3714,7 +2183,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:31:29 GMT",
+ "Date": "Tue, 26 Jul 2022 12:35:52 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3722,59 +2191,59 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f9681f20-1d21-48b6-856e-2aed6d8b9d17",
- "x-ms-ratelimit-remaining-subscription-reads": "11938",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103130Z:f9681f20-1d21-48b6-856e-2aed6d8b9d17",
+ "x-ms-correlation-request-id": "c26904da-5309-4c29-8f23-d882022ad918",
+ "x-ms-ratelimit-remaining-subscription-reads": "11978",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123552Z:c26904da-5309-4c29-8f23-d882022ad918",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/12293c5b-a7c3-45d9-82ce-d75f72a8b787",
- "name": "12293c5b-a7c3-45d9-82ce-d75f72a8b787",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a02f188b-ce41-43dc-8061-bb3b604b1572",
+ "name": "a02f188b-ce41-43dc-8061-bb3b604b1572",
"status": "Succeeded",
- "startTime": "2022-05-27T10:30:59.6981228Z",
- "endTime": "2022-05-27T10:31:01.3785299Z",
+ "startTime": "2022-07-26T12:35:21.8875295Z",
+ "endTime": "2022-07-26T12:35:22.200061Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/12293c5b-a7c3-45d9-82ce-d75f72a8b787?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a02f188b-ce41-43dc-8061-bb3b604b1572?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 201,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "731",
+ "Content-Length": "758",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:31:29 GMT",
+ "Date": "Tue, 26 Jul 2022 12:35:52 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": "82f64cf0-d949-4e3a-98fe-330abc5d22fe",
- "x-ms-ratelimit-remaining-subscription-reads": "11937",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103130Z:82f64cf0-d949-4e3a-98fe-330abc5d22fe",
+ "x-ms-correlation-request-id": "15eb273f-a3c5-4cf3-a453-a6bf076c482f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11977",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123552Z:15eb273f-a3c5-4cf3-a453-a6bf076c482f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "5/27/2022 10:31:01 AM",
+ "etag": "7/26/2022 12:35:22 PM",
"location": "",
"properties": {
- "fileSystemId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
+ "fileSystemId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
"creationDate": "0001-01-01T00:00:00Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "backupId": "5843370a-56fd-891b-ee92-79a15e28ca7c",
"size": 0,
"backupType": "Manual",
"failureReason": "None",
@@ -3784,58 +2253,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:31: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": "14bb3525-e1ab-4061-97aa-a236a7786e9a",
- "x-ms-ratelimit-remaining-subscription-reads": "11936",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103142Z:14bb3525-e1ab-4061-97aa-a236a7786e9a",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3843,7 +2267,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:31:52 GMT",
+ "Date": "Tue, 26 Jul 2022 12:36:02 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3851,36 +2275,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ce497ec5-4055-433a-b9d7-e2bb092a83ee",
- "x-ms-ratelimit-remaining-subscription-reads": "11935",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103153Z:ce497ec5-4055-433a-b9d7-e2bb092a83ee",
+ "x-ms-correlation-request-id": "dddd6987-ca9a-452e-ba58-1297666fb0af",
+ "x-ms-ratelimit-remaining-subscription-reads": "11976",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123603Z:dddd6987-ca9a-452e-ba58-1297666fb0af",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:35:22Z",
+ "backupId": "5843370a-56fd-891b-ee92-79a15e28ca7c",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3888,7 +2312,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:32:03 GMT",
+ "Date": "Tue, 26 Jul 2022 12:36:13 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3896,36 +2320,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "dfe81c69-8519-4df2-bf89-03319414ba3a",
- "x-ms-ratelimit-remaining-subscription-reads": "11934",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103204Z:dfe81c69-8519-4df2-bf89-03319414ba3a",
+ "x-ms-correlation-request-id": "8ed5908d-2d5b-4b02-9b21-3ce1a2a79c0b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11975",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123613Z:8ed5908d-2d5b-4b02-9b21-3ce1a2a79c0b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:35:22Z",
+ "backupId": "5843370a-56fd-891b-ee92-79a15e28ca7c",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3933,7 +2357,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:32:14 GMT",
+ "Date": "Tue, 26 Jul 2022 12:36:23 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3941,36 +2365,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "195c085a-59b7-4ec4-a805-e040a06ab347",
- "x-ms-ratelimit-remaining-subscription-reads": "11933",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103215Z:195c085a-59b7-4ec4-a805-e040a06ab347",
+ "x-ms-correlation-request-id": "8233a9b0-41b2-4e16-b24f-db8bb3ff316a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11974",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123624Z:8233a9b0-41b2-4e16-b24f-db8bb3ff316a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:35:22Z",
+ "backupId": "5843370a-56fd-891b-ee92-79a15e28ca7c",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3978,7 +2402,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:32:25 GMT",
+ "Date": "Tue, 26 Jul 2022 12:36:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3986,36 +2410,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "aaf390da-8ad4-4435-82aa-015b1be97a65",
- "x-ms-ratelimit-remaining-subscription-reads": "11932",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103226Z:aaf390da-8ad4-4435-82aa-015b1be97a65",
+ "x-ms-correlation-request-id": "a8c2c4b2-b01e-4dd8-9aae-e8ae6c1151e5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11973",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123634Z:a8c2c4b2-b01e-4dd8-9aae-e8ae6c1151e5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
- "size": 0,
+ "creationDate": "2022-07-26T12:35:26Z",
+ "backupId": "5843370a-56fd-891b-ee92-79a15e28ca7c",
+ "size": 339968,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/vaults?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4023,7 +2447,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:32:36 GMT",
+ "Date": "Tue, 26 Jul 2022 12:36:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4031,89 +2455,58 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "646debd5-9a6c-4eb0-b326-2f344968d170",
- "x-ms-ratelimit-remaining-subscription-reads": "11931",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103237Z:646debd5-9a6c-4eb0-b326-2f344968d170",
+ "x-ms-correlation-request-id": "92e3deb0-bc80-4ee6-a84d-f4234cfb72a4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11972",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123635Z:92e3deb0-bc80-4ee6-a84d-f4234cfb72a4",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
- "properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
- }
+ "value": [
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": {
+ "enabled": true,
+ "vaultId": "6130fdad-3bac-11eb-aba9-0e6a0f269857"
+ }
+ }
+ ]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "PATCH",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:32: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": "8ba81026-cd66-47b9-b0d5-f9364540e4cb",
- "x-ms-ratelimit-remaining-subscription-reads": "11930",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103248Z:8ba81026-cd66-47b9-b0d5-f9364540e4cb",
- "X-Powered-By": "ASP.NET"
+ "Content-Length": "408",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "RequestBody": {
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "serviceLevel": "Premium",
+ "usageThreshold": 107374182400,
+ "dataProtection": {
+ "backup": {
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/vaults/cbsvault",
+ "backupEnabled": true
+ }
+ },
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0
}
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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": "Fri, 27 May 2022 10:32:59 GMT",
+ "Date": "Tue, 26 Jul 2022 12:36:36 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T12%3A36%3A35.695846Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4121,81 +2514,148 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "cac5c21c-cfc9-4bfb-8a5c-553149792f8a",
- "x-ms-ratelimit-remaining-subscription-reads": "11929",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103259Z:cac5c21c-cfc9-4bfb-8a5c-553149792f8a",
+ "x-ms-correlation-request-id": "44a8abc8-ec82-4f04-a405-f6baabe9427c",
+ "x-ms-ratelimit-remaining-subscription-writes": "1194",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123637Z:44a8abc8-ec82-4f04-a405-f6baabe9427c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-26T12%3A36%3A35.695846Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-26T12:36:35.3847437Z"
+ },
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "dataProtection": {
+ "backup": {
+ "backupEnabled": true,
+ "policyEnforced": false,
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/vaults/cbsvault"
+ }
+ },
+ "provisioningState": "Succeeded",
+ "fileSystemId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
+ "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_0fba7161",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
+ "fileSystemId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000
+ },
+ "systemData": {
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-26T12:36:35.5620306Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "69",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/661356b7-1403-4bd7-9670-bb15671f1de5?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "538",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:33:09 GMT",
+ "Date": "Tue, 26 Jul 2022 12:36:37 GMT",
"Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/661356b7-1403-4bd7-9670-bb15671f1de5?api-version=2022-03-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": "ad531bb3-7475-4131-b1dc-a1d4a7a72f93",
- "x-ms-ratelimit-remaining-subscription-reads": "11928",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103310Z:ad531bb3-7475-4131-b1dc-a1d4a7a72f93",
+ "x-ms-correlation-request-id": "4b144ac2-5667-44d8-be7a-683c16f7c473",
+ "x-ms-ratelimit-remaining-subscription-writes": "1193",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123637Z:4b144ac2-5667-44d8-be7a-683c16f7c473",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
"useExistingSnapshot": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/661356b7-1403-4bd7-9670-bb15671f1de5?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4203,7 +2663,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:33:21 GMT",
+ "Date": "Tue, 26 Jul 2022 12:37:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4211,81 +2671,75 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9f6ef96b-3cbf-4639-a0e6-66af004fc642",
- "x-ms-ratelimit-remaining-subscription-reads": "11927",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103321Z:9f6ef96b-3cbf-4639-a0e6-66af004fc642",
+ "x-ms-correlation-request-id": "08880b39-45dd-41d1-aa0b-032ba216467d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11971",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123708Z:08880b39-45dd-41d1-aa0b-032ba216467d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups",
- "location": "southcentralusstage",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/661356b7-1403-4bd7-9670-bb15671f1de5",
+ "name": "661356b7-1403-4bd7-9670-bb15671f1de5",
+ "status": "Succeeded",
+ "startTime": "2022-07-26T12:36:37.7509604Z",
+ "endTime": "2022-07-26T12:36:38.0322641Z",
+ "percentComplete": 100.0,
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
- "size": 0,
- "backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/661356b7-1403-4bd7-9670-bb15671f1de5?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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": "758",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:33:32 GMT",
+ "Date": "Tue, 26 Jul 2022 12:37: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": "5bca0324-1290-4a14-9888-29ba9e84a84f",
- "x-ms-ratelimit-remaining-subscription-reads": "11926",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103332Z:5bca0324-1290-4a14-9888-29ba9e84a84f",
+ "x-ms-correlation-request-id": "69a6dcf7-0170-42c3-9333-6e9436b2af18",
+ "x-ms-ratelimit-remaining-subscription-reads": "11970",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123708Z:69a6dcf7-0170-42c3-9333-6e9436b2af18",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "etag": "7/26/2022 12:36:38 PM",
+ "location": "",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "fileSystemId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
+ "creationDate": "0001-01-01T00:00:00Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
- "useExistingSnapshot": false
+ "failureReason": "None",
+ "useExistingSnapshot": false,
+ "provisioningState": "Creating"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4293,7 +2747,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:33:43 GMT",
+ "Date": "Tue, 26 Jul 2022 12:37:18 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4301,36 +2755,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "77fefdf1-fa90-4b69-b415-5d36174ea789",
- "x-ms-ratelimit-remaining-subscription-reads": "11925",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103343Z:77fefdf1-fa90-4b69-b415-5d36174ea789",
+ "x-ms-correlation-request-id": "82742af0-82c3-454a-bd73-07778e7b868e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11969",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123719Z:82742af0-82c3-454a-bd73-07778e7b868e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4338,7 +2792,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:33:54 GMT",
+ "Date": "Tue, 26 Jul 2022 12:37:29 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4346,36 +2800,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d9f4318f-4147-4824-b90f-e51bca6c0313",
- "x-ms-ratelimit-remaining-subscription-reads": "11924",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103354Z:d9f4318f-4147-4824-b90f-e51bca6c0313",
+ "x-ms-correlation-request-id": "b3e76424-fd34-4407-8c84-2a5e5344691c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11968",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123729Z:b3e76424-fd34-4407-8c84-2a5e5344691c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4383,7 +2837,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:34:14 GMT",
+ "Date": "Tue, 26 Jul 2022 12:37:40 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4391,36 +2845,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3eb6f9bf-dc59-45e8-9d43-70a157b14bd9",
- "x-ms-ratelimit-remaining-subscription-reads": "11923",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103415Z:3eb6f9bf-dc59-45e8-9d43-70a157b14bd9",
+ "x-ms-correlation-request-id": "a598f657-f737-44be-bc5f-e0226d04f6ce",
+ "x-ms-ratelimit-remaining-subscription-reads": "11967",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123740Z:a598f657-f737-44be-bc5f-e0226d04f6ce",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4428,7 +2882,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:34:26 GMT",
+ "Date": "Tue, 26 Jul 2022 12:37:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4436,36 +2890,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f4516bd3-109d-4da0-a9a6-4b665b955daa",
- "x-ms-ratelimit-remaining-subscription-reads": "11922",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103426Z:f4516bd3-109d-4da0-a9a6-4b665b955daa",
+ "x-ms-correlation-request-id": "d551dee2-1b70-4fa8-96cd-baf7418c92c5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11966",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123755Z:d551dee2-1b70-4fa8-96cd-baf7418c92c5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4473,7 +2927,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:34:37 GMT",
+ "Date": "Tue, 26 Jul 2022 12:38:04 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4481,36 +2935,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "03ad1932-2fdc-46ba-b893-eb2c2920227f",
- "x-ms-ratelimit-remaining-subscription-reads": "11921",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103437Z:03ad1932-2fdc-46ba-b893-eb2c2920227f",
+ "x-ms-correlation-request-id": "6a604f0f-9c36-4722-9014-658f25fc5a39",
+ "x-ms-ratelimit-remaining-subscription-reads": "11965",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123805Z:6a604f0f-9c36-4722-9014-658f25fc5a39",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4518,7 +2972,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:34:48 GMT",
+ "Date": "Tue, 26 Jul 2022 12:38:16 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4526,36 +2980,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a9080981-4622-4c14-bb9e-8d9d873b3cc4",
- "x-ms-ratelimit-remaining-subscription-reads": "11920",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103448Z:a9080981-4622-4c14-bb9e-8d9d873b3cc4",
+ "x-ms-correlation-request-id": "f6e82206-d19b-49a2-ad89-c2fb48dc09b7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11964",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123816Z:f6e82206-d19b-49a2-ad89-c2fb48dc09b7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4563,7 +3017,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:34:58 GMT",
+ "Date": "Tue, 26 Jul 2022 12:38:26 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4571,36 +3025,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4ca38e9b-f088-4fd4-86c5-d5b54a9b7768",
- "x-ms-ratelimit-remaining-subscription-reads": "11919",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103459Z:4ca38e9b-f088-4fd4-86c5-d5b54a9b7768",
+ "x-ms-correlation-request-id": "51ca65d3-f339-41c6-bb2b-16e6f522563d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11963",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123826Z:51ca65d3-f339-41c6-bb2b-16e6f522563d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4608,7 +3062,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:35:09 GMT",
+ "Date": "Tue, 26 Jul 2022 12:38:37 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4616,36 +3070,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f5ceb8cf-8234-434b-b85b-6372d56354e1",
- "x-ms-ratelimit-remaining-subscription-reads": "11918",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103510Z:f5ceb8cf-8234-434b-b85b-6372d56354e1",
+ "x-ms-correlation-request-id": "bf7d8fa8-d85b-444a-a2ef-70d67b68a5d4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11962",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123837Z:bf7d8fa8-d85b-444a-a2ef-70d67b68a5d4",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4653,7 +3107,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:35:20 GMT",
+ "Date": "Tue, 26 Jul 2022 12:38:47 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4661,36 +3115,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7557dc4d-1ec3-4a68-ba5f-19303395ea97",
- "x-ms-ratelimit-remaining-subscription-reads": "11917",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103521Z:7557dc4d-1ec3-4a68-ba5f-19303395ea97",
+ "x-ms-correlation-request-id": "932faa6d-0185-47d1-8c40-4c1c31d9e7fb",
+ "x-ms-ratelimit-remaining-subscription-reads": "11961",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123848Z:932faa6d-0185-47d1-8c40-4c1c31d9e7fb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4698,7 +3152,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:35:32 GMT",
+ "Date": "Tue, 26 Jul 2022 12:38:58 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4706,36 +3160,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9716cfe0-7609-40ba-b454-165dd1ab0537",
- "x-ms-ratelimit-remaining-subscription-reads": "11916",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103532Z:9716cfe0-7609-40ba-b454-165dd1ab0537",
+ "x-ms-correlation-request-id": "a01ff642-588b-4d34-a6e4-4bcd0ef41f2b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11960",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123858Z:a01ff642-588b-4d34-a6e4-4bcd0ef41f2b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4743,7 +3197,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:35:43 GMT",
+ "Date": "Tue, 26 Jul 2022 12:39:08 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4751,36 +3205,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f4134e6d-69b5-4c98-a815-bd7b7c272c34",
- "x-ms-ratelimit-remaining-subscription-reads": "11915",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103543Z:f4134e6d-69b5-4c98-a815-bd7b7c272c34",
+ "x-ms-correlation-request-id": "9e0a16f9-6e3c-4ce7-aaa8-c875ff8941a0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11959",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123909Z:9e0a16f9-6e3c-4ce7-aaa8-c875ff8941a0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4788,7 +3242,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:35:54 GMT",
+ "Date": "Tue, 26 Jul 2022 12:39:18 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4796,36 +3250,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f6d76bcc-9c0a-4691-a7d0-3ac92f22e5c4",
- "x-ms-ratelimit-remaining-subscription-reads": "11914",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103554Z:f6d76bcc-9c0a-4691-a7d0-3ac92f22e5c4",
+ "x-ms-correlation-request-id": "52b020ec-25e2-42e7-8b8c-67821a08f877",
+ "x-ms-ratelimit-remaining-subscription-reads": "11958",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123919Z:52b020ec-25e2-42e7-8b8c-67821a08f877",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4833,7 +3287,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:36:05 GMT",
+ "Date": "Tue, 26 Jul 2022 12:39:29 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4841,36 +3295,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d7faaa83-c3c6-4336-983a-4b9bae768afb",
- "x-ms-ratelimit-remaining-subscription-reads": "11913",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103605Z:d7faaa83-c3c6-4336-983a-4b9bae768afb",
+ "x-ms-correlation-request-id": "c38d77e3-4778-444f-90d8-92623905d591",
+ "x-ms-ratelimit-remaining-subscription-reads": "11957",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123930Z:c38d77e3-4778-444f-90d8-92623905d591",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4878,7 +3332,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:36:16 GMT",
+ "Date": "Tue, 26 Jul 2022 12:39:40 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4886,36 +3340,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "21b3790f-a526-42e7-9392-04910c7d3b23",
- "x-ms-ratelimit-remaining-subscription-reads": "11912",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103616Z:21b3790f-a526-42e7-9392-04910c7d3b23",
+ "x-ms-correlation-request-id": "95e183a2-588f-4285-a118-24bd2d85614d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11956",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123940Z:95e183a2-588f-4285-a118-24bd2d85614d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4923,7 +3377,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:36:26 GMT",
+ "Date": "Tue, 26 Jul 2022 12:39:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4931,36 +3385,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b8570445-5fa3-4846-b19a-4cfe9af8ded4",
- "x-ms-ratelimit-remaining-subscription-reads": "11911",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103627Z:b8570445-5fa3-4846-b19a-4cfe9af8ded4",
+ "x-ms-correlation-request-id": "4cd7ad30-1e2f-4abe-8a1e-910e36874918",
+ "x-ms-ratelimit-remaining-subscription-reads": "11955",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T123951Z:4cd7ad30-1e2f-4abe-8a1e-910e36874918",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4968,7 +3422,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:36:37 GMT",
+ "Date": "Tue, 26 Jul 2022 12:40:01 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4976,36 +3430,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a8d819df-7aab-43a7-a784-0b5182b7f103",
- "x-ms-ratelimit-remaining-subscription-reads": "11910",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103638Z:a8d819df-7aab-43a7-a784-0b5182b7f103",
+ "x-ms-correlation-request-id": "eb7d5673-5a00-4ee5-8fae-782ac911dff0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11954",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124002Z:eb7d5673-5a00-4ee5-8fae-782ac911dff0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5013,7 +3467,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:36:48 GMT",
+ "Date": "Tue, 26 Jul 2022 12:40:12 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5021,36 +3475,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8716ed0c-9169-4bdf-bda9-f20669881219",
- "x-ms-ratelimit-remaining-subscription-reads": "11909",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103649Z:8716ed0c-9169-4bdf-bda9-f20669881219",
+ "x-ms-correlation-request-id": "e5a72cb1-7a6c-4c1a-8b47-88b77cf785d7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11953",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124012Z:e5a72cb1-7a6c-4c1a-8b47-88b77cf785d7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5058,7 +3512,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:36:59 GMT",
+ "Date": "Tue, 26 Jul 2022 12:40:22 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5066,36 +3520,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6eb85a7f-ea96-4c23-9717-e6c83f3bd2c7",
- "x-ms-ratelimit-remaining-subscription-reads": "11908",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103659Z:6eb85a7f-ea96-4c23-9717-e6c83f3bd2c7",
+ "x-ms-correlation-request-id": "4a982073-1e3c-4a54-af12-8158f85d2d4e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11952",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124023Z:4a982073-1e3c-4a54-af12-8158f85d2d4e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5103,7 +3557,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:37:09 GMT",
+ "Date": "Tue, 26 Jul 2022 12:40:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5111,36 +3565,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8fd4058d-b427-496a-ad77-e3268c475d46",
- "x-ms-ratelimit-remaining-subscription-reads": "11907",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103710Z:8fd4058d-b427-496a-ad77-e3268c475d46",
+ "x-ms-correlation-request-id": "57cdb41c-c156-40da-bfcd-3ac15c1e8821",
+ "x-ms-ratelimit-remaining-subscription-reads": "11951",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124033Z:57cdb41c-c156-40da-bfcd-3ac15c1e8821",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5148,7 +3602,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:37:20 GMT",
+ "Date": "Tue, 26 Jul 2022 12:40:43 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5156,36 +3610,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d4dbb3c8-48aa-41c4-b20c-cfdef210d96c",
- "x-ms-ratelimit-remaining-subscription-reads": "11906",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103721Z:d4dbb3c8-48aa-41c4-b20c-cfdef210d96c",
+ "x-ms-correlation-request-id": "d95a0774-8931-4ec2-ad8b-a2140652b053",
+ "x-ms-ratelimit-remaining-subscription-reads": "11950",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124044Z:d95a0774-8931-4ec2-ad8b-a2140652b053",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5193,7 +3647,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:37:31 GMT",
+ "Date": "Tue, 26 Jul 2022 12:40:53 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5201,36 +3655,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "12391053-e4fa-4ece-a128-d61c47902c64",
- "x-ms-ratelimit-remaining-subscription-reads": "11905",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103732Z:12391053-e4fa-4ece-a128-d61c47902c64",
+ "x-ms-correlation-request-id": "da2654ea-2fe3-4544-b1a5-89effa09aa5b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11949",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124054Z:da2654ea-2fe3-4544-b1a5-89effa09aa5b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5238,7 +3692,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:37:42 GMT",
+ "Date": "Tue, 26 Jul 2022 12:41:04 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5246,36 +3700,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c9fa7777-8e94-485e-ad76-9bf89682990f",
- "x-ms-ratelimit-remaining-subscription-reads": "11904",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103743Z:c9fa7777-8e94-485e-ad76-9bf89682990f",
+ "x-ms-correlation-request-id": "6275d8fe-15ac-419d-acec-b6a5f5801720",
+ "x-ms-ratelimit-remaining-subscription-reads": "11948",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124105Z:6275d8fe-15ac-419d-acec-b6a5f5801720",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5283,7 +3737,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:37:54 GMT",
+ "Date": "Tue, 26 Jul 2022 12:41:14 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5291,36 +3745,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "12a736db-3cba-4629-a749-7ceba9876c33",
- "x-ms-ratelimit-remaining-subscription-reads": "11903",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103754Z:12a736db-3cba-4629-a749-7ceba9876c33",
+ "x-ms-correlation-request-id": "b1728b54-66a0-4014-afee-6eba81537c73",
+ "x-ms-ratelimit-remaining-subscription-reads": "11947",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124115Z:b1728b54-66a0-4014-afee-6eba81537c73",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5328,7 +3782,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:38:05 GMT",
+ "Date": "Tue, 26 Jul 2022 12:41:25 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5336,36 +3790,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "22e19f78-cca2-4f81-ad9e-c05e324154ad",
- "x-ms-ratelimit-remaining-subscription-reads": "11902",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103805Z:22e19f78-cca2-4f81-ad9e-c05e324154ad",
+ "x-ms-correlation-request-id": "9e889623-bc6a-4464-b61c-00b709efc4b1",
+ "x-ms-ratelimit-remaining-subscription-reads": "11946",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124126Z:9e889623-bc6a-4464-b61c-00b709efc4b1",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5373,7 +3827,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:38:16 GMT",
+ "Date": "Tue, 26 Jul 2022 12:41:36 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5381,36 +3835,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "afa850f1-54c2-4bee-8fde-40d3eb3ff1bc",
- "x-ms-ratelimit-remaining-subscription-reads": "11901",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103816Z:afa850f1-54c2-4bee-8fde-40d3eb3ff1bc",
+ "x-ms-correlation-request-id": "bbffb1b3-fe0b-45f1-a332-55141570de3b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11945",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124136Z:bbffb1b3-fe0b-45f1-a332-55141570de3b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5418,7 +3872,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:38:26 GMT",
+ "Date": "Tue, 26 Jul 2022 12:41:48 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5426,36 +3880,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "bcbf5cae-76fe-4947-9e24-6eaf6da5441f",
- "x-ms-ratelimit-remaining-subscription-reads": "11900",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103827Z:bcbf5cae-76fe-4947-9e24-6eaf6da5441f",
+ "x-ms-correlation-request-id": "8304e6ea-3530-4ef9-81ed-221ebba20475",
+ "x-ms-ratelimit-remaining-subscription-reads": "11944",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124148Z:8304e6ea-3530-4ef9-81ed-221ebba20475",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5463,7 +3917,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:38:37 GMT",
+ "Date": "Tue, 26 Jul 2022 12:41:58 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5471,36 +3925,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3e11faba-b8a1-4bd3-a082-64bb95a155a7",
- "x-ms-ratelimit-remaining-subscription-reads": "11899",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103837Z:3e11faba-b8a1-4bd3-a082-64bb95a155a7",
+ "x-ms-correlation-request-id": "ee07e703-9497-4546-b8da-4676006c1253",
+ "x-ms-ratelimit-remaining-subscription-reads": "11943",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124158Z:ee07e703-9497-4546-b8da-4676006c1253",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5508,7 +3962,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:38:49 GMT",
+ "Date": "Tue, 26 Jul 2022 12:42:09 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5516,36 +3970,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6f771c0b-8a07-4f30-88ab-1db07eb3c479",
- "x-ms-ratelimit-remaining-subscription-reads": "11898",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103849Z:6f771c0b-8a07-4f30-88ab-1db07eb3c479",
+ "x-ms-correlation-request-id": "29f60620-34f5-402e-ad56-ad467e30a59e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11942",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124209Z:29f60620-34f5-402e-ad56-ad467e30a59e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
+ "creationDate": "2022-07-26T12:36:38Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
"size": 0,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5553,7 +4007,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:38:59 GMT",
+ "Date": "Tue, 26 Jul 2022 12:42:19 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5561,36 +4015,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5cf54de2-321b-49cc-b7d3-0b877e524faf",
- "x-ms-ratelimit-remaining-subscription-reads": "11897",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103900Z:5cf54de2-321b-49cc-b7d3-0b877e524faf",
+ "x-ms-correlation-request-id": "507104e1-8ac4-46b3-9dda-a30580a51c3d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11941",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124219Z:507104e1-8ac4-46b3-9dda-a30580a51c3d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
- "size": 0,
+ "creationDate": "2022-07-26T12:36:41Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
+ "size": 360448,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5598,7 +4052,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:39:00 GMT",
+ "Date": "Tue, 26 Jul 2022 12:42:20 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5606,42 +4060,42 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "07afae1e-413c-400a-a7bf-cfcde04aa2ba",
- "x-ms-ratelimit-remaining-subscription-reads": "11896",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103901Z:07afae1e-413c-400a-a7bf-cfcde04aa2ba",
+ "x-ms-correlation-request-id": "8d8a850b-302c-4e8b-adf9-57f29f80cf0c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11940",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124220Z:8d8a850b-302c-4e8b-adf9-57f29f80cf0c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:23:09Z",
- "backupId": "c5955f2e-20e0-486b-9dd8-bee92ede797f",
- "size": 0,
+ "creationDate": "2022-07-26T12:35:26Z",
+ "backupId": "5843370a-56fd-891b-ee92-79a15e28ca7c",
+ "size": 339968,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "sdk-py-tests-vol-3-70dd2307",
"useExistingSnapshot": false
}
},
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-27T10:31:01Z",
- "backupId": "e5477c36-8421-2b52-2545-510684f4abd7",
- "size": 0,
+ "creationDate": "2022-07-26T12:36:41Z",
+ "backupId": "bb561391-a976-61ee-4015-a7b1bf53da7a",
+ "size": 360448,
"backupType": "Manual",
- "provisioningState": "Failed",
- "failureReason": "Error when creating - FAILED - [POST /v1/gs-backup-api/adhoc-backup][501] createAdhocBackupJobNotImplemented \u0026{Code:501 Message:Error in creating adhoc backup job - Backup not enabled}",
- "volumeName": "sdk-py-tests-vol-1",
+ "provisioningState": "Succeeded",
+ "failureReason": "None",
+ "volumeName": "sdk-py-tests-vol-3-70dd2307",
"useExistingSnapshot": false
}
}
@@ -5649,13 +4103,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/vaults?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5663,7 +4117,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:39:00 GMT",
+ "Date": "Tue, 26 Jul 2022 12:42:20 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5671,32 +4125,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "973bbc59-652d-46b2-a6f9-239db8c14ace",
- "x-ms-ratelimit-remaining-subscription-reads": "11895",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103901Z:973bbc59-652d-46b2-a6f9-239db8c14ace",
+ "x-ms-correlation-request-id": "884a7e5d-4152-4a68-a535-d49f45e98341",
+ "x-ms-ratelimit-remaining-subscription-reads": "11939",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124220Z:884a7e5d-4152-4a68-a535-d49f45e98341",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "name": "sdk-py-tests-acc-1/cbsvault",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": {}
+ "properties": {
+ "enabled": true,
+ "vaultId": "6130fdad-3bac-11eb-aba9-0e6a0f269857"
+ }
}
]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "PATCH",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "402",
+ "Content-Length": "409",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
"properties": {
@@ -5704,7 +4161,7 @@
"usageThreshold": 107374182400,
"dataProtection": {
"backup": {
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/vaults/cbsvault",
"backupEnabled": false
}
},
@@ -5715,44 +4172,44 @@
},
"StatusCode": 202,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/055f453f-6337-4452-bc6b-6f7f8f6d6c8a?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cac4fb9f-1bf2-48ee-98ea-ba186801abe4?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "2638",
+ "Content-Length": "2544",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:39:01 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-27T10%3A39%3A01.8515565Z\u0027\u0022",
+ "Date": "Tue, 26 Jul 2022 12:42:20 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T12%3A42%3A21.2648508Z\u0027\u0022",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/055f453f-6337-4452-bc6b-6f7f8f6d6c8a?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cac4fb9f-1bf2-48ee-98ea-ba186801abe4?api-version=2022-03-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": "58a79f13-4a2e-4f41-b190-000362ade271",
+ "x-ms-correlation-request-id": "d974f73c-5290-468d-b7d8-467cde5a746d",
"x-ms-ratelimit-remaining-subscription-writes": "1192",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103901Z:58a79f13-4a2e-4f41-b190-000362ade271",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124221Z:d974f73c-5290-468d-b7d8-467cde5a746d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-27T10%3A39%3A01.8515565Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-26T12%3A42%3A21.2648508Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-27T10:22:36.3359293Z"
+ "CreatedOnDate": "2022-07-26T12:36:35.3847437Z"
},
"properties": {
"dataProtection": {
"backup": {
"backupEnabled": true,
"policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/vaults/cbsvault"
}
},
"provisioningState": "Patching",
- "fileSystemId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
+ "fileSystemId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-70dd2307",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -5778,10 +4235,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_eff01752",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_0fba7161",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -5793,9 +4250,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
- "fileSystemId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
+ "fileSystemId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -5806,27 +4263,23 @@
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true
+ "maximumNumberOfFiles": 100000000
},
"systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T10:17:49.0123706Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T10:30:59.1769989Z"
+ "lastModifiedAt": "2022-07-26T12:36:35.5620306Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/055f453f-6337-4452-bc6b-6f7f8f6d6c8a?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cac4fb9f-1bf2-48ee-98ea-ba186801abe4?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5834,7 +4287,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:39:31 GMT",
+ "Date": "Tue, 26 Jul 2022 12:42:50 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5842,31 +4295,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4ee09da7-ae42-4003-b6b4-63e62c0adb9d",
- "x-ms-ratelimit-remaining-subscription-reads": "11894",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103932Z:4ee09da7-ae42-4003-b6b4-63e62c0adb9d",
+ "x-ms-correlation-request-id": "4c277e83-079c-4fbf-a454-8d7b04b9a3de",
+ "x-ms-ratelimit-remaining-subscription-reads": "11938",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124251Z:4c277e83-079c-4fbf-a454-8d7b04b9a3de",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/055f453f-6337-4452-bc6b-6f7f8f6d6c8a",
- "name": "055f453f-6337-4452-bc6b-6f7f8f6d6c8a",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cac4fb9f-1bf2-48ee-98ea-ba186801abe4",
+ "name": "cac4fb9f-1bf2-48ee-98ea-ba186801abe4",
"status": "Succeeded",
- "startTime": "2022-05-27T10:39:01.8543766Z",
- "endTime": "2022-05-27T10:39:30.4648352Z",
+ "startTime": "2022-07-26T12:42:21.2583216Z",
+ "endTime": "2022-07-26T12:42:26.9417609Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/055f453f-6337-4452-bc6b-6f7f8f6d6c8a?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cac4fb9f-1bf2-48ee-98ea-ba186801abe4?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5874,7 +4327,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:39:31 GMT",
+ "Date": "Tue, 26 Jul 2022 12:42:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5882,32 +4335,32 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "83b5ab4d-f174-4154-8869-4e1d3c2edd5c",
- "x-ms-ratelimit-remaining-subscription-reads": "11893",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103932Z:83b5ab4d-f174-4154-8869-4e1d3c2edd5c",
+ "x-ms-correlation-request-id": "b9ff865d-8a8e-4c0e-b033-1aca31bef7f9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11937",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124251Z:b9ff865d-8a8e-4c0e-b033-1aca31bef7f9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-27T10%3A39%3A30.4591547Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-26T12%3A42%3A26.9394851Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-27T10:22:36.3359293Z"
+ "CreatedOnDate": "2022-07-26T12:36:35.3847437Z"
},
"properties": {
"dataProtection": {
"backup": {
"backupEnabled": false,
"policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/vaults/cbsvault"
}
},
- "fileSystemId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
+ "fileSystemId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
+ "creationToken": "sdk-py-tests-vol-3-70dd2307",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -5935,25 +4388,25 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_eff01752",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_0fba7161",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "9627bf68-9c72-e0f8-b62a-ed71e9ca230c",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307",
+ "poolId": "99a41765-75c3-40c4-e4b2-ece2588c3e4e",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
- "fileSystemId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
+ "mountTargetId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
+ "fileSystemId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -5972,28 +4425,23 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"encrypted": true,
- "smbAccessBasedEnumeration": "Disabled",
- "smbNonBrowsable": "Disabled",
"provisioningState": "Succeeded"
},
"systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T10:17:49.0123706Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T10:39:01.7301548Z"
+ "lastModifiedAt": "2022-07-26T12:42:21.1189715Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
@@ -6001,15 +4449,15 @@
"Cache-Control": "no-cache",
"Content-Length": "77",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:39:34 GMT",
+ "Date": "Tue, 26 Jul 2022 12:42:53 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": "e5ac506a-0efd-4a66-a341-7a7bd125e016",
- "x-ms-ratelimit-remaining-subscription-reads": "11892",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103935Z:e5ac506a-0efd-4a66-a341-7a7bd125e016",
+ "x-ms-correlation-request-id": "af2fef5d-5a2d-495b-b123-df667dffe8f9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11936",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124254Z:af2fef5d-5a2d-495b-b123-df667dffe8f9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -6020,13 +4468,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/vaults?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6034,7 +4482,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:39:34 GMT",
+ "Date": "Tue, 26 Jul 2022 12:42:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6042,32 +4490,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0b490425-dff0-4252-a9de-023cc3a4c2d7",
- "x-ms-ratelimit-remaining-subscription-reads": "11891",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103935Z:0b490425-dff0-4252-a9de-023cc3a4c2d7",
+ "x-ms-correlation-request-id": "dc79ee48-d043-447a-9d9f-ce460587e955",
+ "x-ms-ratelimit-remaining-subscription-reads": "11935",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124254Z:dc79ee48-d043-447a-9d9f-ce460587e955",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "name": "sdk-py-tests-acc-1/cbsvault",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": {}
+ "properties": {
+ "enabled": true,
+ "vaultId": "6130fdad-3bac-11eb-aba9-0e6a0f269857"
+ }
}
]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "PATCH",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "402",
+ "Content-Length": "409",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
"properties": {
@@ -6075,7 +4526,7 @@
"usageThreshold": 107374182400,
"dataProtection": {
"backup": {
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/vaults/cbsvault",
"backupEnabled": false
}
},
@@ -6089,8 +4540,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:39:35 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-27T10%3A39%3A35.9110297Z\u0027\u0022",
+ "Date": "Tue, 26 Jul 2022 12:42:54 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-26T12%3A42%3A55.1937314Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6098,32 +4549,32 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "944cdaa1-4062-4ab2-823d-d684cf394d2a",
+ "x-ms-correlation-request-id": "18608286-5992-4f9c-b546-be683c406861",
"x-ms-ratelimit-remaining-subscription-writes": "1191",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103935Z:944cdaa1-4062-4ab2-823d-d684cf394d2a",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124255Z:18608286-5992-4f9c-b546-be683c406861",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-27T10%3A39%3A35.9110297Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-26T12%3A42%3A55.1937314Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-27T10:22:36.3359293Z"
+ "CreatedOnDate": "2022-07-26T12:36:35.3847437Z"
},
"properties": {
"dataProtection": {
"backup": {
"backupEnabled": false,
"policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/vaults/cbsvault"
}
},
"provisioningState": "Succeeded",
- "fileSystemId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
+ "fileSystemId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-70dd2307",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -6149,10 +4600,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_eff01752",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_0fba7161",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -6164,9 +4615,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
- "fileSystemId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
+ "fileSystemId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -6177,27 +4628,23 @@
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true
+ "maximumNumberOfFiles": 100000000
},
"systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T10:17:49.0123706Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T10:39:35.7930251Z"
+ "lastModifiedAt": "2022-07-26T12:42:55.0464369Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
@@ -6205,15 +4652,15 @@
"Cache-Control": "no-cache",
"Content-Length": "77",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:39:38 GMT",
+ "Date": "Tue, 26 Jul 2022 12:42: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": "4af585bf-b16b-414f-b353-e8d312905649",
- "x-ms-ratelimit-remaining-subscription-reads": "11890",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103938Z:4af585bf-b16b-414f-b353-e8d312905649",
+ "x-ms-correlation-request-id": "97b97a58-9b99-4161-bbc7-e6cda82ab6e4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11934",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124257Z:97b97a58-9b99-4161-bbc7-e6cda82ab6e4",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -6224,13 +4671,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6238,7 +4685,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:39:38 GMT",
+ "Date": "Tue, 26 Jul 2022 12:42:57 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6246,9 +4693,9 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f49d7af3-34c0-4909-b4a4-0d0c37bd4963",
- "x-ms-ratelimit-remaining-subscription-reads": "11889",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103939Z:f49d7af3-34c0-4909-b4a4-0d0c37bd4963",
+ "x-ms-correlation-request-id": "0535e525-ef06-40ce-8f32-239286f905a9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11933",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124258Z:0535e525-ef06-40ce-8f32-239286f905a9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -6256,43 +4703,83 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/c887d87f-8147-4719-b337-9c1c74df6362?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/97c71be9-4507-4459-a56c-699078f69f61?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Fri, 27 May 2022 10:39:39 GMT",
+ "Date": "Tue, 26 Jul 2022 12:42:58 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c887d87f-8147-4719-b337-9c1c74df6362?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/97c71be9-4507-4459-a56c-699078f69f61?api-version=2022-03-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": "cb4ec0b8-7d46-4365-af4b-4df8f0c34260",
+ "x-ms-correlation-request-id": "a456c043-220d-471a-9f29-5ddb29eccf33",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T103940Z:cb4ec0b8-7d46-4365-af4b-4df8f0c34260",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124259Z:a456c043-220d-471a-9f29-5ddb29eccf33",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c887d87f-8147-4719-b337-9c1c74df6362?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/97c71be9-4507-4459-a56c-699078f69f61?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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, 26 Jul 2022 12:43: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": "6f33d90d-2cf2-4df8-9f66-c32fa3babfef",
+ "x-ms-ratelimit-remaining-subscription-reads": "11932",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124329Z:6f33d90d-2cf2-4df8-9f66-c32fa3babfef",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/97c71be9-4507-4459-a56c-699078f69f61",
+ "name": "97c71be9-4507-4459-a56c-699078f69f61",
+ "status": "Deleting",
+ "startTime": "2022-07-26T12:42:58.9287291Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/97c71be9-4507-4459-a56c-699078f69f61?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6300,7 +4787,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:40:09 GMT",
+ "Date": "Tue, 26 Jul 2022 12:43:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6308,31 +4795,71 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "facf8228-de5e-4ed7-8878-c58ae2d76079",
- "x-ms-ratelimit-remaining-subscription-reads": "11888",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T104010Z:facf8228-de5e-4ed7-8878-c58ae2d76079",
+ "x-ms-correlation-request-id": "6e65898e-551b-4f75-aa16-1ed633e3534d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11931",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124359Z:6e65898e-551b-4f75-aa16-1ed633e3534d",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/97c71be9-4507-4459-a56c-699078f69f61",
+ "name": "97c71be9-4507-4459-a56c-699078f69f61",
+ "status": "Deleting",
+ "startTime": "2022-07-26T12:42:58.9287291Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/97c71be9-4507-4459-a56c-699078f69f61?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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, 26 Jul 2022 12:44: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": "070dbe8b-2c82-473b-b851-531333ba574d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11930",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124429Z:070dbe8b-2c82-473b-b851-531333ba574d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c887d87f-8147-4719-b337-9c1c74df6362",
- "name": "c887d87f-8147-4719-b337-9c1c74df6362",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/97c71be9-4507-4459-a56c-699078f69f61",
+ "name": "97c71be9-4507-4459-a56c-699078f69f61",
"status": "Deleting",
- "startTime": "2022-05-27T10:39:40.1749272Z",
+ "startTime": "2022-07-26T12:42:58.9287291Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/c887d87f-8147-4719-b337-9c1c74df6362?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/97c71be9-4507-4459-a56c-699078f69f61?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6340,7 +4867,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:40:40 GMT",
+ "Date": "Tue, 26 Jul 2022 12:44:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6348,31 +4875,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "237b29a2-5c14-4f65-b155-01e3ce675c16",
- "x-ms-ratelimit-remaining-subscription-reads": "11887",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T104040Z:237b29a2-5c14-4f65-b155-01e3ce675c16",
+ "x-ms-correlation-request-id": "45530ff9-1060-4e6f-a68d-d909786f6ea1",
+ "x-ms-ratelimit-remaining-subscription-reads": "11929",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124500Z:45530ff9-1060-4e6f-a68d-d909786f6ea1",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c887d87f-8147-4719-b337-9c1c74df6362",
- "name": "c887d87f-8147-4719-b337-9c1c74df6362",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/97c71be9-4507-4459-a56c-699078f69f61",
+ "name": "97c71be9-4507-4459-a56c-699078f69f61",
"status": "Deleting",
- "startTime": "2022-05-27T10:39:40.1749272Z",
+ "startTime": "2022-07-26T12:42:58.9287291Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/c887d87f-8147-4719-b337-9c1c74df6362?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/97c71be9-4507-4459-a56c-699078f69f61?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6380,7 +4907,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:41:10 GMT",
+ "Date": "Tue, 26 Jul 2022 12:45:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6388,31 +4915,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "503d313c-c0fa-44a5-a8d5-7822be08f920",
- "x-ms-ratelimit-remaining-subscription-reads": "11886",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T104111Z:503d313c-c0fa-44a5-a8d5-7822be08f920",
+ "x-ms-correlation-request-id": "47d94062-110d-4a37-8359-525daf5893ad",
+ "x-ms-ratelimit-remaining-subscription-reads": "11928",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124530Z:47d94062-110d-4a37-8359-525daf5893ad",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c887d87f-8147-4719-b337-9c1c74df6362",
- "name": "c887d87f-8147-4719-b337-9c1c74df6362",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/97c71be9-4507-4459-a56c-699078f69f61",
+ "name": "97c71be9-4507-4459-a56c-699078f69f61",
"status": "Succeeded",
- "startTime": "2022-05-27T10:39:40.1749272Z",
- "endTime": "2022-05-27T10:41:06.3142956Z",
+ "startTime": "2022-07-26T12:42:58.9287291Z",
+ "endTime": "2022-07-26T12:45:15.5206613Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/c887d87f-8147-4719-b337-9c1c74df6362?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/97c71be9-4507-4459-a56c-699078f69f61?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6420,7 +4947,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:41:10 GMT",
+ "Date": "Tue, 26 Jul 2022 12:45:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6428,32 +4955,32 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c8e0c2b1-f7da-4acf-8f37-83a19318a286",
- "x-ms-ratelimit-remaining-subscription-reads": "11885",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T104111Z:c8e0c2b1-f7da-4acf-8f37-83a19318a286",
+ "x-ms-correlation-request-id": "5982e9a6-a126-4b47-9b70-380b73c21077",
+ "x-ms-ratelimit-remaining-subscription-reads": "11927",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124530Z:5982e9a6-a126-4b47-9b70-380b73c21077",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-27T10%3A40%3A56.3139092Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-26T12%3A42%3A58.9065296Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-27T10:22:36.3359293Z"
+ "CreatedOnDate": "2022-07-26T12:36:35.3847437Z"
},
"properties": {
"dataProtection": {
"backup": {
"backupEnabled": false,
"policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/vaults/cbsvault"
}
},
- "fileSystemId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
+ "fileSystemId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
+ "creationToken": "sdk-py-tests-vol-3-70dd2307",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -6481,25 +5008,25 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "DELETED_baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_eff01752",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_0fba7161",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "9627bf68-9c72-e0f8-b62a-ed71e9ca230c",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307",
+ "poolId": "99a41765-75c3-40c4-e4b2-ece2588c3e4e",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
- "fileSystemId": "24d3fb9b-6530-cb4f-bf05-dec4d1a507c5",
+ "mountTargetId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
+ "fileSystemId": "4bcac0e4-5624-ae8e-ccbf-1ec05818e8a4",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -6518,89 +5045,84 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"encrypted": true,
- "smbAccessBasedEnumeration": "Disabled",
- "smbNonBrowsable": "Disabled",
"provisioningState": "Deleting"
},
"systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T10:17:49.0123706Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T10:39:35.7930251Z"
+ "lastModifiedAt": "2022-07-26T12:42:55.0464369Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "306",
+ "Content-Length": "320",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:44:33 GMT",
+ "Date": "Tue, 26 Jul 2022 12:48:53 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ac30c5c9-4781-4400-83f6-1770bf8f4276",
+ "x-ms-correlation-request-id": "eccebfe3-d3e8-4373-a767-9824c3b9e474",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T104433Z:ac30c5c9-4781-4400-83f6-1770bf8f4276"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124854Z:eccebfe3-d3e8-4373-a767-9824c3b9e474"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/0b5e24fe-736a-45df-8399-b358f3d2fc36?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ee3d2fc-4e79-40b0-a440-bfade900820e?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Fri, 27 May 2022 10:44:46 GMT",
+ "Date": "Tue, 26 Jul 2022 12:49:06 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0b5e24fe-736a-45df-8399-b358f3d2fc36?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ee3d2fc-4e79-40b0-a440-bfade900820e?api-version=2022-03-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": "378ece7d-ce4d-4323-9616-6da8a98b5959",
+ "x-ms-correlation-request-id": "d3c87831-0532-40b9-a1a3-f588c0b12d1c",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T104446Z:378ece7d-ce4d-4323-9616-6da8a98b5959",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124906Z:d3c87831-0532-40b9-a1a3-f588c0b12d1c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0b5e24fe-736a-45df-8399-b358f3d2fc36?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ee3d2fc-4e79-40b0-a440-bfade900820e?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6608,7 +5130,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:45:16 GMT",
+ "Date": "Tue, 26 Jul 2022 12:49:37 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6616,31 +5138,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "efa81e77-f974-4cb8-8a6f-2dc31caf5e20",
+ "x-ms-correlation-request-id": "45959253-ec32-4466-87f3-97a507e47840",
"x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T104516Z:efa81e77-f974-4cb8-8a6f-2dc31caf5e20",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124937Z:45959253-ec32-4466-87f3-97a507e47840",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0b5e24fe-736a-45df-8399-b358f3d2fc36",
- "name": "0b5e24fe-736a-45df-8399-b358f3d2fc36",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ee3d2fc-4e79-40b0-a440-bfade900820e",
+ "name": "9ee3d2fc-4e79-40b0-a440-bfade900820e",
"status": "Succeeded",
- "startTime": "2022-05-27T10:44:46.20262Z",
- "endTime": "2022-05-27T10:44:50.4840366Z",
+ "startTime": "2022-07-26T12:49:06.8375803Z",
+ "endTime": "2022-07-26T12:49:07.2907569Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/0b5e24fe-736a-45df-8399-b358f3d2fc36?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ee3d2fc-4e79-40b0-a440-bfade900820e?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6648,7 +5170,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:45:16 GMT",
+ "Date": "Tue, 26 Jul 2022 12:49:37 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6656,211 +5178,203 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7bd0b2dd-4946-446d-8a62-32d9d79b3579",
+ "x-ms-correlation-request-id": "7e439b11-4165-4a37-8c47-d8339ef9fd07",
"x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T104517Z:7bd0b2dd-4946-446d-8a62-32d9d79b3579",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124937Z:7e439b11-4165-4a37-8c47-d8339ef9fd07",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-27T10%3A44%3A46.2080373Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-26T12%3A49%3A06.8320462Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-27T10:17:02.5339302Z"
+ "CreatedOnDate": "2022-07-26T12:29:18.4306573Z"
},
"properties": {
- "poolId": "9627bf68-9c72-e0f8-b62a-ed71e9ca230c",
+ "poolId": "99a41765-75c3-40c4-e4b2-ece2588c3e4e",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1",
"qosType": "Auto",
"totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-27T10:17:03.6993942Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T10:17:03.6993942Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Fri, 27 May 2022 10:45:26 GMT",
+ "Date": "Tue, 26 Jul 2022 12:49:47 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0257481c-4a89-4404-9082-73887e5ce775",
+ "x-ms-correlation-request-id": "4a9e7b72-1979-4b4f-919f-82e729daec47",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T104527Z:0257481c-4a89-4404-9082-73887e5ce775"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124947Z:4a9e7b72-1979-4b4f-919f-82e729daec47"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Fri, 27 May 2022 10:45:37 GMT",
+ "Date": "Tue, 26 Jul 2022 12:49:57 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c4a76210-c951-4081-8a88-ba8cdd842d15",
+ "x-ms-correlation-request-id": "59fb3674-71ba-4ccd-b478-74537489931e",
"x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T104537Z:c4a76210-c951-4081-8a88-ba8cdd842d15"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T124958Z:59fb3674-71ba-4ccd-b478-74537489931e"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Fri, 27 May 2022 10:45:47 GMT",
+ "Date": "Tue, 26 Jul 2022 12:50:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9e68e9ab-ba03-4bf1-aa00-5ad5c7d366db",
+ "x-ms-correlation-request-id": "c7d1bb8d-1f7a-4927-b0b7-34db68bbd8bd",
"x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T104548Z:9e68e9ab-ba03-4bf1-aa00-5ad5c7d366db"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T125008Z:c7d1bb8d-1f7a-4927-b0b7-34db68bbd8bd"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Fri, 27 May 2022 10:45:57 GMT",
+ "Date": "Tue, 26 Jul 2022 12:50:17 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ed4a8f5e-a8f0-4490-bb1a-5f7626a13233",
+ "x-ms-correlation-request-id": "e50128a8-88bf-44b8-9687-1aad46d2e127",
"x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T104558Z:ed4a8f5e-a8f0-4490-bb1a-5f7626a13233"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T125018Z:e50128a8-88bf-44b8-9687-1aad46d2e127"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:46:07 GMT",
+ "Date": "Tue, 26 Jul 2022 12:50:28 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "914d798c-c4d5-4425-b047-ce606a5914e0",
+ "x-ms-correlation-request-id": "dcab2f9d-856e-4ea5-9f7a-aed4770e0082",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T104608Z:914d798c-c4d5-4425-b047-ce606a5914e0"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T125029Z:dcab2f9d-856e-4ea5-9f7a-aed4770e0082"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/963c0095-9c8d-4d6e-b930-705a456e1a1d?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bb5adddd-48f2-4c88-b770-177d9635b022?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Fri, 27 May 2022 10:46:08 GMT",
+ "Date": "Tue, 26 Jul 2022 12:50:29 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/963c0095-9c8d-4d6e-b930-705a456e1a1d?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bb5adddd-48f2-4c88-b770-177d9635b022?api-version=2022-03-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": "ac58ab4f-8482-4a83-90c3-bc4d07e0731c",
+ "x-ms-correlation-request-id": "4a4190ac-a9cc-448b-b6ac-44671b252233",
"x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T104609Z:ac58ab4f-8482-4a83-90c3-bc4d07e0731c",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T125030Z:4a4190ac-a9cc-448b-b6ac-44671b252233",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/963c0095-9c8d-4d6e-b930-705a456e1a1d?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bb5adddd-48f2-4c88-b770-177d9635b022?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6868,7 +5382,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:46:40 GMT",
+ "Date": "Tue, 26 Jul 2022 12:51:00 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6876,31 +5390,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "af6bf678-b4f9-4676-8e8f-e2cd0319891e",
+ "x-ms-correlation-request-id": "892e59b0-b1ec-47b4-963d-6c661096b858",
"x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T104640Z:af6bf678-b4f9-4676-8e8f-e2cd0319891e",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T125100Z:892e59b0-b1ec-47b4-963d-6c661096b858",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/963c0095-9c8d-4d6e-b930-705a456e1a1d",
- "name": "963c0095-9c8d-4d6e-b930-705a456e1a1d",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bb5adddd-48f2-4c88-b770-177d9635b022",
+ "name": "bb5adddd-48f2-4c88-b770-177d9635b022",
"status": "Succeeded",
- "startTime": "2022-05-27T10:46:09.6938219Z",
- "endTime": "2022-05-27T10:46:09.7250602Z",
+ "startTime": "2022-07-26T12:50:30.3930099Z",
+ "endTime": "2022-07-26T12:50:30.4398463Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/963c0095-9c8d-4d6e-b930-705a456e1a1d?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bb5adddd-48f2-4c88-b770-177d9635b022?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6908,7 +5422,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:46:40 GMT",
+ "Date": "Tue, 26 Jul 2022 12:51:00 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6916,19 +5430,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "07eddfeb-50d6-41b5-a193-43e13744d9ba",
+ "x-ms-correlation-request-id": "07d3f824-04df-4dd0-837c-9a9ff8a88e2a",
"x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T104640Z:07eddfeb-50d6-41b5-a193-43e13744d9ba",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T125101Z:07d3f824-04df-4dd0-837c-9a9ff8a88e2a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-27T10%3A46%3A09.6971646Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-26T12%3A50%3A30.3934627Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-27T10:16:26.4597106Z"
+ "CreatedOnDate": "2022-07-26T12:28:41.5733203Z"
},
"properties": {
"encryption": {
@@ -6939,43 +5453,78 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-27T10:16:29.589743Z",
+ "createdAt": "2022-07-26T12:28:45.0440991Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-27T10:16:29.589743Z"
+ "lastModifiedAt": "2022-07-26T12:28:45.0440991Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Fri, 27 May 2022 10:46:42 GMT",
+ "Date": "Tue, 26 Jul 2022 12:51:00 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f2405bda-685f-4042-b034-f35a17301be7",
+ "x-ms-correlation-request-id": "a849b115-d781-4282-95be-2d623f3bea6a",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220527T104642Z:f2405bda-685f-4042-b034-f35a17301be7"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T125101Z:a849b115-d781-4282-95be-2d623f3bea6a"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307?api-version=2021-08-01",
+ "RequestMethod": "DELETE",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "0",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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/feec68d6-a7d5-4d6b-b719-3263bee8723f?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "0",
+ "Date": "Tue, 26 Jul 2022 12:51:02 GMT",
+ "Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/feec68d6-a7d5-4d6b-b719-3263bee8723f?api-version=2021-08-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": "176ad923-598c-41bb-b036-7918ecc36cc2",
+ "x-ms-correlation-request-id": "c10d40e6-898d-4ffe-870e-a8e23923e704",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220726T125102Z:c10d40e6-898d-4ffe-870e-a8e23923e704"
+ },
+ "ResponseBody": null
}
],
"Variables": {}
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 d05e0a348656..7fd38e3cd859 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 31 May 2022 08:59:14 GMT",
+ "Date": "Wed, 27 Jul 2022 11:44: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.12821.9 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 31 May 2022 08:59:14 GMT",
+ "Date": "Wed, 27 Jul 2022 11:44: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.12794.7 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - NEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "4c4a858c-6070-4b98-a292-54d817fe2e09",
+ "client-request-id": "ebf755e3-e6f2-42ad-97b0-f0c116d8ddea",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "4c4a858c-6070-4b98-a292-54d817fe2e09",
+ "client-request-id": "ebf755e3-e6f2-42ad-97b0-f0c116d8ddea",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:59:14 GMT",
+ "Date": "Wed, 27 Jul 2022 11:44:26 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12821.9 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - NEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,67 +213,607 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "22",
+ "Content-Length": "93",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "eastus"
+ "location": "westus2",
+ "properties": {
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ }
+ }
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a93e24b-0403-475b-9779-bd0475bf1b67?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/78c19fca-78af-4529-beff-38e20ac3344c?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Length": "686",
+ "Content-Length": "746",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:59:21 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A59%3A20.4325321Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 11:44:35 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Retry-After": "3",
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "bbc6ab76-ef0b-4ad3-afc3-d068e6bf661e",
+ "x-ms-arm-service-request-id": "0191e7b0-0553-43dd-89bf-3c36b80d21d8",
+ "x-ms-correlation-request-id": "98fb47d0-e6ae-4957-8804-cb8689c8a487",
"x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T085921Z:bbc6ab76-ef0b-4ad3-afc3-d068e6bf661e",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T114435Z:98fb47d0-e6ae-4957-8804-cb8689c8a487"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-b93a23ce",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce",
+ "etag": "W/\u0022d1089dbc-586e-4f64-b3df-89a5bbdb4d46\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T11:44:28.9086826Z"
+ },
+ "properties": {
+ "provisioningState": "Updating",
+ "resourceGuid": "c1b81d10-2dd3-4f2b-b031-1837dd5b201b",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/78c19fca-78af-4529-beff-38e20ac3344c?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Wed, 27 Jul 2022 11:44:39 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": "a3be359f-e9f2-4e94-910f-1dca33c45187",
+ "x-ms-correlation-request-id": "a697cc40-6c83-4653-a41c-7bb6b147fdd7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11999",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T114439Z:a697cc40-6c83-4653-a41c-7bb6b147fdd7"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Wed, 27 Jul 2022 11:44:39 GMT",
+ "ETag": "W/\u00222b5b374d-5698-4bb7-8223-351aa81da734\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": "4c772452-9961-4c83-b074-74eeb925c620",
+ "x-ms-correlation-request-id": "97c14d70-5e08-4d7e-a444-57961c8a84dd",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T114439Z:97c14d70-5e08-4d7e-a444-57961c8a84dd"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-b93a23ce",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce",
+ "etag": "W/\u00222b5b374d-5698-4bb7-8223-351aa81da734\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T11:44:28.9086826Z"
+ },
+ "properties": {
+ "provisioningState": "Succeeded",
+ "resourceGuid": "c1b81d10-2dd3-4f2b-b031-1837dd5b201b",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "151",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "RequestBody": {
+ "properties": {
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "properties": {
+ "serviceName": "Microsoft.Netapp/volumes"
+ }
+ }
+ ]
+ }
+ },
+ "StatusCode": 201,
+ "ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d65f0d39-6f76-4e8c-b1ad-e8a59d87da1c?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "1318",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Wed, 27 Jul 2022 11:44:40 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Retry-After": "3",
+ "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": "b359239c-6cce-44a0-b8db-b06554d7cd52",
+ "x-ms-correlation-request-id": "6aecb7f4-2eb6-4d8b-8d55-2153ba947111",
+ "x-ms-ratelimit-remaining-subscription-writes": "1198",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T114440Z:6aecb7f4-2eb6-4d8b-8d55-2153ba947111"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default",
+ "etag": "W/\u00221a3853b7-6e9a-4222-a02d-ea63c374eec5\u0022",
+ "properties": {
+ "provisioningState": "Updating",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u00221a3853b7-6e9a-4222-a02d-ea63c374eec5\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d65f0d39-6f76-4e8c-b1ad-e8a59d87da1c?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Wed, 27 Jul 2022 11:44:43 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Transfer-Encoding": "chunked",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-arm-service-request-id": "531bee06-9dc1-4914-b632-a74dc8bdefc9",
+ "x-ms-correlation-request-id": "20692df6-5431-47a5-aa6b-cd10230ed988",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T114443Z:20692df6-5431-47a5-aa6b-cd10230ed988"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Wed, 27 Jul 2022 11:44:44 GMT",
+ "ETag": "W/\u0022fe868d4d-64b8-42b5-9e36-b979981c2466\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": "15a94165-9f4d-41d4-96d6-8a17d4940192",
+ "x-ms-correlation-request-id": "11639cbd-78d6-4dd5-bf23-580593d0587e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11996",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T114444Z:11639cbd-78d6-4dd5-bf23-580593d0587e"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default",
+ "etag": "W/\u0022fe868d4d-64b8-42b5-9e36-b979981c2466\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u0022fe868d4d-64b8-42b5-9e36-b979981c2466\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "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.11.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": "Wed, 27 Jul 2022 11:44: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.13355.6 - NEULR1 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.11.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": "Wed, 27 Jul 2022 11:44: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.13315.8 - WEULR1 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": "d6ae61d2-8d2c-4371-adb2-dfde069a3ab9",
+ "Connection": "keep-alive",
+ "Content-Length": "281",
+ "Content-Type": "application/x-www-form-urlencoded",
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.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.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
+ },
+ "RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "d6ae61d2-8d2c-4371-adb2-dfde069a3ab9",
+ "Content-Length": "114",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Wed, 27 Jul 2022 11:44:44 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.13355.6 - 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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce?api-version=2022-03-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "23",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/874738d1-ac93-47b7-9141-444d6dcc11b0?api-version=2022-03-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "702",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Wed, 27 Jul 2022 11:44:49 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T11%3A44%3A48.2454746Z\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": "8e997b4c-7d9a-4db3-af36-f60d3d138ef9",
+ "x-ms-ratelimit-remaining-subscription-writes": "1197",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T114449Z:8e997b4c-7d9a-4db3-af36-f60d3d138ef9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A59%3A20.4325321Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T11%3A44%3A48.2454746Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:59:17.4295241Z"
+ "CreatedOnDate": "2022-07-27T11:44:46.0829359Z"
},
"properties": {
"provisioningState": "Creating"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:59:19.8637586Z",
"createdByType": "Application",
+ "createdAt": "2022-07-27T11:44:47.2674856Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:59:19.8637586Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T11:44:47.2674856Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a93e24b-0403-475b-9779-bd0475bf1b67?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874738d1-ac93-47b7-9141-444d6dcc11b0?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +821,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:59:51 GMT",
+ "Date": "Wed, 27 Jul 2022 11:45:19 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +829,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5b0a6c52-8275-4330-b456-020059069a04",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T085951Z:5b0a6c52-8275-4330-b456-020059069a04",
+ "x-ms-correlation-request-id": "1672712e-379c-4891-ad00-360778d637ae",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T114520Z:1672712e-379c-4891-ad00-360778d637ae",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a93e24b-0403-475b-9779-bd0475bf1b67",
- "name": "8a93e24b-0403-475b-9779-bd0475bf1b67",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874738d1-ac93-47b7-9141-444d6dcc11b0",
+ "name": "874738d1-ac93-47b7-9141-444d6dcc11b0",
"status": "Succeeded",
- "startTime": "2022-05-31T08:59:20.4247011Z",
- "endTime": "2022-05-31T08:59:20.5028484Z",
+ "startTime": "2022-07-27T11:44:48.2506718Z",
+ "endTime": "2022-07-27T11:44:48.3288635Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +861,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:59:51 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A59%3A20.4921778Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 11:45:19 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T11%3A44%3A48.3465927Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,21 +870,39 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7353a64b-61dd-41e3-9cd9-ccac1a338da8",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T085951Z:7353a64b-61dd-41e3-9cd9-ccac1a338da8",
+ "x-ms-correlation-request-id": "13de9cbd-5807-44d8-9550-a6c7e0bb3c3c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T114520Z:13de9cbd-5807-44d8-9550-a6c7e0bb3c3c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A59%3A20.4921778Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T11%3A44%3A48.3465927Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:59:17.4295241Z"
+ "CreatedOnDate": "2022-07-27T11:44:46.0829359Z"
},
"properties": {
+ "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"
},
@@ -351,27 +910,27 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:59:19.8637586Z",
"createdByType": "Application",
+ "createdAt": "2022-07-27T11:44:47.2674856Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:59:19.8637586Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T11:44:47.2674856Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "137",
+ "Content-Length": "138",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "eastus",
+ "location": "westus2",
"properties": {
"size": 4398046511104,
"serviceLevel": "Premium",
@@ -381,30 +940,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0a995804-a430-47d3-abed-cbcbbf04cb17?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e219acee-9327-41e4-b876-39735607b68b?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "904",
+ "Content-Length": "917",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:59:54 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A59%3A53.7781741Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 11:45:23 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T11%3A45%3A22.757969Z\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": "8cb0010f-9bf8-437b-812d-24131adc7da8",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T085954Z:8cb0010f-9bf8-437b-812d-24131adc7da8",
+ "x-ms-correlation-request-id": "b6c5e878-da92-4af6-b95e-6816bb87cf4b",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T114524Z:b6c5e878-da92-4af6-b95e-6816bb87cf4b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A59%3A53.7781741Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T11%3A45%3A22.757969Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:59:52.1499782Z"
+ "CreatedOnDate": "2022-07-27T11:45:20.8923654Z"
},
"properties": {
"serviceLevel": "Premium",
@@ -417,22 +976,22 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:59:53.5671693Z",
"createdByType": "Application",
+ "createdAt": "2022-07-27T11:45:22.5856111Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:59:53.5671693Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T11:45:22.5856111Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0a995804-a430-47d3-abed-cbcbbf04cb17?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e219acee-9327-41e4-b876-39735607b68b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -440,7 +999,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:00:24 GMT",
+ "Date": "Wed, 27 Jul 2022 11:45:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -448,31 +1007,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6ede48ce-ad53-4a3e-bfac-c86c7bfe3c59",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090024Z:6ede48ce-ad53-4a3e-bfac-c86c7bfe3c59",
+ "x-ms-correlation-request-id": "f16db2c2-2bc9-4209-82ff-436c4744fa98",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T114554Z:f16db2c2-2bc9-4209-82ff-436c4744fa98",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0a995804-a430-47d3-abed-cbcbbf04cb17",
- "name": "0a995804-a430-47d3-abed-cbcbbf04cb17",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e219acee-9327-41e4-b876-39735607b68b",
+ "name": "e219acee-9327-41e4-b876-39735607b68b",
"status": "Succeeded",
- "startTime": "2022-05-31T08:59:53.7831293Z",
- "endTime": "2022-05-31T08:59:54.0175131Z",
+ "startTime": "2022-07-27T11:45:22.7654083Z",
+ "endTime": "2022-07-27T11:45:23.1091823Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -480,8 +1039,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:00:24 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A59%3A54.0191905Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 11:45:55 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T11%3A45%3A23.1273673Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -489,26 +1048,26 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9046fcc3-170c-49c5-95a8-2a834e5384b7",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090025Z:9046fcc3-170c-49c5-95a8-2a834e5384b7",
+ "x-ms-correlation-request-id": "b97ac26e-af82-4fe2-a59f-2691675af4c3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T114555Z:b97ac26e-af82-4fe2-a59f-2691675af4c3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A59%3A54.0191905Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T11%3A45%3A23.1273673Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:59:52.1499782Z"
+ "CreatedOnDate": "2022-07-27T11:45:20.8923654Z"
},
"properties": {
- "poolId": "dd286f6c-37e9-987f-df15-68ee7835132a",
+ "poolId": "12a927c8-290b-27f2-676a-a10e0859ef64",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
- "totalThroughputMibps": 262.144,
+ "totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
@@ -517,26 +1076,26 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "755",
+ "Content-Length": "779",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "eastus",
+ "location": "westus2",
"properties": {
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-b93a23ce",
"serviceLevel": "Premium",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -555,39 +1114,39 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9425d1c3-e923-4223-b73d-0c8f1954cd80?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0548decc-a936-487f-af19-560471c297b8?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "1524",
+ "Content-Length": "1577",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:00:36 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T09%3A00%3A36.8062013Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 11:46:07 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T11%3A46%3A07.3247698Z\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": "bb7eef16-90a7-4dad-b912-9680895e3ee0",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090037Z:bb7eef16-90a7-4dad-b912-9680895e3ee0",
+ "x-ms-correlation-request-id": "81e90318-da3a-49d1-9859-e291045953fc",
+ "x-ms-ratelimit-remaining-subscription-writes": "1195",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T114608Z:81e90318-da3a-49d1-9859-e291045953fc",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T09%3A00%3A36.8062013Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T11%3A46%3A07.3247698Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T09:00:35.5131585Z"
+ "CreatedOnDate": "2022-07-27T11:46:05.8503906Z"
},
"properties": {
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-b93a23ce",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -607,22 +1166,22 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T09:00:36.4269105Z",
"createdByType": "Application",
+ "createdAt": "2022-07-27T11:46:07.0435227Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T09:00:36.4269105Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T11:46:07.0435227Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9425d1c3-e923-4223-b73d-0c8f1954cd80?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0548decc-a936-487f-af19-560471c297b8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -630,7 +1189,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:01:07 GMT",
+ "Date": "Wed, 27 Jul 2022 11:46:38 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -638,31 +1197,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "bdd3ceaa-df6b-422e-b0ec-33597a52f63e",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090107Z:bdd3ceaa-df6b-422e-b0ec-33597a52f63e",
+ "x-ms-correlation-request-id": "a15edcd5-3077-4f23-87ae-d9f640e9c992",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T114638Z:a15edcd5-3077-4f23-87ae-d9f640e9c992",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9425d1c3-e923-4223-b73d-0c8f1954cd80",
- "name": "9425d1c3-e923-4223-b73d-0c8f1954cd80",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0548decc-a936-487f-af19-560471c297b8",
+ "name": "0548decc-a936-487f-af19-560471c297b8",
"status": "Creating",
- "startTime": "2022-05-31T09:00:36.8156832Z",
+ "startTime": "2022-07-27T11:46:07.3273976Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/9425d1c3-e923-4223-b73d-0c8f1954cd80?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0548decc-a936-487f-af19-560471c297b8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -670,7 +1229,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:01:37 GMT",
+ "Date": "Wed, 27 Jul 2022 11:47:08 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -678,31 +1237,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a2a453df-7d4f-4b85-90a9-63b57f056d70",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090137Z:a2a453df-7d4f-4b85-90a9-63b57f056d70",
+ "x-ms-correlation-request-id": "537c15de-fb48-4f91-8810-9da8d164a6fc",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T114708Z:537c15de-fb48-4f91-8810-9da8d164a6fc",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9425d1c3-e923-4223-b73d-0c8f1954cd80",
- "name": "9425d1c3-e923-4223-b73d-0c8f1954cd80",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0548decc-a936-487f-af19-560471c297b8",
+ "name": "0548decc-a936-487f-af19-560471c297b8",
"status": "Creating",
- "startTime": "2022-05-31T09:00:36.8156832Z",
+ "startTime": "2022-07-27T11:46:07.3273976Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/9425d1c3-e923-4223-b73d-0c8f1954cd80?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0548decc-a936-487f-af19-560471c297b8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -710,7 +1269,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:02:08 GMT",
+ "Date": "Wed, 27 Jul 2022 11:47:38 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -718,31 +1277,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "13098806-843f-45ba-b3d0-d80a0df373ad",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090208Z:13098806-843f-45ba-b3d0-d80a0df373ad",
+ "x-ms-correlation-request-id": "e96400c5-5aae-484c-aae0-6f2291a3c1b6",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T114739Z:e96400c5-5aae-484c-aae0-6f2291a3c1b6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9425d1c3-e923-4223-b73d-0c8f1954cd80",
- "name": "9425d1c3-e923-4223-b73d-0c8f1954cd80",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0548decc-a936-487f-af19-560471c297b8",
+ "name": "0548decc-a936-487f-af19-560471c297b8",
"status": "Creating",
- "startTime": "2022-05-31T09:00:36.8156832Z",
+ "startTime": "2022-07-27T11:46:07.3273976Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/9425d1c3-e923-4223-b73d-0c8f1954cd80?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0548decc-a936-487f-af19-560471c297b8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -750,7 +1309,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:02:38 GMT",
+ "Date": "Wed, 27 Jul 2022 11:48:08 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -758,31 +1317,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8e09a932-0545-4fcc-9fb0-db1a06bad7d9",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090238Z:8e09a932-0545-4fcc-9fb0-db1a06bad7d9",
+ "x-ms-correlation-request-id": "d2de0580-eda5-40fc-88e6-fad98b34aaf0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T114809Z:d2de0580-eda5-40fc-88e6-fad98b34aaf0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9425d1c3-e923-4223-b73d-0c8f1954cd80",
- "name": "9425d1c3-e923-4223-b73d-0c8f1954cd80",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0548decc-a936-487f-af19-560471c297b8",
+ "name": "0548decc-a936-487f-af19-560471c297b8",
"status": "Creating",
- "startTime": "2022-05-31T09:00:36.8156832Z",
+ "startTime": "2022-07-27T11:46:07.3273976Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/9425d1c3-e923-4223-b73d-0c8f1954cd80?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0548decc-a936-487f-af19-560471c297b8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -790,7 +1349,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:03:07 GMT",
+ "Date": "Wed, 27 Jul 2022 11:48:39 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -798,31 +1357,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "db47ad00-6daa-4177-8982-940209d0d0b2",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090308Z:db47ad00-6daa-4177-8982-940209d0d0b2",
+ "x-ms-correlation-request-id": "3b0933de-51ef-4a2c-a8c8-3d3acbe189f5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T114839Z:3b0933de-51ef-4a2c-a8c8-3d3acbe189f5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9425d1c3-e923-4223-b73d-0c8f1954cd80",
- "name": "9425d1c3-e923-4223-b73d-0c8f1954cd80",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0548decc-a936-487f-af19-560471c297b8",
+ "name": "0548decc-a936-487f-af19-560471c297b8",
"status": "Creating",
- "startTime": "2022-05-31T09:00:36.8156832Z",
+ "startTime": "2022-07-27T11:46:07.3273976Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/9425d1c3-e923-4223-b73d-0c8f1954cd80?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0548decc-a936-487f-af19-560471c297b8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -830,7 +1389,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:03:37 GMT",
+ "Date": "Wed, 27 Jul 2022 11:49:09 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -838,31 +1397,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "36e9ffec-5c7c-4aaf-8ab7-9bf2ec62712d",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090338Z:36e9ffec-5c7c-4aaf-8ab7-9bf2ec62712d",
+ "x-ms-correlation-request-id": "3674378a-5f87-48a8-8eb1-37e2be4fdb22",
+ "x-ms-ratelimit-remaining-subscription-reads": "11986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T114910Z:3674378a-5f87-48a8-8eb1-37e2be4fdb22",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9425d1c3-e923-4223-b73d-0c8f1954cd80",
- "name": "9425d1c3-e923-4223-b73d-0c8f1954cd80",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0548decc-a936-487f-af19-560471c297b8",
+ "name": "0548decc-a936-487f-af19-560471c297b8",
"status": "Creating",
- "startTime": "2022-05-31T09:00:36.8156832Z",
+ "startTime": "2022-07-27T11:46:07.3273976Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/9425d1c3-e923-4223-b73d-0c8f1954cd80?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0548decc-a936-487f-af19-560471c297b8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -870,7 +1429,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:04:08 GMT",
+ "Date": "Wed, 27 Jul 2022 11:49:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -878,31 +1437,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "07a0b867-e3d0-424e-9f4f-358446785625",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090408Z:07a0b867-e3d0-424e-9f4f-358446785625",
+ "x-ms-correlation-request-id": "7bf81e27-d8b7-4278-ac22-4a4d0af2faa4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T114941Z:7bf81e27-d8b7-4278-ac22-4a4d0af2faa4",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9425d1c3-e923-4223-b73d-0c8f1954cd80",
- "name": "9425d1c3-e923-4223-b73d-0c8f1954cd80",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0548decc-a936-487f-af19-560471c297b8",
+ "name": "0548decc-a936-487f-af19-560471c297b8",
"status": "Creating",
- "startTime": "2022-05-31T09:00:36.8156832Z",
+ "startTime": "2022-07-27T11:46:07.3273976Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/9425d1c3-e923-4223-b73d-0c8f1954cd80?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0548decc-a936-487f-af19-560471c297b8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -910,7 +1469,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:04:38 GMT",
+ "Date": "Wed, 27 Jul 2022 11:50:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -918,31 +1477,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "732b9b6f-cda6-43aa-b99a-18c19d749cfd",
- "x-ms-ratelimit-remaining-subscription-reads": "11988",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090438Z:732b9b6f-cda6-43aa-b99a-18c19d749cfd",
+ "x-ms-correlation-request-id": "74d451cd-7d3b-4a98-9241-f293d31f3304",
+ "x-ms-ratelimit-remaining-subscription-reads": "11984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115011Z:74d451cd-7d3b-4a98-9241-f293d31f3304",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9425d1c3-e923-4223-b73d-0c8f1954cd80",
- "name": "9425d1c3-e923-4223-b73d-0c8f1954cd80",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0548decc-a936-487f-af19-560471c297b8",
+ "name": "0548decc-a936-487f-af19-560471c297b8",
"status": "Creating",
- "startTime": "2022-05-31T09:00:36.8156832Z",
+ "startTime": "2022-07-27T11:46:07.3273976Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/9425d1c3-e923-4223-b73d-0c8f1954cd80?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0548decc-a936-487f-af19-560471c297b8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -950,7 +1509,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:05:08 GMT",
+ "Date": "Wed, 27 Jul 2022 11:50:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -958,31 +1517,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3b369e29-9a8e-407e-9c72-6d2d912261e7",
- "x-ms-ratelimit-remaining-subscription-reads": "11987",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090509Z:3b369e29-9a8e-407e-9c72-6d2d912261e7",
+ "x-ms-correlation-request-id": "ff6e5022-9416-4449-b123-3b15ae0a7d87",
+ "x-ms-ratelimit-remaining-subscription-reads": "11983",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115042Z:ff6e5022-9416-4449-b123-3b15ae0a7d87",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9425d1c3-e923-4223-b73d-0c8f1954cd80",
- "name": "9425d1c3-e923-4223-b73d-0c8f1954cd80",
- "status": "Creating",
- "startTime": "2022-05-31T09:00:36.8156832Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0548decc-a936-487f-af19-560471c297b8",
+ "name": "0548decc-a936-487f-af19-560471c297b8",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T11:46:07.3273976Z",
+ "endTime": "2022-07-27T11:50:37.1416576Z",
+ "percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/9425d1c3-e923-4223-b73d-0c8f1954cd80?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -990,7 +1549,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:05:39 GMT",
+ "Date": "Wed, 27 Jul 2022 11:50:42 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T11%3A50%3A37.1437219Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -998,31 +1558,90 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8b6812c6-47be-4ad9-857e-9dbe30d7de11",
- "x-ms-ratelimit-remaining-subscription-reads": "11986",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090539Z:8b6812c6-47be-4ad9-857e-9dbe30d7de11",
+ "x-ms-correlation-request-id": "17d669e7-c658-4be0-8e4c-d9f1dd748fd2",
+ "x-ms-ratelimit-remaining-subscription-reads": "11982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115042Z:17d669e7-c658-4be0-8e4c-d9f1dd748fd2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9425d1c3-e923-4223-b73d-0c8f1954cd80",
- "name": "9425d1c3-e923-4223-b73d-0c8f1954cd80",
- "status": "Succeeded",
- "startTime": "2022-05-31T09:00:36.8156832Z",
- "endTime": "2022-05-31T09:05:13.4598098Z",
- "percentComplete": 100.0,
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T11%3A50%3A37.1437219Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T11:46:05.8503906Z"
+ },
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "fileSystemId": "d016efbe-b126-67df-0a65-005bdd159321",
+ "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_d692cd1b",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "d016efbe-b126-67df-0a65-005bdd159321",
+ "fileSystemId": "d016efbe-b126-67df-0a65-005bdd159321",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1030,8 +1649,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:05:39 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T09%3A05%3A13.4220943Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 11:50:52 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T11%3A50%3A37.1437219Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1039,24 +1658,24 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3ea2e44d-5850-47c5-b13f-ccbdd50f668b",
- "x-ms-ratelimit-remaining-subscription-reads": "11985",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090540Z:3ea2e44d-5850-47c5-b13f-ccbdd50f668b",
+ "x-ms-correlation-request-id": "fed5eb3c-89f1-459f-a6c9-263f8374c894",
+ "x-ms-ratelimit-remaining-subscription-reads": "11981",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115053Z:fed5eb3c-89f1-459f-a6c9-263f8374c894",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T09%3A05%3A13.4220943Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T11%3A50%3A37.1437219Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T09:00:35.5131585Z"
+ "CreatedOnDate": "2022-07-27T11:46:05.8503906Z"
},
"properties": {
- "fileSystemId": "cb29773f-06ce-9df1-a138-6e8143a0df10",
+ "fileSystemId": "d016efbe-b126-67df-0a65-005bdd159321",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-b93a23ce",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1082,10 +1701,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_961637a1",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d692cd1b",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "779b008f-08a0-175d-d289-8b48d2c766e3",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1097,12 +1716,12 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "cb29773f-06ce-9df1-a138-6e8143a0df10",
- "fileSystemId": "cb29773f-06ce-9df1-a138-6e8143a0df10",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "d016efbe-b126-67df-0a65-005bdd159321",
+ "fileSystemId": "d016efbe-b126-67df-0a65-005bdd159321",
+ "ipAddress": "10.0.0.4"
}
],
- "throughputMibps": 6.4,
+ "throughputMibps": 6.25,
"volumeSpecName": "generic",
"coolAccess": false,
"avsDataStore": "Disabled",
@@ -1116,13 +1735,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/vaults?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1130,8 +1749,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:05:49 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T09%3A05%3A13.4220943Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 11:50:53 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1139,24 +1757,84 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "dcf328de-5da9-480f-9146-721846706f8b",
- "x-ms-ratelimit-remaining-subscription-reads": "11984",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090550Z:dcf328de-5da9-480f-9146-721846706f8b",
+ "x-ms-correlation-request-id": "b56de674-1bc8-4f93-872f-62c81ca52a35",
+ "x-ms-ratelimit-remaining-subscription-reads": "11980",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115053Z:b56de674-1bc8-4f93-872f-62c81ca52a35",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "value": [
+ {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": {
+ "enabled": true,
+ "vaultId": "6130fdad-3bac-11eb-aba9-0e6a0f269857"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "PATCH",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "408",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/vaults/cbsvault",
+ "backupEnabled": true
+ }
+ },
+ "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/a69d494b-52e6-47b1-8e62-6b4083e7c62c?api-version=2022-03-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "2131",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Wed, 27 Jul 2022 11:50:53 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T11%3A50%3A53.9896339Z\u0027\u0022",
+ "Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a69d494b-52e6-47b1-8e62-6b4083e7c62c?api-version=2022-03-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": "68ea89d3-2e37-4938-8035-1bd0880d4bd0",
+ "x-ms-ratelimit-remaining-subscription-writes": "1194",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115054Z:68ea89d3-2e37-4938-8035-1bd0880d4bd0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T09%3A05%3A13.4220943Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T11%3A50%3A53.9896339Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T09:00:35.5131585Z"
+ "CreatedOnDate": "2022-07-27T11:46:05.8503906Z"
},
"properties": {
- "fileSystemId": "cb29773f-06ce-9df1-a138-6e8143a0df10",
+ "provisioningState": "Patching",
+ "fileSystemId": "d016efbe-b126-67df-0a65-005bdd159321",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-b93a23ce",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1182,10 +1860,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_961637a1",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d692cd1b",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "779b008f-08a0-175d-d289-8b48d2c766e3",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1197,12 +1875,12 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "cb29773f-06ce-9df1-a138-6e8143a0df10",
- "fileSystemId": "cb29773f-06ce-9df1-a138-6e8143a0df10",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "d016efbe-b126-67df-0a65-005bdd159321",
+ "fileSystemId": "d016efbe-b126-67df-0a65-005bdd159321",
+ "ipAddress": "10.0.0.4"
}
],
- "throughputMibps": 6.4,
+ "throughputMibps": 6.25,
"volumeSpecName": "generic",
"coolAccess": false,
"avsDataStore": "Disabled",
@@ -1210,19 +1888,18 @@
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
+ "maximumNumberOfFiles": 100000000
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a69d494b-52e6-47b1-8e62-6b4083e7c62c?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1230,7 +1907,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:05:50 GMT",
+ "Date": "Wed, 27 Jul 2022 11:51:23 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1238,85 +1915,74 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b89416f3-1b66-4564-afd1-f6e2eaa7b23c",
- "x-ms-ratelimit-remaining-subscription-reads": "11983",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090550Z:b89416f3-1b66-4564-afd1-f6e2eaa7b23c",
+ "x-ms-correlation-request-id": "362532dc-eba3-4956-b565-569975027934",
+ "x-ms-ratelimit-remaining-subscription-reads": "11979",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115124Z:362532dc-eba3-4956-b565-569975027934",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "value": [
- {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "name": "sdk-py-tests-acc-1/cbsvault",
- "type": "Microsoft.NetApp/netAppAccounts/vaults",
- "properties": {
- "enabled": true,
- "vaultId": "770fecc1-765b-11eb-9c9c-6ebf63ed0b3e"
- }
- }
- ]
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a69d494b-52e6-47b1-8e62-6b4083e7c62c",
+ "name": "a69d494b-52e6-47b1-8e62-6b4083e7c62c",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T11:50:53.9757776Z",
+ "endTime": "2022-07-27T11:50:57.7278556Z",
+ "percentComplete": 100.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
- "RequestMethod": "PATCH",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a69d494b-52e6-47b1-8e62-6b4083e7c62c?api-version=2022-03-01\u0026operationResultResponseType=Location",
+ "RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "401",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "backupEnabled": true
- }
- },
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0
- }
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/eastus/operationResults/29bc71da-a229-4450-b7a6-f5044ac5c463?api-version=2022-01-01",
"Cache-Control": "no-cache",
- "Content-Length": "2077",
+ "Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:05:50 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T09%3A05%3A51.0217599Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 11:51:23 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/29bc71da-a229-4450-b7a6-f5044ac5c463?api-version=2022-01-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": "c0262bb5-bd5b-4bf3-a369-979af217d592",
- "x-ms-ratelimit-remaining-subscription-writes": "1196",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090551Z:c0262bb5-bd5b-4bf3-a369-979af217d592",
+ "x-ms-correlation-request-id": "a2d67433-f9d3-4ef0-bfb7-3a250293e96c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11978",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115124Z:a2d67433-f9d3-4ef0-bfb7-3a250293e96c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T09%3A05%3A51.0217599Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T11%3A50%3A57.7393919Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T09:00:35.5131585Z"
+ "CreatedOnDate": "2022-07-27T11:50:53.6804903Z"
},
"properties": {
- "provisioningState": "Patching",
- "fileSystemId": "cb29773f-06ce-9df1-a138-6e8143a0df10",
+ "dataProtection": {
+ "backup": {
+ "backupEnabled": true,
+ "policyEnforced": false,
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/vaults/cbsvault"
+ }
+ },
+ "fileSystemId": "d016efbe-b126-67df-0a65-005bdd159321",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-b93a23ce",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
+ "usedBytes": 0,
"exportPolicy": {
"rules": [
{
@@ -1325,6 +1991,7 @@
"unixReadWrite": true,
"cifs": false,
"nfsv3": true,
+ "nfsv4": false,
"nfsv41": false,
"allowedClients": "0.0.0.0/0",
"kerberos5ReadOnly": false,
@@ -1341,27 +2008,35 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_961637a1",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d692cd1b",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "779b008f-08a0-175d-d289-8b48d2c766e3",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce",
+ "poolId": "12a927c8-290b-27f2-676a-a10e0859ef64",
+ "mountTargets": [
+ {
+ "provisioningState": "",
+ "mountTargetId": "d016efbe-b126-67df-0a65-005bdd159321",
+ "fileSystemId": "d016efbe-b126-67df-0a65-005bdd159321",
+ "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",
- "mountTargets": [
- {
- "mountTargetId": "cb29773f-06ce-9df1-a138-6e8143a0df10",
- "fileSystemId": "cb29773f-06ce-9df1-a138-6e8143a0df10",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
+ "encryptionKeySource": "Microsoft.NetApp",
"volumeSpecName": "generic",
"coolAccess": false,
"avsDataStore": "Disabled",
@@ -1369,18 +2044,199 @@
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000
+ "encrypted": true,
+ "provisioningState": "Succeeded"
+ },
+ "systemData": {
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T11:50:53.8362179Z"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-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/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "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/16a0ef69-bd30-41d8-aa90-a47212ffc726?api-version=2022-03-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "556",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Wed, 27 Jul 2022 11:51:24 GMT",
+ "Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/16a0ef69-bd30-41d8-aa90-a47212ffc726?api-version=2022-03-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": "5141eb69-dcbc-4b43-a4bc-856f5362a7c8",
+ "x-ms-ratelimit-remaining-subscription-writes": "1193",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115125Z:5141eb69-dcbc-4b43-a4bc-856f5362a7c8",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": {
+ "provisioningState": "Creating",
+ "useExistingSnapshot": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/16a0ef69-bd30-41d8-aa90-a47212ffc726?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 11:51: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": "20daa40d-aa85-4174-8f53-1dcae52444be",
+ "x-ms-ratelimit-remaining-subscription-reads": "11977",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115155Z:20daa40d-aa85-4174-8f53-1dcae52444be",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/16a0ef69-bd30-41d8-aa90-a47212ffc726",
+ "name": "16a0ef69-bd30-41d8-aa90-a47212ffc726",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T11:51:25.2550763Z",
+ "endTime": "2022-07-27T11:51:25.5207216Z",
+ "percentComplete": 100.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/16a0ef69-bd30-41d8-aa90-a47212ffc726?api-version=2022-03-01\u0026operationResultResponseType=Location",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "RequestBody": null,
+ "StatusCode": 201,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "776",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Wed, 27 Jul 2022 11:51:55 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": "a709f58b-f4cc-4198-b363-5dd361b439db",
+ "x-ms-ratelimit-remaining-subscription-reads": "11976",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115156Z:a709f58b-f4cc-4198-b363-5dd361b439db",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "7/27/2022 11:51:25 AM",
+ "location": "",
+ "properties": {
+ "fileSystemId": "d016efbe-b126-67df-0a65-005bdd159321",
+ "creationDate": "0001-01-01T00:00:00Z",
+ "backupId": "ffe86a2c-ac45-fc44-dc31-7b1bf4984a35",
+ "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/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 11:52: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": "9e3a79a8-c668-4501-b529-da7efbbb37bf",
+ "x-ms-ratelimit-remaining-subscription-reads": "11975",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115206Z:9e3a79a8-c668-4501-b529-da7efbbb37bf",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T11:51:25Z",
+ "backupId": "ffe86a2c-ac45-fc44-dc31-7b1bf4984a35",
+ "size": 0,
+ "backupType": "Manual",
+ "provisioningState": "Creating",
+ "failureReason": "None",
+ "volumeName": "sdk-py-tests-vol-3-b93a23ce",
+ "useExistingSnapshot": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/29bc71da-a229-4450-b7a6-f5044ac5c463?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1388,7 +2244,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:06:20 GMT",
+ "Date": "Wed, 27 Jul 2022 11:52:17 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1396,31 +2252,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f2c92a44-39e7-4760-afdf-fd36046d192a",
- "x-ms-ratelimit-remaining-subscription-reads": "11982",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090621Z:f2c92a44-39e7-4760-afdf-fd36046d192a",
+ "x-ms-correlation-request-id": "fe6711a3-3ebe-4130-a98c-cf94a0654b3c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11974",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115217Z:fe6711a3-3ebe-4130-a98c-cf94a0654b3c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/29bc71da-a229-4450-b7a6-f5044ac5c463",
- "name": "29bc71da-a229-4450-b7a6-f5044ac5c463",
- "status": "Succeeded",
- "startTime": "2022-05-31T09:05:51.0273613Z",
- "endTime": "2022-05-31T09:06:00.9210828Z",
- "percentComplete": 100.0,
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "creationDate": "2022-07-27T11:51:25Z",
+ "backupId": "ffe86a2c-ac45-fc44-dc31-7b1bf4984a35",
+ "size": 0,
+ "backupType": "Manual",
+ "provisioningState": "Creating",
+ "failureReason": "None",
+ "volumeName": "sdk-py-tests-vol-3-b93a23ce",
+ "useExistingSnapshot": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/29bc71da-a229-4450-b7a6-f5044ac5c463?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1428,7 +2289,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:06:20 GMT",
+ "Date": "Wed, 27 Jul 2022 11:52:27 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1436,158 +2297,126 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5135e8c6-447e-440c-92c3-61441435f65a",
- "x-ms-ratelimit-remaining-subscription-reads": "11981",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090621Z:5135e8c6-447e-440c-92c3-61441435f65a",
+ "x-ms-correlation-request-id": "612b7396-b75f-403d-9d88-6cf51d37b2f0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11973",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115227Z:612b7396-b75f-403d-9d88-6cf51d37b2f0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-05-31T09%3A06%3A00.9121481Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-05-31T09:05:50.7838112Z"
- },
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": {
- "dataProtection": {
- "backup": {
- "backupEnabled": true,
- "policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
- }
- },
- "fileSystemId": "cb29773f-06ce-9df1-a138-6e8143a0df10",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_961637a1",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "779b008f-08a0-175d-d289-8b48d2c766e3",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "dd286f6c-37e9-987f-df15-68ee7835132a",
- "mountTargets": [
- {
- "provisioningState": "",
- "mountTargetId": "cb29773f-06ce-9df1-a138-6e8143a0df10",
- "fileSystemId": "cb29773f-06ce-9df1-a138-6e8143a0df10",
- "startIp": "",
- "endIp": "",
- "gateway": "",
- "netmask": "",
- "subnet": "",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "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",
- "provisioningState": "Succeeded"
- },
- "systemData": {
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T09:05:50.9139259Z",
- "lastModifiedByType": "Application"
+ "creationDate": "2022-07-27T11:51:25Z",
+ "backupId": "ffe86a2c-ac45-fc44-dc31-7b1bf4984a35",
+ "size": 0,
+ "backupType": "Manual",
+ "provisioningState": "Creating",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
- "RequestMethod": "PUT",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "68",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "RequestBody": {
- "location": "eastus",
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Encoding": "gzip",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Wed, 27 Jul 2022 11: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": "e3badead-2519-4571-b2e9-eccd0d63214f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11972",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115238Z:e3badead-2519-4571-b2e9-eccd0d63214f",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T11:51:25Z",
+ "backupId": "ffe86a2c-ac45-fc44-dc31-7b1bf4984a35",
+ "size": 0,
+ "backupType": "Manual",
+ "provisioningState": "Creating",
+ "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/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "StatusCode": 201,
+ "RequestBody": null,
+ "StatusCode": 200,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d942dea5-0046-4476-b7d8-e22db1664d74?api-version=2022-01-01",
"Cache-Control": "no-cache",
- "Content-Length": "510",
+ "Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:06:21 GMT",
+ "Date": "Wed, 27 Jul 2022 11:52:48 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d942dea5-0046-4476-b7d8-e22db1664d74?api-version=2022-01-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": "221043f3-e6a4-4bb5-bb36-9b690aad6660",
- "x-ms-ratelimit-remaining-subscription-writes": "1195",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090622Z:221043f3-e6a4-4bb5-bb36-9b690aad6660",
+ "x-ms-correlation-request-id": "9b0b1adb-b5f6-4408-99e1-47dc0e3203a3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11971",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115248Z:9b0b1adb-b5f6-4408-99e1-47dc0e3203a3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
+ "creationDate": "2022-07-27T11:51:25Z",
+ "backupId": "ffe86a2c-ac45-fc44-dc31-7b1bf4984a35",
+ "size": 0,
+ "backupType": "Manual",
"provisioningState": "Creating",
+ "failureReason": "None",
+ "volumeName": "sdk-py-tests-vol-3-b93a23ce",
"useExistingSnapshot": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d942dea5-0046-4476-b7d8-e22db1664d74?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1595,7 +2424,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:06:52 GMT",
+ "Date": "Wed, 27 Jul 2022 11:52:58 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1603,75 +2432,81 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "27113b92-8899-4df4-a666-c99deba36567",
- "x-ms-ratelimit-remaining-subscription-reads": "11980",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090652Z:27113b92-8899-4df4-a666-c99deba36567",
+ "x-ms-correlation-request-id": "14d8bcd8-a4ec-4530-a168-7d31ec7a0f08",
+ "x-ms-ratelimit-remaining-subscription-reads": "11970",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115259Z:14d8bcd8-a4ec-4530-a168-7d31ec7a0f08",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d942dea5-0046-4476-b7d8-e22db1664d74",
- "name": "d942dea5-0046-4476-b7d8-e22db1664d74",
- "status": "Succeeded",
- "startTime": "2022-05-31T09:06:21.9627764Z",
- "endTime": "2022-05-31T09:06:24.9212656Z",
- "percentComplete": 100.0,
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1"
+ "creationDate": "2022-07-27T11:51:25Z",
+ "backupId": "ffe86a2c-ac45-fc44-dc31-7b1bf4984a35",
+ "size": 0,
+ "backupType": "Manual",
+ "provisioningState": "Creating",
+ "failureReason": "None",
+ "volumeName": "sdk-py-tests-vol-3-b93a23ce",
+ "useExistingSnapshot": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d942dea5-0046-4476-b7d8-e22db1664d74?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
- "StatusCode": 201,
+ "StatusCode": 200,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "730",
+ "Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:06:52 GMT",
+ "Date": "Wed, 27 Jul 2022 11: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": "acf8734c-1e6a-4f5f-957a-58f10acae939",
- "x-ms-ratelimit-remaining-subscription-reads": "11979",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090652Z:acf8734c-1e6a-4f5f-957a-58f10acae939",
+ "x-ms-correlation-request-id": "686b89e1-c4d9-4b99-8f07-d5f2164af661",
+ "x-ms-ratelimit-remaining-subscription-reads": "11969",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115309Z:686b89e1-c4d9-4b99-8f07-d5f2164af661",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "5/31/2022 9:06:24 AM",
- "location": "",
+ "location": "westus2",
"properties": {
- "fileSystemId": "cb29773f-06ce-9df1-a138-6e8143a0df10",
- "creationDate": "0001-01-01T00:00:00Z",
- "backupId": "db3d6dc7-33cb-0108-5450-e47b22090209",
+ "creationDate": "2022-07-27T11:51:25Z",
+ "backupId": "ffe86a2c-ac45-fc44-dc31-7b1bf4984a35",
"size": 0,
"backupType": "Manual",
+ "provisioningState": "Creating",
"failureReason": "None",
- "useExistingSnapshot": false,
- "provisioningState": "Creating"
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1679,7 +2514,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:07:02 GMT",
+ "Date": "Wed, 27 Jul 2022 11:53:20 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1687,36 +2522,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "94962885-b196-4a4e-96c2-6f4fa147684e",
- "x-ms-ratelimit-remaining-subscription-reads": "11978",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090703Z:94962885-b196-4a4e-96c2-6f4fa147684e",
+ "x-ms-correlation-request-id": "decb722a-bc36-4382-83f8-9e78e3cc1e71",
+ "x-ms-ratelimit-remaining-subscription-reads": "11968",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115320Z:decb722a-bc36-4382-83f8-9e78e3cc1e71",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T09:06:24Z",
- "backupId": "db3d6dc7-33cb-0108-5450-e47b22090209",
+ "creationDate": "2022-07-27T11:51:25Z",
+ "backupId": "ffe86a2c-ac45-fc44-dc31-7b1bf4984a35",
"size": 0,
"backupType": "Manual",
"provisioningState": "Creating",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1724,7 +2559,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:07:13 GMT",
+ "Date": "Wed, 27 Jul 2022 11:53:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1732,36 +2567,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ad0f9eb0-9ae2-43fa-99fb-f143a2e7b88b",
- "x-ms-ratelimit-remaining-subscription-reads": "11977",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090713Z:ad0f9eb0-9ae2-43fa-99fb-f143a2e7b88b",
+ "x-ms-correlation-request-id": "3df9b64b-b7a6-475a-a275-d3a07ea04a76",
+ "x-ms-ratelimit-remaining-subscription-reads": "11967",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115330Z:3df9b64b-b7a6-475a-a275-d3a07ea04a76",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T09:06:24Z",
- "backupId": "db3d6dc7-33cb-0108-5450-e47b22090209",
+ "creationDate": "2022-07-27T11:51:25Z",
+ "backupId": "ffe86a2c-ac45-fc44-dc31-7b1bf4984a35",
"size": 0,
"backupType": "Manual",
"provisioningState": "Creating",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1769,7 +2604,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:07:23 GMT",
+ "Date": "Wed, 27 Jul 2022 11:53:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1777,36 +2612,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "77fcc5c3-8f6a-4694-9362-a40beeaa1d5c",
- "x-ms-ratelimit-remaining-subscription-reads": "11976",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090723Z:77fcc5c3-8f6a-4694-9362-a40beeaa1d5c",
+ "x-ms-correlation-request-id": "1d385431-db17-4675-bf6f-069aa64b897a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11966",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115341Z:1d385431-db17-4675-bf6f-069aa64b897a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T09:06:24Z",
- "backupId": "db3d6dc7-33cb-0108-5450-e47b22090209",
+ "creationDate": "2022-07-27T11:51:25Z",
+ "backupId": "ffe86a2c-ac45-fc44-dc31-7b1bf4984a35",
"size": 0,
"backupType": "Manual",
"provisioningState": "Creating",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1814,7 +2649,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:07:34 GMT",
+ "Date": "Wed, 27 Jul 2022 11:53:52 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1822,36 +2657,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6d3945c8-da81-418a-9380-3fc288b35390",
- "x-ms-ratelimit-remaining-subscription-reads": "11975",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090734Z:6d3945c8-da81-418a-9380-3fc288b35390",
+ "x-ms-correlation-request-id": "2ffaed6f-f47d-4b32-b652-07b59c51dbf7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11965",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115352Z:2ffaed6f-f47d-4b32-b652-07b59c51dbf7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T09:06:24Z",
- "backupId": "db3d6dc7-33cb-0108-5450-e47b22090209",
+ "creationDate": "2022-07-27T11:51:25Z",
+ "backupId": "ffe86a2c-ac45-fc44-dc31-7b1bf4984a35",
"size": 0,
"backupType": "Manual",
"provisioningState": "Creating",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1859,7 +2694,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:07:44 GMT",
+ "Date": "Wed, 27 Jul 2022 11:54:02 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1867,36 +2702,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3f564dfe-6310-4f2c-8431-11f350c74e2b",
- "x-ms-ratelimit-remaining-subscription-reads": "11974",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090744Z:3f564dfe-6310-4f2c-8431-11f350c74e2b",
+ "x-ms-correlation-request-id": "66e47008-f8fc-4021-b343-c27ea195f5e5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11964",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115403Z:66e47008-f8fc-4021-b343-c27ea195f5e5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T09:06:24Z",
- "backupId": "db3d6dc7-33cb-0108-5450-e47b22090209",
+ "creationDate": "2022-07-27T11:51:25Z",
+ "backupId": "ffe86a2c-ac45-fc44-dc31-7b1bf4984a35",
"size": 0,
"backupType": "Manual",
"provisioningState": "Creating",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1904,7 +2739,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:07:54 GMT",
+ "Date": "Wed, 27 Jul 2022 11:54:13 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1912,36 +2747,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "85c05553-1967-4139-9726-17739275f91f",
- "x-ms-ratelimit-remaining-subscription-reads": "11973",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090755Z:85c05553-1967-4139-9726-17739275f91f",
+ "x-ms-correlation-request-id": "741ccdb9-cd27-45c9-b733-1402629e8d44",
+ "x-ms-ratelimit-remaining-subscription-reads": "11963",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115414Z:741ccdb9-cd27-45c9-b733-1402629e8d44",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T09:06:24Z",
- "backupId": "db3d6dc7-33cb-0108-5450-e47b22090209",
+ "creationDate": "2022-07-27T11:51:25Z",
+ "backupId": "ffe86a2c-ac45-fc44-dc31-7b1bf4984a35",
"size": 0,
"backupType": "Manual",
"provisioningState": "Creating",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1949,7 +2784,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:08:04 GMT",
+ "Date": "Wed, 27 Jul 2022 11:54:24 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1957,36 +2792,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "315fa68f-ab1e-417d-9a13-08fdff53176a",
- "x-ms-ratelimit-remaining-subscription-reads": "11972",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090805Z:315fa68f-ab1e-417d-9a13-08fdff53176a",
+ "x-ms-correlation-request-id": "ed21daed-4143-4e9e-978e-84cc91c3479a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11962",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115424Z:ed21daed-4143-4e9e-978e-84cc91c3479a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T09:06:24Z",
- "backupId": "db3d6dc7-33cb-0108-5450-e47b22090209",
+ "creationDate": "2022-07-27T11:51:25Z",
+ "backupId": "ffe86a2c-ac45-fc44-dc31-7b1bf4984a35",
"size": 0,
"backupType": "Manual",
"provisioningState": "Creating",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1994,7 +2829,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:08:15 GMT",
+ "Date": "Wed, 27 Jul 2022 11:54:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2002,36 +2837,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4e090d7d-e37e-44d0-afd5-b69291ba1bee",
- "x-ms-ratelimit-remaining-subscription-reads": "11971",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090815Z:4e090d7d-e37e-44d0-afd5-b69291ba1bee",
+ "x-ms-correlation-request-id": "2fc0b829-dcf6-4180-acd3-9488711a5415",
+ "x-ms-ratelimit-remaining-subscription-reads": "11961",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115435Z:2fc0b829-dcf6-4180-acd3-9488711a5415",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T09:06:24Z",
- "backupId": "db3d6dc7-33cb-0108-5450-e47b22090209",
+ "creationDate": "2022-07-27T11:51:25Z",
+ "backupId": "ffe86a2c-ac45-fc44-dc31-7b1bf4984a35",
"size": 0,
"backupType": "Manual",
"provisioningState": "Creating",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2039,7 +2874,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:08:25 GMT",
+ "Date": "Wed, 27 Jul 2022 11:54:45 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2047,36 +2882,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "40e855f9-b41f-4595-8325-e1d3fe25608b",
- "x-ms-ratelimit-remaining-subscription-reads": "11970",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090826Z:40e855f9-b41f-4595-8325-e1d3fe25608b",
+ "x-ms-correlation-request-id": "f076b208-f98f-404b-9b1f-18502ac90c51",
+ "x-ms-ratelimit-remaining-subscription-reads": "11960",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115445Z:f076b208-f98f-404b-9b1f-18502ac90c51",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T09:06:24Z",
- "backupId": "db3d6dc7-33cb-0108-5450-e47b22090209",
+ "creationDate": "2022-07-27T11:51:25Z",
+ "backupId": "ffe86a2c-ac45-fc44-dc31-7b1bf4984a35",
"size": 0,
"backupType": "Manual",
"provisioningState": "Creating",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2084,7 +2919,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:08:35 GMT",
+ "Date": "Wed, 27 Jul 2022 11:54:55 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2092,36 +2927,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "260daad4-7068-4d6c-919d-3b5bc783c137",
- "x-ms-ratelimit-remaining-subscription-reads": "11969",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090836Z:260daad4-7068-4d6c-919d-3b5bc783c137",
+ "x-ms-correlation-request-id": "e8d7f2d4-2604-43b0-843c-9ab44ac271ba",
+ "x-ms-ratelimit-remaining-subscription-reads": "11959",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115456Z:e8d7f2d4-2604-43b0-843c-9ab44ac271ba",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T09:06:24Z",
- "backupId": "db3d6dc7-33cb-0108-5450-e47b22090209",
+ "creationDate": "2022-07-27T11:51:25Z",
+ "backupId": "ffe86a2c-ac45-fc44-dc31-7b1bf4984a35",
"size": 0,
"backupType": "Manual",
"provisioningState": "Creating",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2129,7 +2964,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:08:46 GMT",
+ "Date": "Wed, 27 Jul 2022 11:55:06 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2137,36 +2972,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "879f9ea4-3d3a-4ef3-9597-b91affa884c1",
- "x-ms-ratelimit-remaining-subscription-reads": "11968",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090847Z:879f9ea4-3d3a-4ef3-9597-b91affa884c1",
+ "x-ms-correlation-request-id": "e978231d-58fd-43b9-9a2b-a698498f64cc",
+ "x-ms-ratelimit-remaining-subscription-reads": "11958",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115506Z:e978231d-58fd-43b9-9a2b-a698498f64cc",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T09:06:24Z",
- "backupId": "db3d6dc7-33cb-0108-5450-e47b22090209",
+ "creationDate": "2022-07-27T11:51:25Z",
+ "backupId": "ffe86a2c-ac45-fc44-dc31-7b1bf4984a35",
"size": 0,
"backupType": "Manual",
"provisioningState": "Creating",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2174,7 +3009,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:08:56 GMT",
+ "Date": "Wed, 27 Jul 2022 11:55:16 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2182,36 +3017,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4853e557-9ed2-40a5-9ca8-abb486b81e00",
- "x-ms-ratelimit-remaining-subscription-reads": "11967",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090857Z:4853e557-9ed2-40a5-9ca8-abb486b81e00",
+ "x-ms-correlation-request-id": "aa0df516-9f0f-467e-ad16-3fbc9d9f5c06",
+ "x-ms-ratelimit-remaining-subscription-reads": "11957",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115517Z:aa0df516-9f0f-467e-ad16-3fbc9d9f5c06",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T09:06:24Z",
- "backupId": "db3d6dc7-33cb-0108-5450-e47b22090209",
+ "creationDate": "2022-07-27T11:51:25Z",
+ "backupId": "ffe86a2c-ac45-fc44-dc31-7b1bf4984a35",
"size": 0,
"backupType": "Manual",
"provisioningState": "Creating",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2219,7 +3054,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:09:07 GMT",
+ "Date": "Wed, 27 Jul 2022 11:55:27 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2227,36 +3062,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3be29744-7ebd-4f55-9924-4b9d249a9326",
- "x-ms-ratelimit-remaining-subscription-reads": "11966",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090907Z:3be29744-7ebd-4f55-9924-4b9d249a9326",
+ "x-ms-correlation-request-id": "0da21f74-c19a-4454-a76c-fb93a7cce497",
+ "x-ms-ratelimit-remaining-subscription-reads": "11956",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115528Z:0da21f74-c19a-4454-a76c-fb93a7cce497",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T09:06:24Z",
- "backupId": "db3d6dc7-33cb-0108-5450-e47b22090209",
+ "creationDate": "2022-07-27T11:51:25Z",
+ "backupId": "ffe86a2c-ac45-fc44-dc31-7b1bf4984a35",
"size": 0,
"backupType": "Manual",
"provisioningState": "Creating",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2264,7 +3099,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:09:17 GMT",
+ "Date": "Wed, 27 Jul 2022 11:55:37 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2272,30 +3107,30 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d44c7aca-600f-40cc-8976-cccd9bed2851",
- "x-ms-ratelimit-remaining-subscription-reads": "11965",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090918Z:d44c7aca-600f-40cc-8976-cccd9bed2851",
+ "x-ms-correlation-request-id": "04430eb8-f75e-4dc0-843a-48610ed4dd8c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11955",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115538Z:04430eb8-f75e-4dc0-843a-48610ed4dd8c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T09:06:31Z",
- "backupId": "db3d6dc7-33cb-0108-5450-e47b22090209",
+ "creationDate": "2022-07-27T11:51:30Z",
+ "backupId": "ffe86a2c-ac45-fc44-dc31-7b1bf4984a35",
"size": 331776,
"backupType": "Manual",
"provisioningState": "Succeeded",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "PATCH",
"RequestHeaders": {
"Accept": "application/json",
@@ -2303,7 +3138,7 @@
"Connection": "keep-alive",
"Content-Length": "65",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
"properties": {
@@ -2313,42 +3148,42 @@
},
"StatusCode": 202,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6acd80ec-5999-4392-944a-afe0cf25e510?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/275da4cc-7706-42e2-9eaf-e341a073c791?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "550",
+ "Content-Length": "596",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:09:17 GMT",
+ "Date": "Wed, 27 Jul 2022 11:55:38 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6acd80ec-5999-4392-944a-afe0cf25e510?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/275da4cc-7706-42e2-9eaf-e341a073c791?api-version=2022-03-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": "e1038812-b45b-4049-a2f3-31af2ac4786f",
- "x-ms-ratelimit-remaining-subscription-writes": "1194",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090918Z:e1038812-b45b-4049-a2f3-31af2ac4786f",
+ "x-ms-correlation-request-id": "1869f3d1-c0a8-49a0-9b3d-ad299a8efc63",
+ "x-ms-ratelimit-remaining-subscription-writes": "1192",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115539Z:1869f3d1-c0a8-49a0-9b3d-ad299a8efc63",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "fileSystemId": "cb29773f-06ce-9df1-a138-6e8143a0df10",
+ "fileSystemId": "d016efbe-b126-67df-0a65-005bdd159321",
"label": "label1",
"useExistingSnapshot": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6acd80ec-5999-4392-944a-afe0cf25e510?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/275da4cc-7706-42e2-9eaf-e341a073c791?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2356,7 +3191,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:09:49 GMT",
+ "Date": "Wed, 27 Jul 2022 11:56:09 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2364,31 +3199,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "eed9cbdd-fec8-4d6e-9cec-6aef9475713b",
- "x-ms-ratelimit-remaining-subscription-reads": "11964",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090949Z:eed9cbdd-fec8-4d6e-9cec-6aef9475713b",
+ "x-ms-correlation-request-id": "552a3674-8786-4404-a148-2aa7ffc5fe61",
+ "x-ms-ratelimit-remaining-subscription-reads": "11954",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115609Z:552a3674-8786-4404-a148-2aa7ffc5fe61",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6acd80ec-5999-4392-944a-afe0cf25e510",
- "name": "6acd80ec-5999-4392-944a-afe0cf25e510",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/275da4cc-7706-42e2-9eaf-e341a073c791",
+ "name": "275da4cc-7706-42e2-9eaf-e341a073c791",
"status": "Succeeded",
- "startTime": "2022-05-31T09:09:18.6552252Z",
- "endTime": "2022-05-31T09:09:19.2958443Z",
+ "startTime": "2022-07-27T11:55:39.1197215Z",
+ "endTime": "2022-07-27T11:55:39.5259939Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/6acd80ec-5999-4392-944a-afe0cf25e510?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/275da4cc-7706-42e2-9eaf-e341a073c791?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2396,7 +3231,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:09:49 GMT",
+ "Date": "Wed, 27 Jul 2022 11:56:09 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2404,39 +3239,39 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "748a6e1c-5fa5-420a-baee-dec9c135f45f",
- "x-ms-ratelimit-remaining-subscription-reads": "11963",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090949Z:748a6e1c-5fa5-420a-baee-dec9c135f45f",
+ "x-ms-correlation-request-id": "e1be5eba-1add-4ee5-8b7d-995b479fc639",
+ "x-ms-ratelimit-remaining-subscription-reads": "11953",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115609Z:e1be5eba-1add-4ee5-8b7d-995b479fc639",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "5/31/2022 9:09:19 AM",
- "location": "eastus",
+ "etag": "7/27/2022 11:55:39 AM",
+ "location": "westus2",
"properties": {
- "fileSystemId": "cb29773f-06ce-9df1-a138-6e8143a0df10",
- "creationDate": "2022-05-31T09:06:31Z",
- "backupId": "db3d6dc7-33cb-0108-5450-e47b22090209",
+ "fileSystemId": "d016efbe-b126-67df-0a65-005bdd159321",
+ "creationDate": "2022-07-27T11:51:30Z",
+ "backupId": "ffe86a2c-ac45-fc44-dc31-7b1bf4984a35",
"size": 331776,
"backupType": "Manual",
"label": "label1",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "volumeName": "sdk-py-tests-vol-3-b93a23ce",
"useExistingSnapshot": false,
"provisioningState": "Accepted"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2444,7 +3279,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:09:49 GMT",
+ "Date": "Wed, 27 Jul 2022 11:56:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2452,37 +3287,37 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d8715d9c-7967-431d-8ac1-a1cbc8f07d0a",
- "x-ms-ratelimit-remaining-subscription-reads": "11962",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090949Z:d8715d9c-7967-431d-8ac1-a1cbc8f07d0a",
+ "x-ms-correlation-request-id": "5db96c44-f0c1-4da6-b6ff-37b40f2ae759",
+ "x-ms-ratelimit-remaining-subscription-reads": "11952",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115610Z:5db96c44-f0c1-4da6-b6ff-37b40f2ae759",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-backup-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "eastus",
+ "location": "westus2",
"properties": {
- "creationDate": "2022-05-31T09:06:31Z",
- "backupId": "db3d6dc7-33cb-0108-5450-e47b22090209",
+ "creationDate": "2022-07-27T11:51:30Z",
+ "backupId": "ffe86a2c-ac45-fc44-dc31-7b1bf4984a35",
"size": 331776,
"backupType": "Manual",
"label": "label1",
"provisioningState": "Succeeded",
"failureReason": "None",
- "volumeName": "sdk-py-tests-vol-1",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/vaults?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2490,7 +3325,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:09:49 GMT",
+ "Date": "Wed, 27 Jul 2022 11:56:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2498,35 +3333,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "319f934f-d43e-4e5f-b7a8-12e101269eb6",
- "x-ms-ratelimit-remaining-subscription-reads": "11961",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090949Z:319f934f-d43e-4e5f-b7a8-12e101269eb6",
+ "x-ms-correlation-request-id": "5be81a36-85fb-4d07-bd9a-1fe2eb28e0b2",
+ "x-ms-ratelimit-remaining-subscription-reads": "11951",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115610Z:5be81a36-85fb-4d07-bd9a-1fe2eb28e0b2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "name": "sdk-py-tests-acc-1/cbsvault",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": {
"enabled": true,
- "vaultId": "770fecc1-765b-11eb-9c9c-6ebf63ed0b3e"
+ "vaultId": "6130fdad-3bac-11eb-aba9-0e6a0f269857"
}
}
]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "PATCH",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "402",
+ "Content-Length": "409",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
"properties": {
@@ -2534,7 +3369,7 @@
"usageThreshold": 107374182400,
"dataProtection": {
"backup": {
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/vaults/cbsvault",
"backupEnabled": false
}
},
@@ -2545,44 +3380,44 @@
},
"StatusCode": 202,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fafc0a06-8db8-4e72-827f-c115d1911ce4?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/96d86107-99b4-4066-9c33-25d42ad8ad2f?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "2483",
+ "Content-Length": "2544",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:09:50 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T09%3A09%3A50.2609777Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 11:56:11 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T11%3A56%3A11.3819282Z\u0027\u0022",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fafc0a06-8db8-4e72-827f-c115d1911ce4?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/96d86107-99b4-4066-9c33-25d42ad8ad2f?api-version=2022-03-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": "397c12c2-3217-4761-a281-b539adeadaba",
- "x-ms-ratelimit-remaining-subscription-writes": "1193",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T090950Z:397c12c2-3217-4761-a281-b539adeadaba",
+ "x-ms-correlation-request-id": "c721dd7c-9ab4-4e49-807a-f3b29179857a",
+ "x-ms-ratelimit-remaining-subscription-writes": "1191",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115611Z:c721dd7c-9ab4-4e49-807a-f3b29179857a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T09%3A09%3A50.2609777Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T11%3A56%3A11.3819282Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T09:05:50.7838112Z"
+ "CreatedOnDate": "2022-07-27T11:50:53.6804903Z"
},
"properties": {
"dataProtection": {
"backup": {
"backupEnabled": true,
"policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/vaults/cbsvault"
}
},
"provisioningState": "Patching",
- "fileSystemId": "cb29773f-06ce-9df1-a138-6e8143a0df10",
+ "fileSystemId": "d016efbe-b126-67df-0a65-005bdd159321",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-b93a23ce",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -2608,10 +3443,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_961637a1",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d692cd1b",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "779b008f-08a0-175d-d289-8b48d2c766e3",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -2623,12 +3458,12 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "cb29773f-06ce-9df1-a138-6e8143a0df10",
- "fileSystemId": "cb29773f-06ce-9df1-a138-6e8143a0df10",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "d016efbe-b126-67df-0a65-005bdd159321",
+ "fileSystemId": "d016efbe-b126-67df-0a65-005bdd159321",
+ "ipAddress": "10.0.0.4"
}
],
- "throughputMibps": 6.4,
+ "throughputMibps": 6.25,
"volumeSpecName": "generic",
"coolAccess": false,
"avsDataStore": "Disabled",
@@ -2640,19 +3475,19 @@
},
"systemData": {
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T09:05:50.9139259Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T11:50:53.8362179Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fafc0a06-8db8-4e72-827f-c115d1911ce4?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/96d86107-99b4-4066-9c33-25d42ad8ad2f?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2660,7 +3495,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:10:20 GMT",
+ "Date": "Wed, 27 Jul 2022 11:56:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2668,31 +3503,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "81a583e9-0257-4770-b308-dcd1eee41a32",
- "x-ms-ratelimit-remaining-subscription-reads": "11960",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T091020Z:81a583e9-0257-4770-b308-dcd1eee41a32",
+ "x-ms-correlation-request-id": "37d6ea4c-a262-47b3-90df-843732eae908",
+ "x-ms-ratelimit-remaining-subscription-reads": "11950",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115641Z:37d6ea4c-a262-47b3-90df-843732eae908",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fafc0a06-8db8-4e72-827f-c115d1911ce4",
- "name": "fafc0a06-8db8-4e72-827f-c115d1911ce4",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/96d86107-99b4-4066-9c33-25d42ad8ad2f",
+ "name": "96d86107-99b4-4066-9c33-25d42ad8ad2f",
"status": "Succeeded",
- "startTime": "2022-05-31T09:09:50.2674296Z",
- "endTime": "2022-05-31T09:10:02.3466884Z",
+ "startTime": "2022-07-27T11:56:11.370319Z",
+ "endTime": "2022-07-27T11:56:18.0504335Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/fafc0a06-8db8-4e72-827f-c115d1911ce4?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/96d86107-99b4-4066-9c33-25d42ad8ad2f?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2700,7 +3535,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:10:20 GMT",
+ "Date": "Wed, 27 Jul 2022 11:56:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2708,32 +3543,32 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b3c0da6f-aeb0-4b81-a3df-6abe26d9ee72",
- "x-ms-ratelimit-remaining-subscription-reads": "11959",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T091020Z:b3c0da6f-aeb0-4b81-a3df-6abe26d9ee72",
+ "x-ms-correlation-request-id": "ed29dd73-fc24-41fb-b457-29330e23b2da",
+ "x-ms-ratelimit-remaining-subscription-reads": "11949",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115642Z:ed29dd73-fc24-41fb-b457-29330e23b2da",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T09%3A10%3A02.3431196Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T11%3A56%3A18.0609053Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T09:09:49.9054098Z"
+ "CreatedOnDate": "2022-07-27T11:56:11.0778952Z"
},
"properties": {
"dataProtection": {
"backup": {
"backupEnabled": false,
"policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/vaults/cbsvault"
}
},
- "fileSystemId": "cb29773f-06ce-9df1-a138-6e8143a0df10",
+ "fileSystemId": "d016efbe-b126-67df-0a65-005bdd159321",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5",
+ "creationToken": "sdk-py-tests-vol-3-b93a23ce",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -2761,28 +3596,28 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_961637a1",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d692cd1b",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "779b008f-08a0-175d-d289-8b48d2c766e3",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "dd286f6c-37e9-987f-df15-68ee7835132a",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce",
+ "poolId": "12a927c8-290b-27f2-676a-a10e0859ef64",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "cb29773f-06ce-9df1-a138-6e8143a0df10",
- "fileSystemId": "cb29773f-06ce-9df1-a138-6e8143a0df10",
+ "mountTargetId": "d016efbe-b126-67df-0a65-005bdd159321",
+ "fileSystemId": "d016efbe-b126-67df-0a65-005bdd159321",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
- "throughputMibps": 6.4,
+ "throughputMibps": 6.25,
"kerberosEnabled": false,
"securityStyle": "Unix",
"smbEncryption": false,
@@ -2797,23 +3632,24 @@
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
+ "encrypted": true,
"provisioningState": "Succeeded"
},
"systemData": {
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T09:09:50.1502006Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T11:56:11.224676Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/backups/sdk-py-tests-backup-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
@@ -2821,15 +3657,15 @@
"Cache-Control": "no-cache",
"Content-Length": "77",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:10:22 GMT",
+ "Date": "Wed, 27 Jul 2022 11:56: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": "8519bd5b-cbf8-4cfe-9194-31dd79f95de3",
- "x-ms-ratelimit-remaining-subscription-reads": "11958",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T091023Z:8519bd5b-cbf8-4cfe-9194-31dd79f95de3",
+ "x-ms-correlation-request-id": "9eeb8609-2731-41ee-b7df-fae946d49ab0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11948",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115644Z:9eeb8609-2731-41ee-b7df-fae946d49ab0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -2840,83 +3676,43 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/eastus/operationResults/90eed70f-b281-4981-b000-03de8529088b?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/921e230b-b91a-45d7-ab7b-2fecf4e85283?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 09:10:23 GMT",
+ "Date": "Wed, 27 Jul 2022 11:56:44 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/90eed70f-b281-4981-b000-03de8529088b?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/921e230b-b91a-45d7-ab7b-2fecf4e85283?api-version=2022-03-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": "ff804bd5-f566-43a0-ae20-dbcd0ba66278",
+ "x-ms-correlation-request-id": "2014c54f-2da3-426f-b9e8-9564f16cf49e",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T091023Z:ff804bd5-f566-43a0-ae20-dbcd0ba66278",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115645Z:2014c54f-2da3-426f-b9e8-9564f16cf49e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/90eed70f-b281-4981-b000-03de8529088b?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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, 31 May 2022 09:10: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": "c0878de6-7c09-43f7-851f-20116b902138",
- "x-ms-ratelimit-remaining-subscription-reads": "11957",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T091054Z:c0878de6-7c09-43f7-851f-20116b902138",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/90eed70f-b281-4981-b000-03de8529088b",
- "name": "90eed70f-b281-4981-b000-03de8529088b",
- "status": "Deleting",
- "startTime": "2022-05-31T09:10:23.6313486Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/90eed70f-b281-4981-b000-03de8529088b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/921e230b-b91a-45d7-ab7b-2fecf4e85283?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2924,7 +3720,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:11:23 GMT",
+ "Date": "Wed, 27 Jul 2022 11:57:15 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2932,31 +3728,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fb84f03a-5c10-47b0-b017-2a75595b5d79",
- "x-ms-ratelimit-remaining-subscription-reads": "11956",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T091124Z:fb84f03a-5c10-47b0-b017-2a75595b5d79",
+ "x-ms-correlation-request-id": "62544cff-e126-4f87-accb-4380e676487d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11947",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115715Z:62544cff-e126-4f87-accb-4380e676487d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/90eed70f-b281-4981-b000-03de8529088b",
- "name": "90eed70f-b281-4981-b000-03de8529088b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/921e230b-b91a-45d7-ab7b-2fecf4e85283",
+ "name": "921e230b-b91a-45d7-ab7b-2fecf4e85283",
"status": "Deleting",
- "startTime": "2022-05-31T09:10:23.6313486Z",
+ "startTime": "2022-07-27T11:56:45.2898079Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/90eed70f-b281-4981-b000-03de8529088b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/921e230b-b91a-45d7-ab7b-2fecf4e85283?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2964,7 +3760,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:11:54 GMT",
+ "Date": "Wed, 27 Jul 2022 11:57:45 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2972,31 +3768,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a4fa0163-3cb7-40ff-aeac-e98c6e12281d",
- "x-ms-ratelimit-remaining-subscription-reads": "11955",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T091154Z:a4fa0163-3cb7-40ff-aeac-e98c6e12281d",
+ "x-ms-correlation-request-id": "ce2143fd-130c-4b77-bc49-22274665e0b7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11946",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115746Z:ce2143fd-130c-4b77-bc49-22274665e0b7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/90eed70f-b281-4981-b000-03de8529088b",
- "name": "90eed70f-b281-4981-b000-03de8529088b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/921e230b-b91a-45d7-ab7b-2fecf4e85283",
+ "name": "921e230b-b91a-45d7-ab7b-2fecf4e85283",
"status": "Succeeded",
- "startTime": "2022-05-31T09:10:23.6313486Z",
- "endTime": "2022-05-31T09:11:30.839301Z",
+ "startTime": "2022-07-27T11:56:45.2898079Z",
+ "endTime": "2022-07-27T11:57:32.0785791Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/90eed70f-b281-4981-b000-03de8529088b?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/921e230b-b91a-45d7-ab7b-2fecf4e85283?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3004,7 +3800,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:11:54 GMT",
+ "Date": "Wed, 27 Jul 2022 11:57:45 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3012,32 +3808,32 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "07d596a9-5a74-43a7-932e-e1d4d7a637de",
- "x-ms-ratelimit-remaining-subscription-reads": "11954",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T091155Z:07d596a9-5a74-43a7-932e-e1d4d7a637de",
+ "x-ms-correlation-request-id": "1c435849-6f0d-4acd-8ebd-614a83b66549",
+ "x-ms-ratelimit-remaining-subscription-reads": "11945",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T115746Z:1c435849-6f0d-4acd-8ebd-614a83b66549",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T09%3A10%3A23.617044Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T11%3A56%3A45.2765553Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T09:09:49.9054098Z"
+ "CreatedOnDate": "2022-07-27T11:56:11.0778952Z"
},
"properties": {
"dataProtection": {
"backup": {
"backupEnabled": false,
"policyEnforced": false,
- "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault"
+ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/vaults/cbsvault"
}
},
- "fileSystemId": "cb29773f-06ce-9df1-a138-6e8143a0df10",
+ "fileSystemId": "d016efbe-b126-67df-0a65-005bdd159321",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5",
+ "creationToken": "sdk-py-tests-vol-3-b93a23ce",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -3065,28 +3861,28 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_961637a1",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d692cd1b",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "779b008f-08a0-175d-d289-8b48d2c766e3",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "dd286f6c-37e9-987f-df15-68ee7835132a",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce",
+ "poolId": "12a927c8-290b-27f2-676a-a10e0859ef64",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "cb29773f-06ce-9df1-a138-6e8143a0df10",
- "fileSystemId": "cb29773f-06ce-9df1-a138-6e8143a0df10",
+ "mountTargetId": "d016efbe-b126-67df-0a65-005bdd159321",
+ "fileSystemId": "d016efbe-b126-67df-0a65-005bdd159321",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
- "throughputMibps": 6.4,
+ "throughputMibps": 6.25,
"kerberosEnabled": false,
"securityStyle": "Unix",
"smbEncryption": false,
@@ -3101,84 +3897,85 @@
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
+ "encrypted": true,
"provisioningState": "Deleting"
},
"systemData": {
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T09:09:50.1502006Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T11:56:11.224676Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "306",
+ "Content-Length": "320",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:15:15 GMT",
+ "Date": "Wed, 27 Jul 2022 12:01:08 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "217295d7-684b-47d4-bc68-6ede633d70d2",
+ "x-ms-correlation-request-id": "bd43d454-bcf3-4f8b-ba3a-2b78d53ba0e3",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T091516Z:217295d7-684b-47d4-bc68-6ede633d70d2"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T120108Z:bd43d454-bcf3-4f8b-ba3a-2b78d53ba0e3"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "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\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/eastus/operationResults/fef32ea3-533d-4d68-8ff0-1a5027729232?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2e9b7ab-df03-45dd-a0dc-57fe94de437c?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 09:15:27 GMT",
+ "Date": "Wed, 27 Jul 2022 12:01:21 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fef32ea3-533d-4d68-8ff0-1a5027729232?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2e9b7ab-df03-45dd-a0dc-57fe94de437c?api-version=2022-03-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": "f6e51521-0e15-4df3-b2fd-ad2e38ccd75f",
+ "x-ms-correlation-request-id": "61b25ef4-d4dd-4335-ad5b-251ad9d0c66f",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T091528Z:f6e51521-0e15-4df3-b2fd-ad2e38ccd75f",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T120121Z:61b25ef4-d4dd-4335-ad5b-251ad9d0c66f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fef32ea3-533d-4d68-8ff0-1a5027729232?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2e9b7ab-df03-45dd-a0dc-57fe94de437c?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3186,7 +3983,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:15:58 GMT",
+ "Date": "Wed, 27 Jul 2022 12:01:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3194,31 +3991,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "931831c4-b17c-40e3-90bd-6365a87fb07c",
+ "x-ms-correlation-request-id": "74cc3492-507f-4799-b209-259cff538171",
"x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T091558Z:931831c4-b17c-40e3-90bd-6365a87fb07c",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T120152Z:74cc3492-507f-4799-b209-259cff538171",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fef32ea3-533d-4d68-8ff0-1a5027729232",
- "name": "fef32ea3-533d-4d68-8ff0-1a5027729232",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2e9b7ab-df03-45dd-a0dc-57fe94de437c",
+ "name": "c2e9b7ab-df03-45dd-a0dc-57fe94de437c",
"status": "Succeeded",
- "startTime": "2022-05-31T09:15:28.0388414Z",
- "endTime": "2022-05-31T09:15:28.3982183Z",
+ "startTime": "2022-07-27T12:01:21.8792854Z",
+ "endTime": "2022-07-27T12:01:22.3012247Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/fef32ea3-533d-4d68-8ff0-1a5027729232?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2e9b7ab-df03-45dd-a0dc-57fe94de437c?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3226,7 +4023,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:15:58 GMT",
+ "Date": "Wed, 27 Jul 2022 12:01:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3234,27 +4031,28 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "965e765d-6e23-42aa-b05a-7f63da91e96a",
+ "x-ms-correlation-request-id": "bdb5b542-55e5-4ec7-8e2c-a109ea06c2bd",
"x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T091558Z:965e765d-6e23-42aa-b05a-7f63da91e96a",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T120152Z:bdb5b542-55e5-4ec7-8e2c-a109ea06c2bd",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T09%3A15%3A28.0164024Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A01%3A21.8870267Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:59:52.1499782Z"
+ "CreatedOnDate": "2022-07-27T11:45:20.8923654Z"
},
"properties": {
- "poolId": "dd286f6c-37e9-987f-df15-68ee7835132a",
+ "poolId": "12a927c8-290b-27f2-676a-a10e0859ef64",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1",
"qosType": "Auto",
- "totalThroughputMibps": 262.144,
+ "totalThroughputMibps": 256.0,
+ "utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
@@ -3262,174 +4060,174 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 31 May 2022 09:16:08 GMT",
+ "Date": "Wed, 27 Jul 2022 12:02:01 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e4a8cded-14e5-49e5-a405-0319db9ac563",
+ "x-ms-correlation-request-id": "5f721b14-d5f5-4635-82f3-37516b73cf1f",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T091608Z:e4a8cded-14e5-49e5-a405-0319db9ac563"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T120202Z:5f721b14-d5f5-4635-82f3-37516b73cf1f"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 31 May 2022 09:16:18 GMT",
+ "Date": "Wed, 27 Jul 2022 12:02:13 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "83f7ab43-0ee1-42ec-b320-0485143adcca",
+ "x-ms-correlation-request-id": "8564c8b0-91a2-40ee-928e-76caee2ce11b",
"x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T091619Z:83f7ab43-0ee1-42ec-b320-0485143adcca"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T120213Z:8564c8b0-91a2-40ee-928e-76caee2ce11b"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 31 May 2022 09:16:29 GMT",
+ "Date": "Wed, 27 Jul 2022 12:02:23 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fa8a2e46-c8c6-4dc9-8813-ce4b4b23283d",
+ "x-ms-correlation-request-id": "99e7f547-626f-4cbc-81a3-3fdcb2664ea8",
"x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T091629Z:fa8a2e46-c8c6-4dc9-8813-ce4b4b23283d"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T120223Z:99e7f547-626f-4cbc-81a3-3fdcb2664ea8"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 31 May 2022 09:16:39 GMT",
+ "Date": "Wed, 27 Jul 2022 12:02:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0ec11acb-4d25-4bc4-b57c-559fdb1c869b",
+ "x-ms-correlation-request-id": "21ebdd8f-df82-44b3-8126-f983de0f54b0",
"x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T091639Z:0ec11acb-4d25-4bc4-b57c-559fdb1c869b"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T120234Z:21ebdd8f-df82-44b3-8126-f983de0f54b0"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:16:49 GMT",
+ "Date": "Wed, 27 Jul 2022 12:02:43 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "67d4b7be-c515-488a-9e76-d1752bf25630",
+ "x-ms-correlation-request-id": "026b7047-b219-4713-ae29-2a53c1d41971",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T091650Z:67d4b7be-c515-488a-9e76-d1752bf25630"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T120244Z:026b7047-b219-4713-ae29-2a53c1d41971"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "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\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/eastus/operationResults/0b63cecd-ce2e-4224-a909-cef81e52b802?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/96c3ab6b-c134-4a7e-a5e7-bf87f11b258f?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 09:16:50 GMT",
+ "Date": "Wed, 27 Jul 2022 12:02:45 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0b63cecd-ce2e-4224-a909-cef81e52b802?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/96c3ab6b-c134-4a7e-a5e7-bf87f11b258f?api-version=2022-03-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": "550ca30b-7f1d-4a75-8949-0580d37159af",
+ "x-ms-correlation-request-id": "76bb37de-3124-48e3-8d70-8c9cde3d3cbe",
"x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T091651Z:550ca30b-7f1d-4a75-8949-0580d37159af",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T120245Z:76bb37de-3124-48e3-8d70-8c9cde3d3cbe",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0b63cecd-ce2e-4224-a909-cef81e52b802?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/96c3ab6b-c134-4a7e-a5e7-bf87f11b258f?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3437,7 +4235,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:17:20 GMT",
+ "Date": "Wed, 27 Jul 2022 12:03:15 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3445,31 +4243,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5ff4c3ad-48f6-4f5b-9ff7-1df941575290",
+ "x-ms-correlation-request-id": "3725b8c4-4d80-4ca7-b8f1-7bb09ac3a433",
"x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T091721Z:5ff4c3ad-48f6-4f5b-9ff7-1df941575290",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T120316Z:3725b8c4-4d80-4ca7-b8f1-7bb09ac3a433",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0b63cecd-ce2e-4224-a909-cef81e52b802",
- "name": "0b63cecd-ce2e-4224-a909-cef81e52b802",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/96c3ab6b-c134-4a7e-a5e7-bf87f11b258f",
+ "name": "96c3ab6b-c134-4a7e-a5e7-bf87f11b258f",
"status": "Succeeded",
- "startTime": "2022-05-31T09:16:51.0381736Z",
- "endTime": "2022-05-31T09:16:51.0694606Z",
+ "startTime": "2022-07-27T12:02:45.6252749Z",
+ "endTime": "2022-07-27T12:02:45.6721544Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/0b63cecd-ce2e-4224-a909-cef81e52b802?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/96c3ab6b-c134-4a7e-a5e7-bf87f11b258f?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3477,7 +4275,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:17:20 GMT",
+ "Date": "Wed, 27 Jul 2022 12:03:15 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3485,19 +4283,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "cad3acf0-b208-4f95-98ff-87cdd9dbd6ab",
+ "x-ms-correlation-request-id": "4224a56b-a526-4461-9d9c-78ec85c38d3a",
"x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T091721Z:cad3acf0-b208-4f95-98ff-87cdd9dbd6ab",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T120316Z:4224a56b-a526-4461-9d9c-78ec85c38d3a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T09%3A16%3A51.0224366Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A02%3A45.6271025Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:59:17.4295241Z"
+ "CreatedOnDate": "2022-07-27T11:44:46.0829359Z"
},
"properties": {
"encryption": {
@@ -3507,44 +4305,79 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:59:19.8637586Z",
"createdByType": "Application",
+ "createdAt": "2022-07-27T11:44:47.2674856Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:59:19.8637586Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T11:44:47.2674856Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 09:17:23 GMT",
+ "Date": "Wed, 27 Jul 2022 12:03:15 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c2f7f267-64ec-4bf5-89b1-f33512ec04ee",
+ "x-ms-correlation-request-id": "c7e81d92-c822-444e-a80a-a57ebf7c7db8",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T091723Z:c2f7f267-64ec-4bf5-89b1-f33512ec04ee"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T120316Z:c7e81d92-c822-444e-a80a-a57ebf7c7db8"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce?api-version=2021-08-01",
+ "RequestMethod": "DELETE",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "0",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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/0d6a84de-44ba-47ad-8b88-ffb79522894f?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "0",
+ "Date": "Wed, 27 Jul 2022 12:03:16 GMT",
+ "Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/0d6a84de-44ba-47ad-8b88-ffb79522894f?api-version=2021-08-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": "a7e5b0a1-661f-4029-92c8-dbf2c62fb896",
+ "x-ms-correlation-request-id": "8dc6f24f-dda1-4086-a56b-d9c9a0f0835d",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T120317Z:8dc6f24f-dda1-4086-a56b-d9c9a0f0835d"
+ },
+ "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 dfde4073f886..334ebbe9ec57 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 31 May 2022 08:34:35 GMT",
+ "Date": "Mon, 25 Jul 2022 18:17: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.12821.9 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 31 May 2022 08:34:35 GMT",
+ "Date": "Mon, 25 Jul 2022 18:17: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.12794.7 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13201.7 - NEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "d46ac4c8-7190-4811-b8a2-450e45b3ac43",
+ "client-request-id": "ce1fb020-4924-4c6b-bf1a-10675ba61a7d",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "d46ac4c8-7190-4811-b8a2-450e45b3ac43",
+ "client-request-id": "ce1fb020-4924-4c6b-bf1a-10675ba61a7d",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:34:36 GMT",
+ "Date": "Mon, 25 Jul 2022 18:17:19 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12821.9 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - NEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,67 +213,67 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "22",
+ "Content-Length": "23",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2"
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/28af94ae-a65f-454a-8eec-26f1b62a0b62?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/04f7964a-332b-4d48-b8f3-81bc6d162934?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "686",
+ "Content-Length": "702",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:34:44 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A34%3A43.4232274Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:17:28 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A17%3A28.0342584Z\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": "7dab2cf7-5432-47be-b31d-913069ad40fb",
+ "x-ms-correlation-request-id": "94684e51-1b1c-464f-866e-bca031ece6af",
"x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083444Z:7dab2cf7-5432-47be-b31d-913069ad40fb",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181729Z:94684e51-1b1c-464f-866e-bca031ece6af",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A34%3A43.4232274Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A17%3A28.0342584Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:34:40.3803769Z"
+ "CreatedOnDate": "2022-07-25T18:17:22.7480811Z"
},
"properties": {
"provisioningState": "Creating"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:34:42.8442023Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:17:27.0673103Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:34:42.8442023Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:17:27.0673103Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/28af94ae-a65f-454a-8eec-26f1b62a0b62?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/04f7964a-332b-4d48-b8f3-81bc6d162934?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +281,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:35:14 GMT",
+ "Date": "Mon, 25 Jul 2022 18:17:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +289,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b3408cc2-8f52-4e51-a1ed-997dc80d13d5",
+ "x-ms-correlation-request-id": "3616cf86-4dc9-4f6d-8c76-64f2264f0fa3",
"x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083514Z:b3408cc2-8f52-4e51-a1ed-997dc80d13d5",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181759Z:3616cf86-4dc9-4f6d-8c76-64f2264f0fa3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/28af94ae-a65f-454a-8eec-26f1b62a0b62",
- "name": "28af94ae-a65f-454a-8eec-26f1b62a0b62",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/04f7964a-332b-4d48-b8f3-81bc6d162934",
+ "name": "04f7964a-332b-4d48-b8f3-81bc6d162934",
"status": "Succeeded",
- "startTime": "2022-05-31T08:34:43.4376851Z",
- "endTime": "2022-05-31T08:34:43.484543Z",
+ "startTime": "2022-07-25T18:17:28.0398574Z",
+ "endTime": "2022-07-25T18:17:28.0711006Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +321,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:35:14 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A34%3A43.4878374Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:17:59 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A17%3A28.0752806Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,21 +330,39 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a965df81-ef0c-41e4-95c7-b0c682025bcb",
+ "x-ms-correlation-request-id": "c4d1a214-b527-4b21-85f4-e7b3b51f6f41",
"x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083514Z:a965df81-ef0c-41e4-95c7-b0c682025bcb",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181800Z:c4d1a214-b527-4b21-85f4-e7b3b51f6f41",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A34%3A43.4878374Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A17%3A28.0752806Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:34:40.3803769Z"
+ "CreatedOnDate": "2022-07-25T18:17:22.7480811Z"
},
"properties": {
+ "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"
},
@@ -351,27 +370,27 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:34:42.8442023Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:17:27.0673103Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:34:42.8442023Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:17:27.0673103Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "133",
+ "Content-Length": "134",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"dailyBackupsToKeep": 2,
"weeklyBackupsToKeep": 0,
@@ -381,30 +400,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/02967387-6c89-4fcb-8ea3-4eaab1d10d63?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b3d054fd-a5fc-41e7-8ba0-436dc018a916?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "861",
+ "Content-Length": "877",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:35:17 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A35%3A16.7687763Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:18:02 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A18%3A01.9858852Z\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": "abdb41e9-59c5-4304-8496-97789466483c",
+ "x-ms-correlation-request-id": "f1a1a7e5-f696-4ee1-a312-1ae5ad47d92b",
"x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083517Z:abdb41e9-59c5-4304-8496-97789466483c",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181803Z:f1a1a7e5-f696-4ee1-a312-1ae5ad47d92b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-backup-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A35%3A16.7687763Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A18%3A01.9858852Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:35:15.0505939Z"
+ "CreatedOnDate": "2022-07-25T18:18:00.4633693Z"
},
"properties": {
"enabled": true,
@@ -415,22 +434,22 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:35:16.6411884Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:18:01.8272443Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:35:16.6411884Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:18:01.8272443Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/02967387-6c89-4fcb-8ea3-4eaab1d10d63?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b3d054fd-a5fc-41e7-8ba0-436dc018a916?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -438,7 +457,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:35:47 GMT",
+ "Date": "Mon, 25 Jul 2022 18:18:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -446,31 +465,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3524e81c-272c-4a19-85a4-6b458eeecd6c",
+ "x-ms-correlation-request-id": "8c742424-ed0a-4b9f-b0cf-0cdac6f1bab9",
"x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083548Z:3524e81c-272c-4a19-85a4-6b458eeecd6c",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181833Z:8c742424-ed0a-4b9f-b0cf-0cdac6f1bab9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/02967387-6c89-4fcb-8ea3-4eaab1d10d63",
- "name": "02967387-6c89-4fcb-8ea3-4eaab1d10d63",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b3d054fd-a5fc-41e7-8ba0-436dc018a916",
+ "name": "b3d054fd-a5fc-41e7-8ba0-436dc018a916",
"status": "Succeeded",
- "startTime": "2022-05-31T08:35:16.7721609Z",
- "endTime": "2022-05-31T08:35:16.9909193Z",
+ "startTime": "2022-07-25T18:18:01.9785983Z",
+ "endTime": "2022-07-25T18:18:02.3380626Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f/backupPolicies/sdk-py-tests-backup-policy-1"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -478,8 +497,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:35:47 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A35%3A16.9968178Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:18:33 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A18%3A02.3379133Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -487,46 +506,47 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "57fc7025-d9ef-45ac-af85-53ef652b111b",
+ "x-ms-correlation-request-id": "a4d413cf-b4bb-4cdb-bcbc-918417368730",
"x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083548Z:57fc7025-d9ef-45ac-af85-53ef652b111b",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181834Z:a4d413cf-b4bb-4cdb-bcbc-918417368730",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-backup-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A35%3A16.9968178Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A18%3A02.3379133Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:35:15.0505939Z"
+ "CreatedOnDate": "2022-07-25T18:18:00.4633693Z"
},
"properties": {
"enabled": true,
- "backupPolicyId": "9927d92a-e0bc-11ec-85be-26652f4d094e",
+ "backupPolicyId": "1ed2909e-0c46-11ed-9cea-16b230efae0e",
"dailyBackupsToKeep": 2,
"weeklyBackupsToKeep": 0,
"monthlyBackupsToKeep": 0,
+ "volumesAssigned": 0,
"provisioningState": "Succeeded"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:35:16.6411884Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:18:01.8272443Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:35:16.6411884Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:18:01.8272443Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f/backupPolicies?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -534,7 +554,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:35:48 GMT",
+ "Date": "Mon, 25 Jul 2022 18:18:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -542,80 +562,81 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5fad98d3-c7c3-4f9e-9338-58c9ef4b3ca9",
+ "x-ms-correlation-request-id": "75f1a69b-f12a-41eb-ba17-c41465d4fe30",
"x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083548Z:5fad98d3-c7c3-4f9e-9338-58c9ef4b3ca9",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181834Z:75f1a69b-f12a-41eb-ba17-c41465d4fe30",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-backup-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A35%3A16.9968178Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A18%3A02.3379133Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:35:15.0505939Z"
+ "CreatedOnDate": "2022-07-25T18:18:00.4633693Z"
},
"properties": {
"enabled": true,
- "backupPolicyId": "9927d92a-e0bc-11ec-85be-26652f4d094e",
+ "backupPolicyId": "1ed2909e-0c46-11ed-9cea-16b230efae0e",
"dailyBackupsToKeep": 2,
"weeklyBackupsToKeep": 0,
"monthlyBackupsToKeep": 0,
+ "volumesAssigned": 0,
"provisioningState": "Succeeded"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:35:16.6411884Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:18:01.8272443Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:35:16.6411884Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:18:01.8272443Z"
}
}
]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/ef915d82-8ca8-4cbf-9183-b81f43e5d0a8?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1814173c-13c4-4655-8ed4-804cb776ea3e?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 08:35:48 GMT",
+ "Date": "Mon, 25 Jul 2022 18:18:34 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ef915d82-8ca8-4cbf-9183-b81f43e5d0a8?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1814173c-13c4-4655-8ed4-804cb776ea3e?api-version=2022-03-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": "870c6432-175a-4785-bbc9-f2a3253b4845",
+ "x-ms-correlation-request-id": "822a44f7-936f-4977-a15d-20104844a8d3",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083549Z:870c6432-175a-4785-bbc9-f2a3253b4845",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181835Z:822a44f7-936f-4977-a15d-20104844a8d3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ef915d82-8ca8-4cbf-9183-b81f43e5d0a8?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1814173c-13c4-4655-8ed4-804cb776ea3e?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -623,7 +644,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:36:18 GMT",
+ "Date": "Mon, 25 Jul 2022 18:19:05 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -631,31 +652,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "bb8dcb95-dd9b-464a-b347-7054c6063171",
+ "x-ms-correlation-request-id": "6113c3c8-dc2a-4c13-a8bb-dfe58cbcb885",
"x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083619Z:bb8dcb95-dd9b-464a-b347-7054c6063171",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181905Z:6113c3c8-dc2a-4c13-a8bb-dfe58cbcb885",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ef915d82-8ca8-4cbf-9183-b81f43e5d0a8",
- "name": "ef915d82-8ca8-4cbf-9183-b81f43e5d0a8",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1814173c-13c4-4655-8ed4-804cb776ea3e",
+ "name": "1814173c-13c4-4655-8ed4-804cb776ea3e",
"status": "Succeeded",
- "startTime": "2022-05-31T08:35:49.0245105Z",
- "endTime": "2022-05-31T08:35:49.5557653Z",
+ "startTime": "2022-07-25T18:18:34.989757Z",
+ "endTime": "2022-07-25T18:18:35.2084597Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f/backupPolicies/sdk-py-tests-backup-policy-1"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ef915d82-8ca8-4cbf-9183-b81f43e5d0a8?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1814173c-13c4-4655-8ed4-804cb776ea3e?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -663,7 +684,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:36:18 GMT",
+ "Date": "Mon, 25 Jul 2022 18:19:05 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -671,78 +692,79 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6856d426-d3c8-4d76-b440-c3c5f3cc1b88",
+ "x-ms-correlation-request-id": "0a2fea61-178d-42a4-b05e-ff1d8dd56b80",
"x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083619Z:6856d426-d3c8-4d76-b440-c3c5f3cc1b88",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181905Z:0a2fea61-178d-42a4-b05e-ff1d8dd56b80",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-backup-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A35%3A49.0146416Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A18%3A34.9885135Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:35:15.0505939Z"
+ "CreatedOnDate": "2022-07-25T18:18:00.4633693Z"
},
"properties": {
"enabled": true,
- "backupPolicyId": "9927d92a-e0bc-11ec-85be-26652f4d094e",
+ "backupPolicyId": "1ed2909e-0c46-11ed-9cea-16b230efae0e",
"dailyBackupsToKeep": 2,
"weeklyBackupsToKeep": 0,
"monthlyBackupsToKeep": 0,
"yearlyBackupsToKeep": 0,
+ "volumesAssigned": 0,
"provisioningState": "Deleting"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:35:16.6411884Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:18:01.8272443Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:35:16.6411884Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:18:01.8272443Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "287",
+ "Content-Length": "294",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:36:21 GMT",
+ "Date": "Mon, 25 Jul 2022 18:19:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1844f713-ecf8-4d6b-9784-7e2c024561fd",
+ "x-ms-correlation-request-id": "abbf6f40-53dc-48e1-9d5f-bca089fe75b1",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083621Z:1844f713-ecf8-4d6b-9784-7e2c024561fd"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181907Z:abbf6f40-53dc-48e1-9d5f-bca089fe75b1"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "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\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f/backupPolicies?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -750,7 +772,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:36:21 GMT",
+ "Date": "Mon, 25 Jul 2022 18:19:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -758,9 +780,9 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "959e1ab4-ea45-4f3b-8384-945047883c48",
+ "x-ms-correlation-request-id": "55e9ca03-c9e4-42fe-97b8-4fecf7a41eb5",
"x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083621Z:959e1ab4-ea45-4f3b-8384-945047883c48",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181908Z:55e9ca03-c9e4-42fe-97b8-4fecf7a41eb5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -768,43 +790,43 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/513fcfff-9d94-4f3e-bf00-42b8f32eae4e?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/116af4dd-db2d-452c-9fef-d3ac52a1edb4?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 08:36:21 GMT",
+ "Date": "Mon, 25 Jul 2022 18:19:08 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/513fcfff-9d94-4f3e-bf00-42b8f32eae4e?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/116af4dd-db2d-452c-9fef-d3ac52a1edb4?api-version=2022-03-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": "17cbe1df-f680-4ce5-ba75-9b9f7dd4cf01",
+ "x-ms-correlation-request-id": "2c47a255-fed0-428e-8fb1-8ac726487f58",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083622Z:17cbe1df-f680-4ce5-ba75-9b9f7dd4cf01",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181909Z:2c47a255-fed0-428e-8fb1-8ac726487f58",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/513fcfff-9d94-4f3e-bf00-42b8f32eae4e?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/116af4dd-db2d-452c-9fef-d3ac52a1edb4?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -812,7 +834,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:36:51 GMT",
+ "Date": "Mon, 25 Jul 2022 18:19:38 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -820,31 +842,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "20c89306-c1f0-4b2d-b73b-dfdb5c4a0444",
+ "x-ms-correlation-request-id": "89249f45-3733-4c0d-81d5-41d46b5cccd4",
"x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083652Z:20c89306-c1f0-4b2d-b73b-dfdb5c4a0444",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181939Z:89249f45-3733-4c0d-81d5-41d46b5cccd4",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/513fcfff-9d94-4f3e-bf00-42b8f32eae4e",
- "name": "513fcfff-9d94-4f3e-bf00-42b8f32eae4e",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/116af4dd-db2d-452c-9fef-d3ac52a1edb4",
+ "name": "116af4dd-db2d-452c-9fef-d3ac52a1edb4",
"status": "Succeeded",
- "startTime": "2022-05-31T08:36:22.3329961Z",
- "endTime": "2022-05-31T08:36:22.4270413Z",
+ "startTime": "2022-07-25T18:19:08.9086478Z",
+ "endTime": "2022-07-25T18:19:09.0023386Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/513fcfff-9d94-4f3e-bf00-42b8f32eae4e?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/116af4dd-db2d-452c-9fef-d3ac52a1edb4?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -852,7 +874,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:36:51 GMT",
+ "Date": "Mon, 25 Jul 2022 18:19:39 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -860,19 +882,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "10b3e463-93fd-40ff-aae0-66212eea9080",
+ "x-ms-correlation-request-id": "d74ed551-07df-4067-bbf7-40ce0f58e125",
"x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083652Z:10b3e463-93fd-40ff-aae0-66212eea9080",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181939Z:d74ed551-07df-4067-bbf7-40ce0f58e125",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A36%3A22.3237308Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A19%3A08.907368Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:34:40.3803769Z"
+ "CreatedOnDate": "2022-07-25T18:17:22.7480811Z"
},
"properties": {
"encryption": {
@@ -882,42 +904,42 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:34:42.8442023Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:17:27.0673103Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:34:42.8442023Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:17:27.0673103Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:36:54 GMT",
+ "Date": "Mon, 25 Jul 2022 18:19:39 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "aa192dc7-5f32-49e8-81de-508693b61f04",
+ "x-ms-correlation-request-id": "1257e46a-d200-48f5-aaf2-6e2627f799d3",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083655Z:aa192dc7-5f32-49e8-81de-508693b61f04"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181939Z:1257e46a-d200-48f5-aaf2-6e2627f799d3"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
}
}
}
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 cb8a917f7844..0095c6811d6e 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 31 May 2022 08:27:51 GMT",
+ "Date": "Mon, 25 Jul 2022 18:23: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.12821.9 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 31 May 2022 08:27:51 GMT",
+ "Date": "Mon, 25 Jul 2022 18:23: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.12821.9 - NEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - NEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "6214f24a-9f47-4c8a-98e6-2056951d7e27",
+ "client-request-id": "568d06d4-f145-4de3-9915-fc7484b72442",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "6214f24a-9f47-4c8a-98e6-2056951d7e27",
+ "client-request-id": "568d06d4-f145-4de3-9915-fc7484b72442",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:27:51 GMT",
+ "Date": "Mon, 25 Jul 2022 18:23:04 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12821.9 - NEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - WEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,67 +213,67 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "22",
+ "Content-Length": "23",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2"
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4d0cc63a-4d8f-4f69-96b1-023c51f2da08?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74c3a9c5-9642-4e7e-9ba6-aaae2a49223b?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "686",
+ "Content-Length": "702",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:27:57 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A27%3A57.1740597Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:23:08 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A23%3A08.0088803Z\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": "d7b077c6-7c5b-4ce1-bfb4-6949080dd284",
- "x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082758Z:d7b077c6-7c5b-4ce1-bfb4-6949080dd284",
+ "x-ms-correlation-request-id": "2b7176a7-1d96-4cad-ac96-55d988edccb3",
+ "x-ms-ratelimit-remaining-subscription-writes": "1194",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182309Z:2b7176a7-1d96-4cad-ac96-55d988edccb3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A27%3A57.1740597Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A23%3A08.0088803Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:27:54.2524846Z"
+ "CreatedOnDate": "2022-07-25T18:23:05.9639997Z"
},
"properties": {
"provisioningState": "Creating"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:27:56.5121495Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:23:07.8488567Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:27:56.5121495Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:23:07.8488567Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4d0cc63a-4d8f-4f69-96b1-023c51f2da08?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74c3a9c5-9642-4e7e-9ba6-aaae2a49223b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +281,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:28:27 GMT",
+ "Date": "Mon, 25 Jul 2022 18:23:38 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +289,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e7be5955-8f90-43a3-aaaf-603392ee59ab",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082828Z:e7be5955-8f90-43a3-aaaf-603392ee59ab",
+ "x-ms-correlation-request-id": "951ad859-c1de-4b18-a4a6-18a585d42fc8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11970",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182339Z:951ad859-c1de-4b18-a4a6-18a585d42fc8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4d0cc63a-4d8f-4f69-96b1-023c51f2da08",
- "name": "4d0cc63a-4d8f-4f69-96b1-023c51f2da08",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74c3a9c5-9642-4e7e-9ba6-aaae2a49223b",
+ "name": "74c3a9c5-9642-4e7e-9ba6-aaae2a49223b",
"status": "Succeeded",
- "startTime": "2022-05-31T08:27:57.167625Z",
- "endTime": "2022-05-31T08:27:57.2145151Z",
+ "startTime": "2022-07-25T18:23:08.015382Z",
+ "endTime": "2022-07-25T18:23:08.1091314Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +321,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:28:27 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A27%3A57.2073818Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:23:39 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A23%3A08.0824703Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,21 +330,39 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d3b835e3-563a-4ab2-ae0d-c4dbf335811b",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082828Z:d3b835e3-563a-4ab2-ae0d-c4dbf335811b",
+ "x-ms-correlation-request-id": "a954eb96-8d32-475a-adf7-39df0ed492e8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11969",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182340Z:a954eb96-8d32-475a-adf7-39df0ed492e8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A27%3A57.2073818Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A23%3A08.0824703Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:27:54.2524846Z"
+ "CreatedOnDate": "2022-07-25T18:23:05.9639997Z"
},
"properties": {
+ "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"
},
@@ -351,27 +370,27 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:27:56.5121495Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:23:07.8488567Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:27:56.5121495Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:23:07.8488567Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "133",
+ "Content-Length": "134",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"dailyBackupsToKeep": 2,
"weeklyBackupsToKeep": 0,
@@ -381,30 +400,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/55828815-a710-4b1b-a1b3-17dffa0a760e?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f50fb2c8-2aee-4958-b65b-896dd4d3402e?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "861",
+ "Content-Length": "877",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:28:30 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A28%3A30.3952557Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:23:41 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A23%3A41.5603748Z\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": "178ba5d4-88d7-4967-b46b-dad0eca8a3d4",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082831Z:178ba5d4-88d7-4967-b46b-dad0eca8a3d4",
+ "x-ms-correlation-request-id": "390c2f3b-fb3e-4790-a04f-e004de6bd42f",
+ "x-ms-ratelimit-remaining-subscription-writes": "1193",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182342Z:390c2f3b-fb3e-4790-a04f-e004de6bd42f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-backup-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A28%3A30.3952557Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A23%3A41.5603748Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:28:28.8880858Z"
+ "CreatedOnDate": "2022-07-25T18:23:40.2988328Z"
},
"properties": {
"enabled": true,
@@ -415,22 +434,22 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:28:30.2779769Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:23:41.4023123Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:28:30.2779769Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:23:41.4023123Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/55828815-a710-4b1b-a1b3-17dffa0a760e?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f50fb2c8-2aee-4958-b65b-896dd4d3402e?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -438,7 +457,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:29:00 GMT",
+ "Date": "Mon, 25 Jul 2022 18:24:12 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -446,31 +465,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a100c794-2417-4507-bf28-4694b60df09a",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082901Z:a100c794-2417-4507-bf28-4694b60df09a",
+ "x-ms-correlation-request-id": "547884dc-ca43-4999-bd9a-79f942da8c73",
+ "x-ms-ratelimit-remaining-subscription-reads": "11968",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182413Z:547884dc-ca43-4999-bd9a-79f942da8c73",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/55828815-a710-4b1b-a1b3-17dffa0a760e",
- "name": "55828815-a710-4b1b-a1b3-17dffa0a760e",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f50fb2c8-2aee-4958-b65b-896dd4d3402e",
+ "name": "f50fb2c8-2aee-4958-b65b-896dd4d3402e",
"status": "Succeeded",
- "startTime": "2022-05-31T08:28:30.3972395Z",
- "endTime": "2022-05-31T08:28:30.6003712Z",
+ "startTime": "2022-07-25T18:23:41.5848558Z",
+ "endTime": "2022-07-25T18:23:41.7567328Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3/backupPolicies/sdk-py-tests-backup-policy-1"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -478,8 +497,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:29:00 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A28%3A30.60544Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:24:13 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A23%3A41.755507Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -487,46 +506,47 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "92a6d96e-9e08-4f19-afff-12c761558e2c",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082901Z:92a6d96e-9e08-4f19-afff-12c761558e2c",
+ "x-ms-correlation-request-id": "cbd6a10c-c2ba-4a27-9827-18c7accfddda",
+ "x-ms-ratelimit-remaining-subscription-reads": "11967",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182413Z:cbd6a10c-c2ba-4a27-9827-18c7accfddda",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-backup-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A28%3A30.60544Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A23%3A41.755507Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:28:28.8880858Z"
+ "CreatedOnDate": "2022-07-25T18:23:40.2988328Z"
},
"properties": {
"enabled": true,
- "backupPolicyId": "a6ed7b3f-e0bb-11ec-9feb-0e093eef7c7e",
+ "backupPolicyId": "e928b56f-0c46-11ed-bfae-de4d06f80184",
"dailyBackupsToKeep": 2,
"weeklyBackupsToKeep": 0,
"monthlyBackupsToKeep": 0,
+ "volumesAssigned": 0,
"provisioningState": "Succeeded"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:28:30.2779769Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:23:41.4023123Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:28:30.2779769Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:23:41.4023123Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -534,8 +554,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:29:01 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A28%3A30.60544Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:24:13 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A23%3A41.755507Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -543,76 +563,77 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b80addc6-00d5-4248-9c7c-963e79d2b9ef",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082902Z:b80addc6-00d5-4248-9c7c-963e79d2b9ef",
+ "x-ms-correlation-request-id": "21614233-73a5-49a9-9008-4088c73823d1",
+ "x-ms-ratelimit-remaining-subscription-reads": "11966",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182413Z:21614233-73a5-49a9-9008-4088c73823d1",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-backup-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A28%3A30.60544Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A23%3A41.755507Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:28:28.8880858Z"
+ "CreatedOnDate": "2022-07-25T18:23:40.2988328Z"
},
"properties": {
"enabled": true,
- "backupPolicyId": "a6ed7b3f-e0bb-11ec-9feb-0e093eef7c7e",
+ "backupPolicyId": "e928b56f-0c46-11ed-bfae-de4d06f80184",
"dailyBackupsToKeep": 2,
"weeklyBackupsToKeep": 0,
"monthlyBackupsToKeep": 0,
+ "volumesAssigned": 0,
"provisioningState": "Succeeded"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:28:30.2779769Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:23:41.4023123Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:28:30.2779769Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:23:41.4023123Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/2b2f7c76-9a76-4b5f-a019-61579543de69?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cfb71b66-2551-4ebe-825c-bdb12dac22a4?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 08:29:02 GMT",
+ "Date": "Mon, 25 Jul 2022 18:24:14 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2b2f7c76-9a76-4b5f-a019-61579543de69?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cfb71b66-2551-4ebe-825c-bdb12dac22a4?api-version=2022-03-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": "870ce045-994b-451d-958a-edf04fdbf9d7",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082903Z:870ce045-994b-451d-958a-edf04fdbf9d7",
+ "x-ms-correlation-request-id": "47deed25-b8b3-4536-9ecd-85462103b2e3",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182414Z:47deed25-b8b3-4536-9ecd-85462103b2e3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2b2f7c76-9a76-4b5f-a019-61579543de69?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cfb71b66-2551-4ebe-825c-bdb12dac22a4?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -620,7 +641,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:29:33 GMT",
+ "Date": "Mon, 25 Jul 2022 18:24:44 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -628,31 +649,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "117fbf91-5ed8-4bf5-9d08-fad2bcbe2b2d",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082933Z:117fbf91-5ed8-4bf5-9d08-fad2bcbe2b2d",
+ "x-ms-correlation-request-id": "2543169b-1ad9-4e6e-b278-644a7464f640",
+ "x-ms-ratelimit-remaining-subscription-reads": "11965",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182444Z:2543169b-1ad9-4e6e-b278-644a7464f640",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2b2f7c76-9a76-4b5f-a019-61579543de69",
- "name": "2b2f7c76-9a76-4b5f-a019-61579543de69",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cfb71b66-2551-4ebe-825c-bdb12dac22a4",
+ "name": "cfb71b66-2551-4ebe-825c-bdb12dac22a4",
"status": "Succeeded",
- "startTime": "2022-05-31T08:29:03.1076776Z",
- "endTime": "2022-05-31T08:29:03.6233326Z",
+ "startTime": "2022-07-25T18:24:14.4874728Z",
+ "endTime": "2022-07-25T18:24:14.7225157Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3/backupPolicies/sdk-py-tests-backup-policy-1"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2b2f7c76-9a76-4b5f-a019-61579543de69?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cfb71b66-2551-4ebe-825c-bdb12dac22a4?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -660,7 +681,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:29:33 GMT",
+ "Date": "Mon, 25 Jul 2022 18:24:44 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -668,108 +689,109 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8c4a30d9-120d-4010-bdf6-bcf6df2b490d",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082933Z:8c4a30d9-120d-4010-bdf6-bcf6df2b490d",
+ "x-ms-correlation-request-id": "3b1abe59-24f0-48f4-b071-b5592a83b64b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11964",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182445Z:3b1abe59-24f0-48f4-b071-b5592a83b64b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-backup-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A29%3A03.0930122Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A24%3A14.4821069Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:28:28.8880858Z"
+ "CreatedOnDate": "2022-07-25T18:23:40.2988328Z"
},
"properties": {
"enabled": true,
- "backupPolicyId": "a6ed7b3f-e0bb-11ec-9feb-0e093eef7c7e",
+ "backupPolicyId": "e928b56f-0c46-11ed-bfae-de4d06f80184",
"dailyBackupsToKeep": 2,
"weeklyBackupsToKeep": 0,
"monthlyBackupsToKeep": 0,
"yearlyBackupsToKeep": 0,
+ "volumesAssigned": 0,
"provisioningState": "Deleting"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:28:30.2779769Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:23:41.4023123Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:28:30.2779769Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:23:41.4023123Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "287",
+ "Content-Length": "294",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:29:35 GMT",
+ "Date": "Mon, 25 Jul 2022 18:24:46 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "be664265-00e7-4989-9982-89a582fc7571",
+ "x-ms-correlation-request-id": "aa9ee809-1c50-4f84-ae41-fe15b8b8ab3b",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082935Z:be664265-00e7-4989-9982-89a582fc7571"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182447Z:aa9ee809-1c50-4f84-ae41-fe15b8b8ab3b"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "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\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/32bf76ed-6474-4e53-98d1-13b5542d0fc2?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac180bf5-08d1-4f28-87ab-f4a5369857a5?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 08:29:37 GMT",
+ "Date": "Mon, 25 Jul 2022 18:24:47 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/32bf76ed-6474-4e53-98d1-13b5542d0fc2?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac180bf5-08d1-4f28-87ab-f4a5369857a5?api-version=2022-03-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": "cbfb3b45-2636-4750-ae17-ba0785993cfc",
- "x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082937Z:cbfb3b45-2636-4750-ae17-ba0785993cfc",
+ "x-ms-correlation-request-id": "0fe93080-30cf-44d1-a30f-7ae948496c5e",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182448Z:0fe93080-30cf-44d1-a30f-7ae948496c5e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/32bf76ed-6474-4e53-98d1-13b5542d0fc2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac180bf5-08d1-4f28-87ab-f4a5369857a5?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -777,7 +799,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:30:07 GMT",
+ "Date": "Mon, 25 Jul 2022 18:25:18 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -785,31 +807,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "cefa3eb0-7d99-4642-b4a4-0fcd8789236d",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083007Z:cefa3eb0-7d99-4642-b4a4-0fcd8789236d",
+ "x-ms-correlation-request-id": "b43f1c1a-ff31-4749-83c1-97d0fdb67ef0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11962",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182518Z:b43f1c1a-ff31-4749-83c1-97d0fdb67ef0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/32bf76ed-6474-4e53-98d1-13b5542d0fc2",
- "name": "32bf76ed-6474-4e53-98d1-13b5542d0fc2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac180bf5-08d1-4f28-87ab-f4a5369857a5",
+ "name": "ac180bf5-08d1-4f28-87ab-f4a5369857a5",
"status": "Succeeded",
- "startTime": "2022-05-31T08:29:36.886842Z",
- "endTime": "2022-05-31T08:29:36.9806079Z",
+ "startTime": "2022-07-25T18:24:48.0102264Z",
+ "endTime": "2022-07-25T18:24:48.0570651Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/32bf76ed-6474-4e53-98d1-13b5542d0fc2?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac180bf5-08d1-4f28-87ab-f4a5369857a5?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -817,7 +839,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:30:07 GMT",
+ "Date": "Mon, 25 Jul 2022 18:25:18 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -825,19 +847,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c434f8a8-950b-4436-bc15-c98604c75cf6",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083007Z:c434f8a8-950b-4436-bc15-c98604c75cf6",
+ "x-ms-correlation-request-id": "18872675-2401-424a-9f96-8c2214d6237c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11961",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182518Z:18872675-2401-424a-9f96-8c2214d6237c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A29%3A36.8768468Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A24%3A48.0032385Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:27:54.2524846Z"
+ "CreatedOnDate": "2022-07-25T18:23:05.9639997Z"
},
"properties": {
"encryption": {
@@ -847,42 +869,42 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:27:56.5121495Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:23:07.8488567Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:27:56.5121495Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:23:07.8488567Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:30:07 GMT",
+ "Date": "Mon, 25 Jul 2022 18:25:18 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "bfb53d5d-ba54-4dbf-8736-561383a64246",
+ "x-ms-correlation-request-id": "8e71e246-7290-46ce-8ada-404263ddf1de",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083007Z:bfb53d5d-ba54-4dbf-8736-561383a64246"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182518Z:8e71e246-7290-46ce-8ada-404263ddf1de"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
}
}
}
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 7704d1e4699e..b344975a7810 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 31 May 2022 08:30:35 GMT",
+ "Date": "Mon, 25 Jul 2022 18:19: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.12821.9 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 31 May 2022 08:30:35 GMT",
+ "Date": "Mon, 25 Jul 2022 18:19: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.12794.7 - NEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13201.7 - WEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "50f0dfaa-90b9-4f4e-b973-f4256b7b04ca",
+ "client-request-id": "c3dae5e2-a337-4197-8c65-6a5d4965f9c3",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "50f0dfaa-90b9-4f4e-b973-f4256b7b04ca",
+ "client-request-id": "c3dae5e2-a337-4197-8c65-6a5d4965f9c3",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:30:35 GMT",
+ "Date": "Mon, 25 Jul 2022 18:19:40 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12821.9 - NEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - NEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,67 +213,67 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "22",
+ "Content-Length": "23",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2"
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cf5e9f5d-60fe-47e0-8ed1-2d6814c2b97e?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d8302f4-921b-4f95-8c1f-c11379ce33f0?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "686",
+ "Content-Length": "702",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:30:42 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A30%3A41.9497258Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:19:44 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A19%3A44.0945845Z\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": "54544d89-0df4-4aba-a303-82745a982657",
- "x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083042Z:54544d89-0df4-4aba-a303-82745a982657",
+ "x-ms-correlation-request-id": "ba5b1bad-84b4-4a7c-9668-83f33de4f272",
+ "x-ms-ratelimit-remaining-subscription-writes": "1197",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181945Z:ba5b1bad-84b4-4a7c-9668-83f33de4f272",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A30%3A41.9497258Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A19%3A44.0945845Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:30:38.5122629Z"
+ "CreatedOnDate": "2022-07-25T18:19:41.9047450Z"
},
"properties": {
"provisioningState": "Creating"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:30:41.2523754Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:19:43.9314168Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:30:41.2523754Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:19:43.9314168Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cf5e9f5d-60fe-47e0-8ed1-2d6814c2b97e?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d8302f4-921b-4f95-8c1f-c11379ce33f0?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +281,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:31:12 GMT",
+ "Date": "Mon, 25 Jul 2022 18:20:15 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +289,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8c88d3a6-bdf4-4499-ada9-8e40f786c176",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083113Z:8c88d3a6-bdf4-4499-ada9-8e40f786c176",
+ "x-ms-correlation-request-id": "a6df903f-f430-41f1-b636-87c70cc2050f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182015Z:a6df903f-f430-41f1-b636-87c70cc2050f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cf5e9f5d-60fe-47e0-8ed1-2d6814c2b97e",
- "name": "cf5e9f5d-60fe-47e0-8ed1-2d6814c2b97e",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d8302f4-921b-4f95-8c1f-c11379ce33f0",
+ "name": "8d8302f4-921b-4f95-8c1f-c11379ce33f0",
"status": "Succeeded",
- "startTime": "2022-05-31T08:30:41.9564928Z",
- "endTime": "2022-05-31T08:30:42.0190242Z",
+ "startTime": "2022-07-25T18:19:44.0889655Z",
+ "endTime": "2022-07-25T18:19:44.1202273Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +321,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:31:12 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A30%3A42.0058934Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:20:15 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A19%3A44.1234594Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,21 +330,39 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b6354140-6187-40b5-816b-5b60f6c240fd",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083113Z:b6354140-6187-40b5-816b-5b60f6c240fd",
+ "x-ms-correlation-request-id": "ea76b7e4-2357-417c-bdad-c79163740f61",
+ "x-ms-ratelimit-remaining-subscription-reads": "11986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182016Z:ea76b7e4-2357-417c-bdad-c79163740f61",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A30%3A42.0058934Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A19%3A44.1234594Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:30:38.5122629Z"
+ "CreatedOnDate": "2022-07-25T18:19:41.9047450Z"
},
"properties": {
+ "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"
},
@@ -351,27 +370,27 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:30:41.2523754Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:19:43.9314168Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:30:41.2523754Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:19:43.9314168Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "133",
+ "Content-Length": "134",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"dailyBackupsToKeep": 2,
"weeklyBackupsToKeep": 0,
@@ -381,30 +400,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd9682df-c2c0-4d98-a9ad-f8956f80bbb2?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e6d06e7f-c8f0-4b9d-b557-9c8d38d7d14f?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "861",
+ "Content-Length": "877",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:31:15 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A31%3A15.2044398Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:20:19 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A20%3A18.4699438Z\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": "a4f4ce4a-fdb7-4252-9fa0-df7f6dc37fe0",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083116Z:a4f4ce4a-fdb7-4252-9fa0-df7f6dc37fe0",
+ "x-ms-correlation-request-id": "1deb41d3-b726-4481-9fc2-2145ff2e7fb7",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182019Z:1deb41d3-b726-4481-9fc2-2145ff2e7fb7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-backup-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A31%3A15.2044398Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A20%3A18.4699438Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:31:13.7423606Z"
+ "CreatedOnDate": "2022-07-25T18:20:16.3721494Z"
},
"properties": {
"enabled": true,
@@ -415,22 +434,22 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:31:15.0808706Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:20:18.3301014Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:31:15.0808706Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:20:18.3301014Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd9682df-c2c0-4d98-a9ad-f8956f80bbb2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e6d06e7f-c8f0-4b9d-b557-9c8d38d7d14f?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -438,7 +457,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:31:45 GMT",
+ "Date": "Mon, 25 Jul 2022 18:20:49 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -446,31 +465,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0bb59f27-ca39-4df0-b7da-5f45e0b89ea1",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083146Z:0bb59f27-ca39-4df0-b7da-5f45e0b89ea1",
+ "x-ms-correlation-request-id": "aa0f5035-349a-490c-8587-f09e60116b9a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182050Z:aa0f5035-349a-490c-8587-f09e60116b9a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd9682df-c2c0-4d98-a9ad-f8956f80bbb2",
- "name": "bd9682df-c2c0-4d98-a9ad-f8956f80bbb2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e6d06e7f-c8f0-4b9d-b557-9c8d38d7d14f",
+ "name": "e6d06e7f-c8f0-4b9d-b557-9c8d38d7d14f",
"status": "Succeeded",
- "startTime": "2022-05-31T08:31:15.2131152Z",
- "endTime": "2022-05-31T08:31:15.3849915Z",
+ "startTime": "2022-07-25T18:20:18.4668099Z",
+ "endTime": "2022-07-25T18:20:18.576267Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-1"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -478,8 +497,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:31:45 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A31%3A15.3809539Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:20:50 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A20%3A18.5760102Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -487,51 +506,52 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3c220a05-e39f-4230-bdf2-682264361395",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083146Z:3c220a05-e39f-4230-bdf2-682264361395",
+ "x-ms-correlation-request-id": "894873b2-6a3e-4dd2-ba75-1fe50be94234",
+ "x-ms-ratelimit-remaining-subscription-reads": "11984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182050Z:894873b2-6a3e-4dd2-ba75-1fe50be94234",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-backup-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A31%3A15.3809539Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A20%3A18.5760102Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:31:13.7423606Z"
+ "CreatedOnDate": "2022-07-25T18:20:16.3721494Z"
},
"properties": {
"enabled": true,
- "backupPolicyId": "09261992-e0bc-11ec-9feb-0e093eef7c7e",
+ "backupPolicyId": "700eb378-0c46-11ed-9cea-16b230efae0e",
"dailyBackupsToKeep": 2,
"weeklyBackupsToKeep": 0,
"monthlyBackupsToKeep": 0,
+ "volumesAssigned": 0,
"provisioningState": "Succeeded"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:31:15.0808706Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:20:18.3301014Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:31:15.0808706Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:20:18.3301014Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-2?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "133",
+ "Content-Length": "134",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"dailyBackupsToKeep": 2,
"weeklyBackupsToKeep": 0,
@@ -541,30 +561,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c0934915-055b-4112-a2f7-a5fb4a794ea0?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/86e1591d-3eeb-47a2-851d-18a4dd960421?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "861",
+ "Content-Length": "877",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:31:47 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A31%3A47.7845432Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:20:52 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A20%3A51.9807923Z\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": "3fa20f35-006a-407f-ba0b-1dce2b16de13",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083148Z:3fa20f35-006a-407f-ba0b-1dce2b16de13",
+ "x-ms-correlation-request-id": "43d54f03-dd72-45a1-8555-110a614f0a4e",
+ "x-ms-ratelimit-remaining-subscription-writes": "1195",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182052Z:43d54f03-dd72-45a1-8555-110a614f0a4e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-backup-policy-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A31%3A47.7845432Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A20%3A51.9807923Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:31:46.8590424Z"
+ "CreatedOnDate": "2022-07-25T18:20:50.7516872Z"
},
"properties": {
"enabled": true,
@@ -575,22 +595,22 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:31:47.6749793Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:20:51.8376916Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:31:47.6749793Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:20:51.8376916Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c0934915-055b-4112-a2f7-a5fb4a794ea0?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/86e1591d-3eeb-47a2-851d-18a4dd960421?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -598,7 +618,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:32:18 GMT",
+ "Date": "Mon, 25 Jul 2022 18:21:23 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -606,31 +626,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b09122e0-1385-4a5a-9bf8-d021b3f42bc0",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083218Z:b09122e0-1385-4a5a-9bf8-d021b3f42bc0",
+ "x-ms-correlation-request-id": "457c1c41-4ae2-4254-abef-db7846157141",
+ "x-ms-ratelimit-remaining-subscription-reads": "11983",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182123Z:457c1c41-4ae2-4254-abef-db7846157141",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c0934915-055b-4112-a2f7-a5fb4a794ea0",
- "name": "c0934915-055b-4112-a2f7-a5fb4a794ea0",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/86e1591d-3eeb-47a2-851d-18a4dd960421",
+ "name": "86e1591d-3eeb-47a2-851d-18a4dd960421",
"status": "Succeeded",
- "startTime": "2022-05-31T08:31:47.7929242Z",
- "endTime": "2022-05-31T08:31:47.8866819Z",
+ "startTime": "2022-07-25T18:20:51.9854967Z",
+ "endTime": "2022-07-25T18:20:52.0636322Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-2"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-2"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-2?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -638,8 +658,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:32:18 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A31%3A47.8855069Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:21:23 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A20%3A52.0661381Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -647,46 +667,47 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c39881ad-4b20-49dc-88d9-5dfaafc81d39",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083218Z:c39881ad-4b20-49dc-88d9-5dfaafc81d39",
+ "x-ms-correlation-request-id": "d647f427-d219-4a12-bc37-cac1b58a429c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182123Z:d647f427-d219-4a12-bc37-cac1b58a429c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-backup-policy-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A31%3A47.8855069Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A20%3A52.0661381Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:31:46.8590424Z"
+ "CreatedOnDate": "2022-07-25T18:20:50.7516872Z"
},
"properties": {
"enabled": true,
- "backupPolicyId": "1c867d2b-e0bc-11ec-9feb-0e093eef7c7e",
+ "backupPolicyId": "84053114-0c46-11ed-bfae-de4d06f80184",
"dailyBackupsToKeep": 2,
"weeklyBackupsToKeep": 0,
"monthlyBackupsToKeep": 0,
+ "volumesAssigned": 0,
"provisioningState": "Succeeded"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:31:47.6749793Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:20:51.8376916Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:31:47.6749793Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:20:51.8376916Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -694,7 +715,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:32:19 GMT",
+ "Date": "Mon, 25 Jul 2022 18:21:23 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -702,106 +723,108 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7b68aec7-82b5-486f-8c92-49b1c6c73242",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083219Z:7b68aec7-82b5-486f-8c92-49b1c6c73242",
+ "x-ms-correlation-request-id": "b5c9fefc-ec07-4566-8fbb-221277aacd3c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11981",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182124Z:b5c9fefc-ec07-4566-8fbb-221277aacd3c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-backup-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A31%3A15.3809539Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A20%3A18.5760102Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:31:13.7423606Z"
+ "CreatedOnDate": "2022-07-25T18:20:16.3721494Z"
},
"properties": {
"enabled": true,
- "backupPolicyId": "09261992-e0bc-11ec-9feb-0e093eef7c7e",
+ "backupPolicyId": "700eb378-0c46-11ed-9cea-16b230efae0e",
"dailyBackupsToKeep": 2,
"weeklyBackupsToKeep": 0,
"monthlyBackupsToKeep": 0,
+ "volumesAssigned": 0,
"provisioningState": "Succeeded"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:31:15.0808706Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:20:18.3301014Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:31:15.0808706Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:20:18.3301014Z"
}
},
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-backup-policy-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A31%3A47.8855069Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A20%3A52.0661381Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:31:46.8590424Z"
+ "CreatedOnDate": "2022-07-25T18:20:50.7516872Z"
},
"properties": {
"enabled": true,
- "backupPolicyId": "1c867d2b-e0bc-11ec-9feb-0e093eef7c7e",
+ "backupPolicyId": "84053114-0c46-11ed-bfae-de4d06f80184",
"dailyBackupsToKeep": 2,
"weeklyBackupsToKeep": 0,
"monthlyBackupsToKeep": 0,
+ "volumesAssigned": 0,
"provisioningState": "Succeeded"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:31:47.6749793Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:20:51.8376916Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:31:47.6749793Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:20:51.8376916Z"
}
}
]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/216b88ab-7311-4873-88b1-1428da6390f8?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87ba4fb8-32b0-4962-882c-a4455fe66c88?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 08:32:19 GMT",
+ "Date": "Mon, 25 Jul 2022 18:21:24 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/216b88ab-7311-4873-88b1-1428da6390f8?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87ba4fb8-32b0-4962-882c-a4455fe66c88?api-version=2022-03-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": "9a9260d1-8f7c-4fee-8210-2c5129a2c00e",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083219Z:9a9260d1-8f7c-4fee-8210-2c5129a2c00e",
+ "x-ms-correlation-request-id": "d7b4b118-493c-4b39-8a8c-6f012eb59cdc",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182124Z:d7b4b118-493c-4b39-8a8c-6f012eb59cdc",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/216b88ab-7311-4873-88b1-1428da6390f8?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87ba4fb8-32b0-4962-882c-a4455fe66c88?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -809,7 +832,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:32:49 GMT",
+ "Date": "Mon, 25 Jul 2022 18:21:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -817,31 +840,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "bb6d67db-e785-43fe-97ab-3dd9e939242f",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083249Z:bb6d67db-e785-43fe-97ab-3dd9e939242f",
+ "x-ms-correlation-request-id": "d770e133-8ba7-49a8-b62c-8eb6f706376b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11980",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182155Z:d770e133-8ba7-49a8-b62c-8eb6f706376b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/216b88ab-7311-4873-88b1-1428da6390f8",
- "name": "216b88ab-7311-4873-88b1-1428da6390f8",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87ba4fb8-32b0-4962-882c-a4455fe66c88",
+ "name": "87ba4fb8-32b0-4962-882c-a4455fe66c88",
"status": "Succeeded",
- "startTime": "2022-05-31T08:32:19.5182642Z",
- "endTime": "2022-05-31T08:32:20.1432829Z",
+ "startTime": "2022-07-25T18:21:24.5514974Z",
+ "endTime": "2022-07-25T18:21:24.7546512Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-1"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/216b88ab-7311-4873-88b1-1428da6390f8?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87ba4fb8-32b0-4962-882c-a4455fe66c88?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -849,7 +872,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:32:49 GMT",
+ "Date": "Mon, 25 Jul 2022 18:21:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -857,108 +880,109 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5b4342bc-bca9-47f1-a8f3-913204fb1272",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083250Z:5b4342bc-bca9-47f1-a8f3-913204fb1272",
+ "x-ms-correlation-request-id": "014f227b-80d5-4a42-b3c9-25d437a1b82a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11979",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182155Z:014f227b-80d5-4a42-b3c9-25d437a1b82a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-backup-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A32%3A19.5055621Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A21%3A24.5538652Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:31:13.7423606Z"
+ "CreatedOnDate": "2022-07-25T18:20:16.3721494Z"
},
"properties": {
"enabled": true,
- "backupPolicyId": "09261992-e0bc-11ec-9feb-0e093eef7c7e",
+ "backupPolicyId": "700eb378-0c46-11ed-9cea-16b230efae0e",
"dailyBackupsToKeep": 2,
"weeklyBackupsToKeep": 0,
"monthlyBackupsToKeep": 0,
"yearlyBackupsToKeep": 0,
+ "volumesAssigned": 0,
"provisioningState": "Deleting"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:31:15.0808706Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:20:18.3301014Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:31:15.0808706Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:20:18.3301014Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "287",
+ "Content-Length": "294",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:32:51 GMT",
+ "Date": "Mon, 25 Jul 2022 18:21:56 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c1a4bcb7-9146-4b4d-92d4-aa7db8a27922",
+ "x-ms-correlation-request-id": "2970e114-d07e-4df9-a309-d5b9bcab6afd",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083252Z:c1a4bcb7-9146-4b4d-92d4-aa7db8a27922"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182157Z:2970e114-d07e-4df9-a309-d5b9bcab6afd"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "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\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-2?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/3880131d-7255-45bf-9882-48a0534b00a2?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a9b06ff6-96b4-410f-9d9e-0e3f919315c4?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 08:32:52 GMT",
+ "Date": "Mon, 25 Jul 2022 18:21:57 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3880131d-7255-45bf-9882-48a0534b00a2?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a9b06ff6-96b4-410f-9d9e-0e3f919315c4?api-version=2022-03-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": "87f2a121-3302-4bbf-9571-83c4a2a1cd15",
- "x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083253Z:87f2a121-3302-4bbf-9571-83c4a2a1cd15",
+ "x-ms-correlation-request-id": "43ce841e-f7ea-4a6c-ad24-41085569e338",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14996",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182158Z:43ce841e-f7ea-4a6c-ad24-41085569e338",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3880131d-7255-45bf-9882-48a0534b00a2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a9b06ff6-96b4-410f-9d9e-0e3f919315c4?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -966,7 +990,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:33:22 GMT",
+ "Date": "Mon, 25 Jul 2022 18:22:28 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -974,31 +998,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7def2f01-eb09-44f8-80d8-31cf737acc6a",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083323Z:7def2f01-eb09-44f8-80d8-31cf737acc6a",
+ "x-ms-correlation-request-id": "65908fb6-520c-46c7-b621-cc3c8a4e6adf",
+ "x-ms-ratelimit-remaining-subscription-reads": "11977",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182228Z:65908fb6-520c-46c7-b621-cc3c8a4e6adf",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3880131d-7255-45bf-9882-48a0534b00a2",
- "name": "3880131d-7255-45bf-9882-48a0534b00a2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a9b06ff6-96b4-410f-9d9e-0e3f919315c4",
+ "name": "a9b06ff6-96b4-410f-9d9e-0e3f919315c4",
"status": "Succeeded",
- "startTime": "2022-05-31T08:32:52.6728135Z",
- "endTime": "2022-05-31T08:32:53.1415872Z",
+ "startTime": "2022-07-25T18:21:58.127898Z",
+ "endTime": "2022-07-25T18:21:58.3319526Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-2"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-2"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3880131d-7255-45bf-9882-48a0534b00a2?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a9b06ff6-96b4-410f-9d9e-0e3f919315c4?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1006,7 +1030,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:33:22 GMT",
+ "Date": "Mon, 25 Jul 2022 18:22:28 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1014,78 +1038,79 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "72e330b2-5b19-4645-a480-3bf913371fc5",
- "x-ms-ratelimit-remaining-subscription-reads": "11988",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083323Z:72e330b2-5b19-4645-a480-3bf913371fc5",
+ "x-ms-correlation-request-id": "8ceeaa1b-aa09-4705-b2a3-d67c6673e037",
+ "x-ms-ratelimit-remaining-subscription-reads": "11976",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182228Z:8ceeaa1b-aa09-4705-b2a3-d67c6673e037",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-backup-policy-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A32%3A52.67074Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A21%3A58.1189562Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:31:46.8590424Z"
+ "CreatedOnDate": "2022-07-25T18:20:50.7516872Z"
},
"properties": {
"enabled": true,
- "backupPolicyId": "1c867d2b-e0bc-11ec-9feb-0e093eef7c7e",
+ "backupPolicyId": "84053114-0c46-11ed-bfae-de4d06f80184",
"dailyBackupsToKeep": 2,
"weeklyBackupsToKeep": 0,
"monthlyBackupsToKeep": 0,
"yearlyBackupsToKeep": 0,
+ "volumesAssigned": 0,
"provisioningState": "Deleting"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:31:47.6749793Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:20:51.8376916Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:31:47.6749793Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:20:51.8376916Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-2?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "287",
+ "Content-Length": "294",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:33:25 GMT",
+ "Date": "Mon, 25 Jul 2022 18:22:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "66609e85-d68d-4d7c-9100-7f3eb0cb4054",
+ "x-ms-correlation-request-id": "c02b8970-393d-4934-8e07-5e5efe826391",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083325Z:66609e85-d68d-4d7c-9100-7f3eb0cb4054"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182231Z:c02b8970-393d-4934-8e07-5e5efe826391"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-2\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "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\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1093,7 +1118,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:33:25 GMT",
+ "Date": "Mon, 25 Jul 2022 18:22:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1101,9 +1126,9 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "252807bf-891a-43dc-9572-78b9bb821d8b",
- "x-ms-ratelimit-remaining-subscription-reads": "11986",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083325Z:252807bf-891a-43dc-9572-78b9bb821d8b",
+ "x-ms-correlation-request-id": "d8f6fd94-5cbc-4b0b-85c5-6fcdae8baebf",
+ "x-ms-ratelimit-remaining-subscription-reads": "11974",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182231Z:d8f6fd94-5cbc-4b0b-85c5-6fcdae8baebf",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -1111,43 +1136,43 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/b0560a0e-8579-44bf-8f4b-ed98a643af69?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/98cc5572-1098-4131-926c-9879af80a56f?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 08:33:26 GMT",
+ "Date": "Mon, 25 Jul 2022 18:22:31 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b0560a0e-8579-44bf-8f4b-ed98a643af69?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/98cc5572-1098-4131-926c-9879af80a56f?api-version=2022-03-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": "0b2936a9-1327-4a44-9a95-fa1fea3db6c5",
- "x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083326Z:0b2936a9-1327-4a44-9a95-fa1fea3db6c5",
+ "x-ms-correlation-request-id": "a8e18356-1190-416f-802a-c31e0e01c806",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182232Z:a8e18356-1190-416f-802a-c31e0e01c806",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b0560a0e-8579-44bf-8f4b-ed98a643af69?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/98cc5572-1098-4131-926c-9879af80a56f?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1155,7 +1180,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:33:55 GMT",
+ "Date": "Mon, 25 Jul 2022 18:23:02 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1163,31 +1188,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fa151290-5895-421e-8233-ed77fa8fb7ab",
- "x-ms-ratelimit-remaining-subscription-reads": "11985",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083356Z:fa151290-5895-421e-8233-ed77fa8fb7ab",
+ "x-ms-correlation-request-id": "8e20466e-b4ff-4c0b-99bb-e2924f62b694",
+ "x-ms-ratelimit-remaining-subscription-reads": "11973",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182302Z:8e20466e-b4ff-4c0b-99bb-e2924f62b694",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b0560a0e-8579-44bf-8f4b-ed98a643af69",
- "name": "b0560a0e-8579-44bf-8f4b-ed98a643af69",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/98cc5572-1098-4131-926c-9879af80a56f",
+ "name": "98cc5572-1098-4131-926c-9879af80a56f",
"status": "Succeeded",
- "startTime": "2022-05-31T08:33:26.299968Z",
- "endTime": "2022-05-31T08:33:26.3946135Z",
+ "startTime": "2022-07-25T18:22:32.0862118Z",
+ "endTime": "2022-07-25T18:22:32.1487276Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b0560a0e-8579-44bf-8f4b-ed98a643af69?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/98cc5572-1098-4131-926c-9879af80a56f?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1195,7 +1220,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:33:56 GMT",
+ "Date": "Mon, 25 Jul 2022 18:23:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1203,19 +1228,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "424cbda0-2c95-4c27-a5e2-2e203c4ec224",
- "x-ms-ratelimit-remaining-subscription-reads": "11984",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083356Z:424cbda0-2c95-4c27-a5e2-2e203c4ec224",
+ "x-ms-correlation-request-id": "502054a5-22bc-4ae5-8b0b-2c9f045845a5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11972",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182303Z:502054a5-22bc-4ae5-8b0b-2c9f045845a5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A33%3A26.2886593Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A22%3A32.0878117Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:30:38.5122629Z"
+ "CreatedOnDate": "2022-07-25T18:19:41.9047450Z"
},
"properties": {
"encryption": {
@@ -1225,42 +1250,42 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:30:41.2523754Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:19:43.9314168Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:30:41.2523754Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:19:43.9314168Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:33:56 GMT",
+ "Date": "Mon, 25 Jul 2022 18:23:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2874dbaa-516f-4ab8-ba8b-d90b7a1e9fd4",
+ "x-ms-correlation-request-id": "206a3876-7088-4056-a407-2bbf378697b6",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T083356Z:2874dbaa-516f-4ab8-ba8b-d90b7a1e9fd4"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182303Z:206a3876-7088-4056-a407-2bbf378697b6"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
}
}
}
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 02484012b25d..6933c0df09e7 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 31 May 2022 08:24:40 GMT",
+ "Date": "Mon, 25 Jul 2022 18:25:22 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.12821.9 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 31 May 2022 08:24:40 GMT",
+ "Date": "Mon, 25 Jul 2022 18:25:22 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.12794.7 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13201.7 - WEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "ba5faeaa-c36f-4ed9-9b25-14d94ca34ae3",
+ "client-request-id": "4d86fbc6-bda9-491d-b833-187941b3352e",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "ba5faeaa-c36f-4ed9-9b25-14d94ca34ae3",
+ "client-request-id": "4d86fbc6-bda9-491d-b833-187941b3352e",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:24:40 GMT",
+ "Date": "Mon, 25 Jul 2022 18:25:23 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12821.9 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - WEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,67 +213,67 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "22",
+ "Content-Length": "23",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2"
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d9ce711-5fe0-48a4-9a8f-61ad1d924ec9?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed2e98fd-03dc-4360-b49f-5b1598c96e4d?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "686",
+ "Content-Length": "700",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:24:46 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A24%3A46.1374867Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:25:26 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A25%3A25.9276793Z\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": "19259fd9-fd41-4c6b-a9b5-4b82006b60de",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082447Z:19259fd9-fd41-4c6b-a9b5-4b82006b60de",
+ "x-ms-correlation-request-id": "137cd566-9825-432b-8a9a-10357ec717b7",
+ "x-ms-ratelimit-remaining-subscription-writes": "1192",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182527Z:137cd566-9825-432b-8a9a-10357ec717b7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A24%3A46.1374867Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A25%3A25.9276793Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:24:42.8196599Z"
+ "CreatedOnDate": "2022-07-25T18:25:23.8678521Z"
},
"properties": {
"provisioningState": "Creating"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:24:45.4283287Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:25:25.7574887Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:24:45.4283287Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:25:25.7574887Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d9ce711-5fe0-48a4-9a8f-61ad1d924ec9?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed2e98fd-03dc-4360-b49f-5b1598c96e4d?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +281,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:25:17 GMT",
+ "Date": "Mon, 25 Jul 2022 18:25:56 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +289,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "983a78f6-4854-4d21-8ae4-1c377c448497",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082517Z:983a78f6-4854-4d21-8ae4-1c377c448497",
+ "x-ms-correlation-request-id": "b0137f84-c6c9-4a21-bb19-c94d08330008",
+ "x-ms-ratelimit-remaining-subscription-reads": "11959",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182557Z:b0137f84-c6c9-4a21-bb19-c94d08330008",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d9ce711-5fe0-48a4-9a8f-61ad1d924ec9",
- "name": "8d9ce711-5fe0-48a4-9a8f-61ad1d924ec9",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed2e98fd-03dc-4360-b49f-5b1598c96e4d",
+ "name": "ed2e98fd-03dc-4360-b49f-5b1598c96e4d",
"status": "Succeeded",
- "startTime": "2022-05-31T08:24:46.1318951Z",
- "endTime": "2022-05-31T08:24:46.1944311Z",
+ "startTime": "2022-07-25T18:25:25.923815Z",
+ "endTime": "2022-07-25T18:25:25.9706957Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +321,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:25:17 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A24%3A46.1976457Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:25:56 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A25%3A25.9747343Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,21 +330,39 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f6ab784c-8773-4d97-8b57-f09883f94b60",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082517Z:f6ab784c-8773-4d97-8b57-f09883f94b60",
+ "x-ms-correlation-request-id": "95baeae7-0316-4a09-84b3-243763781edb",
+ "x-ms-ratelimit-remaining-subscription-reads": "11958",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182557Z:95baeae7-0316-4a09-84b3-243763781edb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A24%3A46.1976457Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A25%3A25.9747343Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:24:42.8196599Z"
+ "CreatedOnDate": "2022-07-25T18:25:23.8678521Z"
},
"properties": {
+ "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"
},
@@ -351,27 +370,27 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:24:45.4283287Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:25:25.7574887Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:24:45.4283287Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:25:25.7574887Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "133",
+ "Content-Length": "134",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"dailyBackupsToKeep": 2,
"weeklyBackupsToKeep": 0,
@@ -381,30 +400,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/76ba75b0-2ffd-435f-9652-c8fb7c90c39d?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e102cf5e-a0e9-4741-93ce-e190567f1169?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "861",
+ "Content-Length": "874",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:25:20 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A25%3A19.3507148Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:26:00 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A25%3A59.359209Z\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": "61109d66-fbe0-428c-afa3-9c097b32bba9",
- "x-ms-ratelimit-remaining-subscription-writes": "1196",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082520Z:61109d66-fbe0-428c-afa3-9c097b32bba9",
+ "x-ms-correlation-request-id": "fc4a68a1-2a8c-488f-9cf3-f0d3e2b3a1b8",
+ "x-ms-ratelimit-remaining-subscription-writes": "1191",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182600Z:fc4a68a1-2a8c-488f-9cf3-f0d3e2b3a1b8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-backup-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A25%3A19.3507148Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A25%3A59.359209Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:25:17.7981310Z"
+ "CreatedOnDate": "2022-07-25T18:25:58.0231055Z"
},
"properties": {
"enabled": true,
@@ -415,22 +434,22 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:25:19.2098969Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:25:59.2274263Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:25:19.2098969Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:25:59.2274263Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/76ba75b0-2ffd-435f-9652-c8fb7c90c39d?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e102cf5e-a0e9-4741-93ce-e190567f1169?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -438,7 +457,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:25:50 GMT",
+ "Date": "Mon, 25 Jul 2022 18:26:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -446,31 +465,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "69de6ea2-55c2-48bd-9a89-2303954c0f57",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082550Z:69de6ea2-55c2-48bd-9a89-2303954c0f57",
+ "x-ms-correlation-request-id": "4aea737c-10a0-4784-8843-53f41ec80cfc",
+ "x-ms-ratelimit-remaining-subscription-reads": "11957",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182630Z:4aea737c-10a0-4784-8843-53f41ec80cfc",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/76ba75b0-2ffd-435f-9652-c8fb7c90c39d",
- "name": "76ba75b0-2ffd-435f-9652-c8fb7c90c39d",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e102cf5e-a0e9-4741-93ce-e190567f1169",
+ "name": "e102cf5e-a0e9-4741-93ce-e190567f1169",
"status": "Succeeded",
- "startTime": "2022-05-31T08:25:19.3544072Z",
- "endTime": "2022-05-31T08:25:19.5477922Z",
+ "startTime": "2022-07-25T18:25:59.3544567Z",
+ "endTime": "2022-07-25T18:25:59.4482568Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74/backupPolicies/sdk-py-tests-backup-policy-1"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -478,8 +497,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:25:50 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A25%3A19.5487549Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:26:31 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A25%3A59.4419014Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -487,51 +506,52 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "99212a5f-da85-4aaa-a54e-7693a18437a2",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082550Z:99212a5f-da85-4aaa-a54e-7693a18437a2",
+ "x-ms-correlation-request-id": "b78930c9-2d06-4124-ba9c-91f33734ac7b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11956",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182631Z:b78930c9-2d06-4124-ba9c-91f33734ac7b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-backup-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A25%3A19.5487549Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A25%3A59.4419014Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:25:17.7981310Z"
+ "CreatedOnDate": "2022-07-25T18:25:58.0231055Z"
},
"properties": {
"enabled": true,
- "backupPolicyId": "350e710a-e0bb-11ec-85be-26652f4d094e",
+ "backupPolicyId": "3b3af32a-0c47-11ed-9cea-16b230efae0e",
"dailyBackupsToKeep": 2,
"weeklyBackupsToKeep": 0,
"monthlyBackupsToKeep": 0,
+ "volumesAssigned": 0,
"provisioningState": "Succeeded"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:25:19.2098969Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:25:59.2274263Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:25:19.2098969Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:25:59.2274263Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-03-01",
"RequestMethod": "PATCH",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "133",
+ "Content-Length": "134",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"dailyBackupsToKeep": 0,
"weeklyBackupsToKeep": 1,
@@ -541,58 +561,59 @@
},
"StatusCode": 202,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/75674746-de35-43a0-bb4a-1f3cfaa13be2?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4c1e3e15-eb44-4922-ad7d-34947c8962b1?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "917",
+ "Content-Length": "951",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:25:50 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A25%3A51.1898259Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:26:31 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A26%3A31.8786537Z\u0027\u0022",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/75674746-de35-43a0-bb4a-1f3cfaa13be2?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4c1e3e15-eb44-4922-ad7d-34947c8962b1?api-version=2022-03-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": "0c17c35e-48aa-40ab-b6e3-11fd2df30354",
- "x-ms-ratelimit-remaining-subscription-writes": "1195",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082551Z:0c17c35e-48aa-40ab-b6e3-11fd2df30354",
+ "x-ms-correlation-request-id": "5529da3d-2e35-4306-a8fa-31c62d04c43e",
+ "x-ms-ratelimit-remaining-subscription-writes": "1190",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182632Z:5529da3d-2e35-4306-a8fa-31c62d04c43e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-backup-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A25%3A51.1898259Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A26%3A31.8786537Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:25:17.7981310Z"
+ "CreatedOnDate": "2022-07-25T18:25:58.0231055Z"
},
"properties": {
"provisioningState": "Patching",
"enabled": true,
- "backupPolicyId": "350e710a-e0bb-11ec-85be-26652f4d094e",
+ "backupPolicyId": "3b3af32a-0c47-11ed-9cea-16b230efae0e",
"dailyBackupsToKeep": 0,
"weeklyBackupsToKeep": 1,
- "monthlyBackupsToKeep": 0
+ "monthlyBackupsToKeep": 0,
+ "volumesAssigned": 0
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:25:19.2098969Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:25:59.2274263Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:25:19.2098969Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:25:59.2274263Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/75674746-de35-43a0-bb4a-1f3cfaa13be2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4c1e3e15-eb44-4922-ad7d-34947c8962b1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -600,7 +621,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:26:20 GMT",
+ "Date": "Mon, 25 Jul 2022 18:27:02 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -608,31 +629,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f36117a5-9ac3-455b-ae09-ee5709e873e6",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082621Z:f36117a5-9ac3-455b-ae09-ee5709e873e6",
+ "x-ms-correlation-request-id": "7ea9e62a-ae35-4181-a319-022f37f9c2cd",
+ "x-ms-ratelimit-remaining-subscription-reads": "11955",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182702Z:7ea9e62a-ae35-4181-a319-022f37f9c2cd",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/75674746-de35-43a0-bb4a-1f3cfaa13be2",
- "name": "75674746-de35-43a0-bb4a-1f3cfaa13be2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4c1e3e15-eb44-4922-ad7d-34947c8962b1",
+ "name": "4c1e3e15-eb44-4922-ad7d-34947c8962b1",
"status": "Succeeded",
- "startTime": "2022-05-31T08:25:51.1915111Z",
- "endTime": "2022-05-31T08:25:51.7231952Z",
+ "startTime": "2022-07-25T18:26:31.8717443Z",
+ "endTime": "2022-07-25T18:26:32.0748629Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74/backupPolicies/sdk-py-tests-backup-policy-1"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -640,8 +661,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:26:21 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T08%3A25%3A51.7205249Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:27:02 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A26%3A32.0675419Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -649,76 +670,77 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "629947d6-3ed4-471b-aa73-c29baf7c69f8",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082621Z:629947d6-3ed4-471b-aa73-c29baf7c69f8",
+ "x-ms-correlation-request-id": "2810ec5c-1d3d-4c25-aa62-681551e5ed89",
+ "x-ms-ratelimit-remaining-subscription-reads": "11954",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182702Z:2810ec5c-1d3d-4c25-aa62-681551e5ed89",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-backup-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A25%3A51.7205249Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A26%3A32.0675419Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:25:50.9414457Z"
+ "CreatedOnDate": "2022-07-25T18:26:31.5779887Z"
},
"properties": {
"provisioningState": "Succeeded",
"enabled": true,
- "backupPolicyId": "350e710a-e0bb-11ec-85be-26652f4d094e",
+ "backupPolicyId": "3b3af32a-0c47-11ed-9cea-16b230efae0e",
"dailyBackupsToKeep": 0,
"weeklyBackupsToKeep": 1,
- "monthlyBackupsToKeep": 0
+ "monthlyBackupsToKeep": 0,
+ "volumesAssigned": 0
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:25:19.2098969Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:25:59.2274263Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:25:51.0851941Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:26:31.7479555Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/06b05ae2-d45b-411f-8e93-ff2a8a52fb8d?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e991e819-85aa-4acc-83d2-859ee8f625cc?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 08:26:21 GMT",
+ "Date": "Mon, 25 Jul 2022 18:27:03 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06b05ae2-d45b-411f-8e93-ff2a8a52fb8d?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e991e819-85aa-4acc-83d2-859ee8f625cc?api-version=2022-03-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": "405417aa-3592-4dc7-8f5f-ec0c189cbe85",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082622Z:405417aa-3592-4dc7-8f5f-ec0c189cbe85",
+ "x-ms-correlation-request-id": "47f4b910-46e4-46bb-9862-3efd2980f76d",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182703Z:47f4b910-46e4-46bb-9862-3efd2980f76d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06b05ae2-d45b-411f-8e93-ff2a8a52fb8d?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e991e819-85aa-4acc-83d2-859ee8f625cc?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -726,7 +748,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:26:51 GMT",
+ "Date": "Mon, 25 Jul 2022 18:27:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -734,31 +756,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "074759dd-6709-433f-9bf7-36a39dab2da8",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082652Z:074759dd-6709-433f-9bf7-36a39dab2da8",
+ "x-ms-correlation-request-id": "5018a0ac-e299-4ee9-b6fb-a5e5aa11ea8e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11953",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182733Z:5018a0ac-e299-4ee9-b6fb-a5e5aa11ea8e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06b05ae2-d45b-411f-8e93-ff2a8a52fb8d",
- "name": "06b05ae2-d45b-411f-8e93-ff2a8a52fb8d",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e991e819-85aa-4acc-83d2-859ee8f625cc",
+ "name": "e991e819-85aa-4acc-83d2-859ee8f625cc",
"status": "Succeeded",
- "startTime": "2022-05-31T08:26:22.2665543Z",
- "endTime": "2022-05-31T08:26:22.8915507Z",
+ "startTime": "2022-07-25T18:27:03.2284858Z",
+ "endTime": "2022-07-25T18:27:03.4159836Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74/backupPolicies/sdk-py-tests-backup-policy-1"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06b05ae2-d45b-411f-8e93-ff2a8a52fb8d?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e991e819-85aa-4acc-83d2-859ee8f625cc?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -766,7 +788,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:26:51 GMT",
+ "Date": "Mon, 25 Jul 2022 18:27:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -774,108 +796,109 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fc2b623c-f8ef-4c0e-aca2-3113349c4ab1",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082652Z:fc2b623c-f8ef-4c0e-aca2-3113349c4ab1",
+ "x-ms-correlation-request-id": "bd576ae6-e804-4f0d-8b5f-ba690c2eee41",
+ "x-ms-ratelimit-remaining-subscription-reads": "11952",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182733Z:bd576ae6-e804-4f0d-8b5f-ba690c2eee41",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-backup-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A26%3A22.2522192Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A27%3A03.2170622Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:25:50.9414457Z"
+ "CreatedOnDate": "2022-07-25T18:26:31.5779887Z"
},
"properties": {
"enabled": true,
- "backupPolicyId": "350e710a-e0bb-11ec-85be-26652f4d094e",
+ "backupPolicyId": "3b3af32a-0c47-11ed-9cea-16b230efae0e",
"dailyBackupsToKeep": 0,
"weeklyBackupsToKeep": 1,
"monthlyBackupsToKeep": 0,
"yearlyBackupsToKeep": 0,
+ "volumesAssigned": 0,
"provisioningState": "Deleting"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:25:19.2098969Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:25:59.2274263Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:25:51.0851941Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:26:31.7479555Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74/backupPolicies/sdk-py-tests-backup-policy-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "287",
+ "Content-Length": "293",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:26:54 GMT",
+ "Date": "Mon, 25 Jul 2022 18:27:35 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0d5fa05e-a66d-4530-81d8-190e9537799d",
+ "x-ms-correlation-request-id": "a92d9e1f-dbb2-415e-8147-e3892107d282",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082654Z:0d5fa05e-a66d-4530-81d8-190e9537799d"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182736Z:a92d9e1f-dbb2-415e-8147-e3892107d282"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/backupPolicies/sdk-py-tests-backup-policy-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "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\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/4d124db1-568b-4735-8279-69fcaae95594?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4365c61e-594b-406e-ab8c-53d6d11a1728?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 08:26:54 GMT",
+ "Date": "Mon, 25 Jul 2022 18:27:36 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4d124db1-568b-4735-8279-69fcaae95594?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4365c61e-594b-406e-ab8c-53d6d11a1728?api-version=2022-03-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": "acf04a0e-c718-4138-b4c8-798727ec3d9f",
- "x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082655Z:acf04a0e-c718-4138-b4c8-798727ec3d9f",
+ "x-ms-correlation-request-id": "e1ca6660-f147-4341-bae4-1845b2589180",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182736Z:e1ca6660-f147-4341-bae4-1845b2589180",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4d124db1-568b-4735-8279-69fcaae95594?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4365c61e-594b-406e-ab8c-53d6d11a1728?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -883,7 +906,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:27:25 GMT",
+ "Date": "Mon, 25 Jul 2022 18:28:06 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -891,31 +914,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fae54393-699f-4bef-bce2-a2dd3b37f105",
- "x-ms-ratelimit-remaining-subscription-reads": "11987",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082725Z:fae54393-699f-4bef-bce2-a2dd3b37f105",
+ "x-ms-correlation-request-id": "c1d35df1-78d1-4db4-8a1f-bde1b03ddff2",
+ "x-ms-ratelimit-remaining-subscription-reads": "11950",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182807Z:c1d35df1-78d1-4db4-8a1f-bde1b03ddff2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4d124db1-568b-4735-8279-69fcaae95594",
- "name": "4d124db1-568b-4735-8279-69fcaae95594",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4365c61e-594b-406e-ab8c-53d6d11a1728",
+ "name": "4365c61e-594b-406e-ab8c-53d6d11a1728",
"status": "Succeeded",
- "startTime": "2022-05-31T08:26:55.4033573Z",
- "endTime": "2022-05-31T08:26:55.465849Z",
+ "startTime": "2022-07-25T18:27:36.727072Z",
+ "endTime": "2022-07-25T18:27:36.7583561Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4d124db1-568b-4735-8279-69fcaae95594?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4365c61e-594b-406e-ab8c-53d6d11a1728?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -923,7 +946,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:27:25 GMT",
+ "Date": "Mon, 25 Jul 2022 18:28:06 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -931,19 +954,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "11aa1f4c-7f09-4c7f-8e5d-da5cb5a34953",
- "x-ms-ratelimit-remaining-subscription-reads": "11986",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082725Z:11aa1f4c-7f09-4c7f-8e5d-da5cb5a34953",
+ "x-ms-correlation-request-id": "10a2f913-ff0b-4e57-a423-06313a4fe9de",
+ "x-ms-ratelimit-remaining-subscription-reads": "11949",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182807Z:10a2f913-ff0b-4e57-a423-06313a4fe9de",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T08%3A26%3A55.400428Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A27%3A36.7201906Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T08:24:42.8196599Z"
+ "CreatedOnDate": "2022-07-25T18:25:23.8678521Z"
},
"properties": {
"encryption": {
@@ -953,42 +976,42 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T08:24:45.4283287Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T18:25:25.7574887Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T08:24:45.4283287Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T18:25:25.7574887Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "249",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 08:27:25 GMT",
+ "Date": "Mon, 25 Jul 2022 18:28:06 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "61099b5a-1aec-462e-a406-ea64e35d256c",
+ "x-ms-correlation-request-id": "7da26f71-7613-43ad-8173-84f75d9262eb",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T082726Z:61099b5a-1aec-462e-a406-ea64e35d256c"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T182807Z:7da26f71-7613-43ad-8173-84f75d9262eb"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
}
}
}
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 3820fbca3a0a..fb1d03f46911 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 23 May 2022 13:26:54 GMT",
+ "Date": "Wed, 27 Jul 2022 12:47: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.12794.4 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 23 May 2022 13:26:54 GMT",
+ "Date": "Wed, 27 Jul 2022 12:47: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.12744.11 - NEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - NEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "4cffbe2a-c443-4ceb-a660-07caf5886c2c",
+ "client-request-id": "03cbffa6-59e0-4e30-bf44-bc4d1d2590e7",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "4cffbe2a-c443-4ceb-a660-07caf5886c2c",
+ "client-request-id": "03cbffa6-59e0-4e30-bf44-bc4d1d2590e7",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:26:54 GMT",
+ "Date": "Wed, 27 Jul 2022 12:47:32 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12794.4 - NEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - NEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,45 +213,45 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "23",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2"
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/85015da5-4043-4504-8c13-4e815d40bb6f?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/99a6b899-f487-4074-be4a-8c5b0256ef0a?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "698",
+ "Content-Length": "702",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:27:03 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T13%3A27%3A02.957058Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 12:47:41 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T12%3A47%3A40.4219361Z\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": "6b10f9b9-5590-425e-b364-68e39298f2d2",
+ "x-ms-correlation-request-id": "ec62db42-ad2d-4d05-beb3-b1a0d6f858d9",
"x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T132704Z:6b10f9b9-5590-425e-b364-68e39298f2d2",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T124741Z:ec62db42-ad2d-4d05-beb3-b1a0d6f858d9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A27%3A02.957058Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A47%3A40.4219361Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:26:58.4097907Z"
+ "CreatedOnDate": "2022-07-27T12:47:35.2278325Z"
},
"properties": {
"provisioningState": "Creating"
@@ -258,21 +259,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T13:27:02.2171494Z",
+ "createdAt": "2022-07-27T12:47:39.4594488Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:27:02.2171494Z"
+ "lastModifiedAt": "2022-07-27T12:47:39.4594488Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/85015da5-4043-4504-8c13-4e815d40bb6f?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/99a6b899-f487-4074-be4a-8c5b0256ef0a?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +281,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:27:33 GMT",
+ "Date": "Wed, 27 Jul 2022 12:48:11 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +289,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1dfdb871-2389-49ee-95fd-2f4542c542e3",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T132734Z:1dfdb871-2389-49ee-95fd-2f4542c542e3",
+ "x-ms-correlation-request-id": "aab98eff-3c45-46ec-b456-f0ccae7509ee",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T124811Z:aab98eff-3c45-46ec-b456-f0ccae7509ee",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/85015da5-4043-4504-8c13-4e815d40bb6f",
- "name": "85015da5-4043-4504-8c13-4e815d40bb6f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/99a6b899-f487-4074-be4a-8c5b0256ef0a",
+ "name": "99a6b899-f487-4074-be4a-8c5b0256ef0a",
"status": "Succeeded",
- "startTime": "2022-05-23T13:27:02.9531351Z",
- "endTime": "2022-05-23T13:27:02.9843717Z",
+ "startTime": "2022-07-27T12:47:40.4234773Z",
+ "endTime": "2022-07-27T12:47:40.4702854Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +321,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:27:34 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T13%3A27%3A02.9886279Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 12:48:11 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T12%3A47%3A40.4853481Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,35 +330,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5ea6377c-f95e-44ba-b8f0-998ea6ee9ba4",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T132735Z:5ea6377c-f95e-44ba-b8f0-998ea6ee9ba4",
+ "x-ms-correlation-request-id": "de6f9f2b-d79e-415b-b326-7106c34a4b85",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T124812Z:de6f9f2b-d79e-415b-b326-7106c34a4b85",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A27%3A02.9886279Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A47%3A40.4853481Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:26:58.4097907Z"
+ "CreatedOnDate": "2022-07-27T12:47:35.2278325Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -370,26 +371,26 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T13:27:02.2171494Z",
+ "createdAt": "2022-07-27T12:47:39.4594488Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:27:02.2171494Z"
+ "lastModifiedAt": "2022-07-27T12:47:39.4594488Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "150",
+ "Content-Length": "138",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"size": 4398046511104,
"serviceLevel": "Premium",
@@ -399,30 +400,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3409747e-4eb1-464a-a1da-9eaa54eeb27a?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51cc8d44-ac1a-424b-9b0f-55ec0ce9a47b?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "917",
+ "Content-Length": "918",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:27:37 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T13%3A27%3A37.5543027Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 12:48:18 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T12%3A48%3A17.8145424Z\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": "65943a41-c880-42fc-aec1-e141abb68fd4",
+ "x-ms-correlation-request-id": "72b8865d-9401-40d9-8b4d-68432bc2319b",
"x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T132738Z:65943a41-c880-42fc-aec1-e141abb68fd4",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T124819Z:72b8865d-9401-40d9-8b4d-68432bc2319b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A27%3A37.5543027Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A48%3A17.8145424Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:27:35.3438450Z"
+ "CreatedOnDate": "2022-07-27T12:48:15.7159795Z"
},
"properties": {
"serviceLevel": "Premium",
@@ -436,21 +437,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T13:27:37.1847873Z",
+ "createdAt": "2022-07-27T12:48:17.6240754Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:27:37.1847873Z"
+ "lastModifiedAt": "2022-07-27T12:48:17.6240754Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3409747e-4eb1-464a-a1da-9eaa54eeb27a?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51cc8d44-ac1a-424b-9b0f-55ec0ce9a47b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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, 23 May 2022 13:28:07 GMT",
+ "Date": "Wed, 27 Jul 2022 12:48:49 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -466,31 +467,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6b2acc07-0c4a-481d-b3ba-cb4d8e33b469",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T132808Z:6b2acc07-0c4a-481d-b3ba-cb4d8e33b469",
+ "x-ms-correlation-request-id": "de9a92a3-07ec-4c53-9968-761608cb59df",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T124849Z:de9a92a3-07ec-4c53-9968-761608cb59df",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3409747e-4eb1-464a-a1da-9eaa54eeb27a",
- "name": "3409747e-4eb1-464a-a1da-9eaa54eeb27a",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51cc8d44-ac1a-424b-9b0f-55ec0ce9a47b",
+ "name": "51cc8d44-ac1a-424b-9b0f-55ec0ce9a47b",
"status": "Succeeded",
- "startTime": "2022-05-23T13:27:37.5515705Z",
- "endTime": "2022-05-23T13:27:38.2703202Z",
+ "startTime": "2022-07-27T12:48:17.8096603Z",
+ "endTime": "2022-07-27T12:48:18.2158392Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -498,8 +499,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:28:08 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T13%3A27%3A38.268777Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 12:48:49 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T12%3A48%3A18.2227401Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -507,22 +508,22 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c8451a27-0af5-4d78-9809-88b1e283dc28",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T132809Z:c8451a27-0af5-4d78-9809-88b1e283dc28",
+ "x-ms-correlation-request-id": "b25ce988-091d-415f-a83a-f1f2355b0b13",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T124850Z:b25ce988-091d-415f-a83a-f1f2355b0b13",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A27%3A38.268777Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A48%3A18.2227401Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:27:35.3438450Z"
+ "CreatedOnDate": "2022-07-27T12:48:15.7159795Z"
},
"properties": {
- "poolId": "0699f009-0f2e-e3b4-9726-92b9ff472fc8",
+ "poolId": "5981b9ab-1e60-9a73-99d0-f2c93cd02657",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
@@ -531,25 +532,17 @@
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T13:27:37.1847873Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:27:37.1847873Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b/capacityPools?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -557,7 +550,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:28:09 GMT",
+ "Date": "Wed, 27 Jul 2022 12:48:50 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -565,24 +558,24 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0e9d9356-9d92-48b6-b866-81b37e2d1c2d",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T132810Z:0e9d9356-9d92-48b6-b866-81b37e2d1c2d",
+ "x-ms-correlation-request-id": "4c8d1cde-f34c-47d5-9b16-b91ae6477e75",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T124850Z:4c8d1cde-f34c-47d5-9b16-b91ae6477e75",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A27%3A38.268777Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A48%3A18.2227401Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:27:35.3438450Z"
+ "CreatedOnDate": "2022-07-27T12:48:15.7159795Z"
},
"properties": {
- "poolId": "0699f009-0f2e-e3b4-9726-92b9ff472fc8",
+ "poolId": "5981b9ab-1e60-9a73-99d0-f2c93cd02657",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
@@ -591,57 +584,49 @@
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T13:27:37.1847873Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:27:37.1847873Z"
}
}
]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/df4598cd-59f0-4f13-80b2-1e6f94d9d524?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ef08e9f9-febf-4f66-b309-fa760099306d?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 13:28:19 GMT",
+ "Date": "Wed, 27 Jul 2022 12:49:01 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/df4598cd-59f0-4f13-80b2-1e6f94d9d524?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ef08e9f9-febf-4f66-b309-fa760099306d?api-version=2022-03-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": "8d82dceb-51c4-460b-87f7-153e0de50481",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T132820Z:8d82dceb-51c4-460b-87f7-153e0de50481",
+ "x-ms-correlation-request-id": "50dc1762-8eae-434b-8801-fad7e82f0139",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T124901Z:50dc1762-8eae-434b-8801-fad7e82f0139",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/df4598cd-59f0-4f13-80b2-1e6f94d9d524?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ef08e9f9-febf-4f66-b309-fa760099306d?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -649,7 +634,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:28:50 GMT",
+ "Date": "Wed, 27 Jul 2022 12:49:31 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -657,31 +642,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2ceda6ee-12ba-4012-839e-9b79efca86fc",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T132850Z:2ceda6ee-12ba-4012-839e-9b79efca86fc",
+ "x-ms-correlation-request-id": "48c459c1-ae6a-4f3b-8db0-973253a74a99",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T124931Z:48c459c1-ae6a-4f3b-8db0-973253a74a99",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/df4598cd-59f0-4f13-80b2-1e6f94d9d524",
- "name": "df4598cd-59f0-4f13-80b2-1e6f94d9d524",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ef08e9f9-febf-4f66-b309-fa760099306d",
+ "name": "ef08e9f9-febf-4f66-b309-fa760099306d",
"status": "Succeeded",
- "startTime": "2022-05-23T13:28:20.5697841Z",
- "endTime": "2022-05-23T13:28:29.3925341Z",
+ "startTime": "2022-07-27T12:49:01.1145657Z",
+ "endTime": "2022-07-27T12:49:01.3802164Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/df4598cd-59f0-4f13-80b2-1e6f94d9d524?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ef08e9f9-febf-4f66-b309-fa760099306d?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -689,7 +674,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:28:51 GMT",
+ "Date": "Wed, 27 Jul 2022 12:49:31 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -697,181 +682,173 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b6088cfc-8cdb-4a61-8043-1d9d93b19ec4",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T132851Z:b6088cfc-8cdb-4a61-8043-1d9d93b19ec4",
+ "x-ms-correlation-request-id": "28b63a56-174a-41e2-871a-0e505c5b749e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T124931Z:28b63a56-174a-41e2-871a-0e505c5b749e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A28%3A20.5669954Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A49%3A01.1111768Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:27:35.3438450Z"
+ "CreatedOnDate": "2022-07-27T12:48:15.7159795Z"
},
"properties": {
- "poolId": "0699f009-0f2e-e3b4-9726-92b9ff472fc8",
+ "poolId": "5981b9ab-1e60-9a73-99d0-f2c93cd02657",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b/capacityPools/sdk-py-tests-pool-1",
"qosType": "Auto",
"totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T13:27:37.1847873Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:27:37.1847873Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 13:29:02 GMT",
+ "Date": "Wed, 27 Jul 2022 12:49:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "10fa03da-bcf2-4a61-ade2-665717c42a9b",
- "x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T132902Z:10fa03da-bcf2-4a61-ade2-665717c42a9b"
+ "x-ms-correlation-request-id": "33273329-143f-47d5-be46-fbe20c9e7734",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T124942Z:33273329-143f-47d5-be46-fbe20c9e7734"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 13:29:12 GMT",
+ "Date": "Wed, 27 Jul 2022 12:49:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d776d26b-32fc-40a7-a0e2-a40e0aca05d5",
- "x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T132912Z:d776d26b-32fc-40a7-a0e2-a40e0aca05d5"
+ "x-ms-correlation-request-id": "61f7d388-020f-4921-b39f-3403762a4ef3",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T124952Z:61f7d388-020f-4921-b39f-3403762a4ef3"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 13:29:23 GMT",
+ "Date": "Wed, 27 Jul 2022 12:50:01 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "76b9dcd2-41fe-4b6a-8bd2-20cf122db360",
- "x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T132923Z:76b9dcd2-41fe-4b6a-8bd2-20cf122db360"
+ "x-ms-correlation-request-id": "d20dc538-9328-4c77-86b4-2ef9bbe1b223",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125002Z:d20dc538-9328-4c77-86b4-2ef9bbe1b223"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 13:29:33 GMT",
+ "Date": "Wed, 27 Jul 2022 12:50:12 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "792bf768-c89c-474f-b133-12d5d1d4746e",
- "x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T132933Z:792bf768-c89c-474f-b133-12d5d1d4746e"
+ "x-ms-correlation-request-id": "b21c4e85-ecc5-477f-89ab-4a6f8d810250",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125013Z:b21c4e85-ecc5-477f-89ab-4a6f8d810250"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:29:43 GMT",
+ "Date": "Wed, 27 Jul 2022 12:50:22 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "21603694-a336-4f06-9a5e-2332d6ded2ef",
+ "x-ms-correlation-request-id": "8fc8cf30-06d6-4f83-81ac-b6144b480c6f",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T132943Z:21603694-a336-4f06-9a5e-2332d6ded2ef"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125023Z:8fc8cf30-06d6-4f83-81ac-b6144b480c6f"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b/capacityPools?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -879,7 +856,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:29:44 GMT",
+ "Date": "Wed, 27 Jul 2022 12:50:23 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -887,9 +864,9 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2f4845e6-ef7a-4f1f-ae57-1cb1d66639d0",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T132945Z:2f4845e6-ef7a-4f1f-ae57-1cb1d66639d0",
+ "x-ms-correlation-request-id": "a1e2ab39-4358-46d2-a34d-282828806fde",
+ "x-ms-ratelimit-remaining-subscription-reads": "11984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125024Z:a1e2ab39-4358-46d2-a34d-282828806fde",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -897,43 +874,43 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/27a562d6-090c-4db9-90e3-42c9be25724c?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7a8fe586-2503-4f8f-8e64-80b081660e58?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 13:29:45 GMT",
+ "Date": "Wed, 27 Jul 2022 12:50:24 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/27a562d6-090c-4db9-90e3-42c9be25724c?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7a8fe586-2503-4f8f-8e64-80b081660e58?api-version=2022-03-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": "702ac167-d7cd-4708-bea6-612680ca35ad",
- "x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T132945Z:702ac167-d7cd-4708-bea6-612680ca35ad",
+ "x-ms-correlation-request-id": "609d1484-2b61-467a-ae77-e47cfa109718",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125025Z:609d1484-2b61-467a-ae77-e47cfa109718",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/27a562d6-090c-4db9-90e3-42c9be25724c?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7a8fe586-2503-4f8f-8e64-80b081660e58?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -941,7 +918,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:30:15 GMT",
+ "Date": "Wed, 27 Jul 2022 12:50:55 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -949,31 +926,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "cc1ac670-4202-469a-9ab3-f35669af024d",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133015Z:cc1ac670-4202-469a-9ab3-f35669af024d",
+ "x-ms-correlation-request-id": "e9fccab0-878f-4bc5-bb78-225c4d403d10",
+ "x-ms-ratelimit-remaining-subscription-reads": "11983",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125055Z:e9fccab0-878f-4bc5-bb78-225c4d403d10",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/27a562d6-090c-4db9-90e3-42c9be25724c",
- "name": "27a562d6-090c-4db9-90e3-42c9be25724c",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7a8fe586-2503-4f8f-8e64-80b081660e58",
+ "name": "7a8fe586-2503-4f8f-8e64-80b081660e58",
"status": "Succeeded",
- "startTime": "2022-05-23T13:29:45.5439043Z",
- "endTime": "2022-05-23T13:29:45.5751503Z",
+ "startTime": "2022-07-27T12:50:25.3448914Z",
+ "endTime": "2022-07-27T12:50:25.5324512Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/27a562d6-090c-4db9-90e3-42c9be25724c?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7a8fe586-2503-4f8f-8e64-80b081660e58?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -981,7 +958,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:30:15 GMT",
+ "Date": "Wed, 27 Jul 2022 12:50:56 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -989,19 +966,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fc859bea-026f-401b-9894-37d7e3835b68",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133016Z:fc859bea-026f-401b-9894-37d7e3835b68",
+ "x-ms-correlation-request-id": "529d3870-e4eb-4cc6-bea8-907c509af42b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125056Z:529d3870-e4eb-4cc6-bea8-907c509af42b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A29%3A45.5422304Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A50%3A25.3482933Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:26:58.4097907Z"
+ "CreatedOnDate": "2022-07-27T12:47:35.2278325Z"
},
"properties": {
"encryption": {
@@ -1012,41 +989,41 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T13:27:02.2171494Z",
+ "createdAt": "2022-07-27T12:47:39.4594488Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:27:02.2171494Z"
+ "lastModifiedAt": "2022-07-27T12:47:39.4594488Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:30:18 GMT",
+ "Date": "Wed, 27 Jul 2022 12:50:56 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6f2beb98-ada4-4bd2-a89b-049da9426ef0",
+ "x-ms-correlation-request-id": "69ce1802-c4ba-4efc-9de4-a52824ee2559",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133018Z:6f2beb98-ada4-4bd2-a89b-049da9426ef0"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125056Z:69ce1802-c4ba-4efc-9de4-a52824ee2559"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
}
}
}
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 af303d7692e7..df374c530d3b 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -17,13 +17,12 @@
"Cache-Control": "max-age=86400, private",
"Content-Length": "1753",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:37:49 GMT",
+ "Date": "Wed, 27 Jul 2022 12:56: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.12794.4 - WEULR2 ProdSlices",
- "x-ms-request-id": "7aa2f0b8-d2f2-4f07-809a-4d4de648bb00",
+ "x-ms-ests-server": "2.1.13355.6 - NEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -102,7 +101,7 @@
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -112,13 +111,12 @@
"Cache-Control": "max-age=86400, private",
"Content-Length": "945",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:37:50 GMT",
+ "Date": "Wed, 27 Jul 2022 12:56: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.12744.11 - NEULR1 ProdSlices",
- "x-ms-request-id": "e515f64f-efd1-4d43-8c6b-b74cc5eb5700",
+ "x-ms-ests-server": "2.1.13315.8 - WEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -174,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "e5b00108-5606-4b4d-900e-e24fcba7b12d",
+ "client-request-id": "83b0c22e-269e-42cd-9948-af4c0a7c48ff",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "e5b00108-5606-4b4d-900e-e24fcba7b12d",
+ "client-request-id": "83b0c22e-269e-42cd-9948-af4c0a7c48ff",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:37:50 GMT",
+ "Date": "Wed, 27 Jul 2022 12:56:20 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -202,8 +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.12794.4 - NEULR1 ProdSlices",
- "x-ms-request-id": "e57bb160-d52b-4999-965f-08aa3220a000",
+ "x-ms-ests-server": "2.1.13355.6 - WEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -215,48 +213,45 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "Authorization": "Sanitized",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "23",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
- "x-ms-client-request-id": "8986f3b8-da9d-11ec-bba3-acde48001122"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2"
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e7a915eb-68c9-4723-907e-139a60f23d3b?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/06ad885b-f641-4769-93e1-78e037430604?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "699",
+ "Content-Length": "702",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:37:58 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T13%3A37%3A58.7026262Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 12:56:23 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T12%3A56%3A23.6079243Z\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": "e916f913-fd33-416a-a283-03bf2afd6c11",
- "x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-request-id": "25a5ea7e-5117-410a-ac87-ff8894a56d0c",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133759Z:e916f913-fd33-416a-a283-03bf2afd6c11",
+ "x-ms-correlation-request-id": "9f4c62f9-de63-451c-8087-8f4e0cbadba9",
+ "x-ms-ratelimit-remaining-subscription-writes": "1194",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125624Z:9f4c62f9-de63-451c-8087-8f4e0cbadba9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A37%3A58.7026262Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A56%3A23.6079243Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:37:54.3791735Z"
+ "CreatedOnDate": "2022-07-27T12:56:21.4929663Z"
},
"properties": {
"provisioningState": "Creating"
@@ -264,23 +259,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T13:37:57.9328728Z",
+ "createdAt": "2022-07-27T12:56:23.3842876Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:37:57.9328728Z"
+ "lastModifiedAt": "2022-07-27T12:56:23.3842876Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e7a915eb-68c9-4723-907e-139a60f23d3b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/06ad885b-f641-4769-93e1-78e037430604?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
- "Authorization": "Sanitized",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
- "x-ms-client-request-id": "8986f3b8-da9d-11ec-bba3-acde48001122"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -288,7 +281,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:38:30 GMT",
+ "Date": "Wed, 27 Jul 2022 12:56:55 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -296,34 +289,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "56b6ab08-6907-4b76-9e95-3542e00f6a2c",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-request-id": "ff34c0b1-dc75-434f-a751-c270db193606",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133830Z:56b6ab08-6907-4b76-9e95-3542e00f6a2c",
+ "x-ms-correlation-request-id": "fc7f74bb-ce6b-4125-8193-ee258601806e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11964",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125655Z:fc7f74bb-ce6b-4125-8193-ee258601806e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e7a915eb-68c9-4723-907e-139a60f23d3b",
- "name": "e7a915eb-68c9-4723-907e-139a60f23d3b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/06ad885b-f641-4769-93e1-78e037430604",
+ "name": "06ad885b-f641-4769-93e1-78e037430604",
"status": "Succeeded",
- "startTime": "2022-05-23T13:37:58.7060475Z",
- "endTime": "2022-05-23T13:37:58.7373341Z",
+ "startTime": "2022-07-27T12:56:23.6122121Z",
+ "endTime": "2022-07-27T12:56:23.6278431Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
- "Authorization": "Sanitized",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
- "x-ms-client-request-id": "8986f3b8-da9d-11ec-bba3-acde48001122"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -331,8 +321,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:38:30 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T13%3A37%3A58.7409816Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 12:56:55 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T12%3A56%3A23.6431159Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -340,36 +330,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a4e601a7-1422-42b0-ab71-8f682c66875c",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-request-id": "f5275df4-b070-4d66-bcce-2e41d31aeddc",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133830Z:a4e601a7-1422-42b0-ab71-8f682c66875c",
+ "x-ms-correlation-request-id": "1546206c-a30d-4ad0-ac2d-6a5c13e7ec40",
+ "x-ms-ratelimit-remaining-subscription-reads": "11963",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125655Z:1546206c-a30d-4ad0-ac2d-6a5c13e7ec40",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A37%3A58.7409816Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A56%3A23.6431159Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:37:54.3791735Z"
+ "CreatedOnDate": "2022-07-27T12:56:21.4929663Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -382,28 +371,26 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T13:37:57.9328728Z",
+ "createdAt": "2022-07-27T12:56:23.3842876Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:37:57.9328728Z"
+ "lastModifiedAt": "2022-07-27T12:56:23.3842876Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "Authorization": "Sanitized",
"Connection": "keep-alive",
- "Content-Length": "150",
+ "Content-Length": "138",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
- "x-ms-client-request-id": "a2289e1c-da9d-11ec-bba3-acde48001122"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"size": 4398046511104,
"serviceLevel": "Premium",
@@ -413,31 +400,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/082b609c-ae73-4ef3-b7a1-c74979e141b0?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ade8fb67-c871-4b95-a6fb-181972b13b27?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "917",
+ "Content-Length": "918",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:38:34 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T13%3A38%3A33.1118756Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 12:56:58 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T12%3A56%3A57.2482136Z\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": "8d7f6777-1c76-4f0b-9b13-d23bb8a16df5",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-request-id": "173bd0ee-380b-4751-9708-5d5f8e774d07",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133834Z:8d7f6777-1c76-4f0b-9b13-d23bb8a16df5",
+ "x-ms-correlation-request-id": "9b9f497a-dec5-439a-add4-1ee5bb2453bc",
+ "x-ms-ratelimit-remaining-subscription-writes": "1193",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125658Z:9b9f497a-dec5-439a-add4-1ee5bb2453bc",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A38%3A33.1118756Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A56%3A57.2482136Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:38:31.0862825Z"
+ "CreatedOnDate": "2022-07-27T12:56:55.9711023Z"
},
"properties": {
"serviceLevel": "Premium",
@@ -451,23 +437,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T13:38:32.7538525Z",
+ "createdAt": "2022-07-27T12:56:57.0387835Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:38:32.7538525Z"
+ "lastModifiedAt": "2022-07-27T12:56:57.0387835Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/082b609c-ae73-4ef3-b7a1-c74979e141b0?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ade8fb67-c871-4b95-a6fb-181972b13b27?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
- "Authorization": "Sanitized",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
- "x-ms-client-request-id": "a2289e1c-da9d-11ec-bba3-acde48001122"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -475,7 +459,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:39:04 GMT",
+ "Date": "Wed, 27 Jul 2022 12:57:28 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -483,34 +467,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c7acb61e-66e5-4b8c-94fd-f78e04d99f31",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-request-id": "61fb5dbf-42a0-4036-a96a-597c12b437eb",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133904Z:c7acb61e-66e5-4b8c-94fd-f78e04d99f31",
+ "x-ms-correlation-request-id": "1a3a6f71-8f32-4d55-8606-d74bd831711d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11962",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125728Z:1a3a6f71-8f32-4d55-8606-d74bd831711d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/082b609c-ae73-4ef3-b7a1-c74979e141b0",
- "name": "082b609c-ae73-4ef3-b7a1-c74979e141b0",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ade8fb67-c871-4b95-a6fb-181972b13b27",
+ "name": "ade8fb67-c871-4b95-a6fb-181972b13b27",
"status": "Succeeded",
- "startTime": "2022-05-23T13:38:33.1219052Z",
- "endTime": "2022-05-23T13:38:34.0722271Z",
+ "startTime": "2022-07-27T12:56:57.2491574Z",
+ "endTime": "2022-07-27T12:56:57.4679169Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
- "Authorization": "Sanitized",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
- "x-ms-client-request-id": "a2289e1c-da9d-11ec-bba3-acde48001122"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -518,8 +499,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:39:04 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T13%3A38%3A34.0700518Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 12:57:28 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T12%3A56%3A57.4804264Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -527,23 +508,22 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fe4d9f6d-19d4-41a1-9c89-5cb4f8b20f59",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-request-id": "756c9cf5-14df-4508-bf63-2a6ac85a84b5",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133905Z:fe4d9f6d-19d4-41a1-9c89-5cb4f8b20f59",
+ "x-ms-correlation-request-id": "e65706f6-5ec4-4061-8f40-df5db38b747f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11961",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125729Z:e65706f6-5ec4-4061-8f40-df5db38b747f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A38%3A34.0700518Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A56%3A57.4804264Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:38:31.0862825Z"
+ "CreatedOnDate": "2022-07-27T12:56:55.9711023Z"
},
"properties": {
- "poolId": "48ebe790-2cff-2460-576c-585848b1c730",
+ "poolId": "d2735f9c-cd5a-50fe-2145-fb2018ba5f07",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
@@ -552,27 +532,17 @@
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T13:38:32.7538525Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:38:32.7538525Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "Authorization": "Sanitized",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
- "x-ms-client-request-id": "b6b9bcb2-da9d-11ec-bba3-acde48001122"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -580,8 +550,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:39:05 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T13%3A38%3A34.0700518Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 12:57:29 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T12%3A56%3A57.4804264Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -589,23 +559,22 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "93a42468-521f-465d-abcc-4aa81cd71fa1",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-request-id": "e40e2ad2-76a0-43e8-8595-5a8416844db9",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133905Z:93a42468-521f-465d-abcc-4aa81cd71fa1",
+ "x-ms-correlation-request-id": "adb818eb-f869-4064-b1ed-56231a3f0d79",
+ "x-ms-ratelimit-remaining-subscription-reads": "11960",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125729Z:adb818eb-f869-4064-b1ed-56231a3f0d79",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A38%3A34.0700518Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A56%3A57.4804264Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:38:31.0862825Z"
+ "CreatedOnDate": "2022-07-27T12:56:55.9711023Z"
},
"properties": {
- "poolId": "48ebe790-2cff-2460-576c-585848b1c730",
+ "poolId": "d2735f9c-cd5a-50fe-2145-fb2018ba5f07",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
@@ -614,60 +583,47 @@
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T13:38:32.7538525Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:38:32.7538525Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
- "Authorization": "Sanitized",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
- "x-ms-client-request-id": "bcf17d68-da9d-11ec-bba3-acde48001122"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/a1a72260-24e3-4c1c-94e3-ad5e26ae56a0?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0081e6a-4ab5-4297-a271-52d8812f2d21?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 13:39:15 GMT",
+ "Date": "Wed, 27 Jul 2022 12:57:39 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a1a72260-24e3-4c1c-94e3-ad5e26ae56a0?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0081e6a-4ab5-4297-a271-52d8812f2d21?api-version=2022-03-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": "331a33cf-fbfb-4724-8d35-0f8bc61257a0",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-request-id": "331a33cf-fbfb-4724-8d35-0f8bc61257a0",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133916Z:331a33cf-fbfb-4724-8d35-0f8bc61257a0",
+ "x-ms-correlation-request-id": "4ffa06e1-5fa5-4398-a00a-d67a20f002a6",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14975",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125740Z:4ffa06e1-5fa5-4398-a00a-d67a20f002a6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a1a72260-24e3-4c1c-94e3-ad5e26ae56a0?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0081e6a-4ab5-4297-a271-52d8812f2d21?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
- "Authorization": "Sanitized",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
- "x-ms-client-request-id": "bcf17d68-da9d-11ec-bba3-acde48001122"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -675,7 +631,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:39:45 GMT",
+ "Date": "Wed, 27 Jul 2022 12:58:09 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -683,34 +639,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7212a08a-9343-4961-8ce0-86d53a2392c5",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-request-id": "96833843-11e8-44cf-b17f-df15d91ef3eb",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133946Z:7212a08a-9343-4961-8ce0-86d53a2392c5",
+ "x-ms-correlation-request-id": "d060e87f-8da7-4c6d-973f-309b808439bd",
+ "x-ms-ratelimit-remaining-subscription-reads": "11959",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125810Z:d060e87f-8da7-4c6d-973f-309b808439bd",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a1a72260-24e3-4c1c-94e3-ad5e26ae56a0",
- "name": "a1a72260-24e3-4c1c-94e3-ad5e26ae56a0",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0081e6a-4ab5-4297-a271-52d8812f2d21",
+ "name": "f0081e6a-4ab5-4297-a271-52d8812f2d21",
"status": "Succeeded",
- "startTime": "2022-05-23T13:39:16.3654593Z",
- "endTime": "2022-05-23T13:39:21.1938535Z",
+ "startTime": "2022-07-27T12:57:40.2805063Z",
+ "endTime": "2022-07-27T12:57:40.5929504Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/a1a72260-24e3-4c1c-94e3-ad5e26ae56a0?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0081e6a-4ab5-4297-a271-52d8812f2d21?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
- "Authorization": "Sanitized",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
- "x-ms-client-request-id": "bcf17d68-da9d-11ec-bba3-acde48001122"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -718,7 +671,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:39:46 GMT",
+ "Date": "Wed, 27 Jul 2022 12:58:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -726,232 +679,203 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "42f93e38-ffac-4f00-b451-96abd06aac03",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-request-id": "adcfce3c-7fc5-4fe5-a658-4356fbaaa3be",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133946Z:42f93e38-ffac-4f00-b451-96abd06aac03",
+ "x-ms-correlation-request-id": "a0b87ab8-ea86-4a65-918b-24f302a44ccf",
+ "x-ms-ratelimit-remaining-subscription-reads": "11958",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125811Z:a0b87ab8-ea86-4a65-918b-24f302a44ccf",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A39%3A16.3712682Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A57%3A40.2794466Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:38:31.0862825Z"
+ "CreatedOnDate": "2022-07-27T12:56:55.9711023Z"
},
"properties": {
- "poolId": "48ebe790-2cff-2460-576c-585848b1c730",
+ "poolId": "d2735f9c-cd5a-50fe-2145-fb2018ba5f07",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf/capacityPools/sdk-py-tests-pool-1",
"qosType": "Auto",
"totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T13:38:32.7538525Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:38:32.7538525Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
- "Authorization": "Sanitized",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
- "x-ms-client-request-id": "d58c1bda-da9d-11ec-bba3-acde48001122"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 13:39:56 GMT",
+ "Date": "Wed, 27 Jul 2022 12:58:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "21e84b60-3cb5-4aa1-868a-8583f9647a92",
- "x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-request-id": "21e84b60-3cb5-4aa1-868a-8583f9647a92",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133957Z:21e84b60-3cb5-4aa1-868a-8583f9647a92"
+ "x-ms-correlation-request-id": "7dae5bb2-0038-4221-8ed0-aabf3f3e5707",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14974",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125821Z:7dae5bb2-0038-4221-8ed0-aabf3f3e5707"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
- "Authorization": "Sanitized",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
- "x-ms-client-request-id": "dbaf0446-da9d-11ec-bba3-acde48001122"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 13:40:06 GMT",
+ "Date": "Wed, 27 Jul 2022 12:58:31 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0d782f9a-b405-4805-856e-88a476a99cd9",
- "x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-request-id": "0d782f9a-b405-4805-856e-88a476a99cd9",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134007Z:0d782f9a-b405-4805-856e-88a476a99cd9"
+ "x-ms-correlation-request-id": "f53fc2ff-0c37-43f4-92c2-2a6dd5a61202",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14973",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125831Z:f53fc2ff-0c37-43f4-92c2-2a6dd5a61202"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
- "Authorization": "Sanitized",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
- "x-ms-client-request-id": "e1e0fdd8-da9d-11ec-bba3-acde48001122"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 13:40:18 GMT",
+ "Date": "Wed, 27 Jul 2022 12:58:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "73518364-5c10-48ac-bea8-c5a6d66ace1e",
- "x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-request-id": "73518364-5c10-48ac-bea8-c5a6d66ace1e",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134018Z:73518364-5c10-48ac-bea8-c5a6d66ace1e"
+ "x-ms-correlation-request-id": "2e0f15fe-7f63-4f78-8845-cfdf932b1f8f",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14972",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125842Z:2e0f15fe-7f63-4f78-8845-cfdf932b1f8f"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
- "Authorization": "Sanitized",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
- "x-ms-client-request-id": "e80e0d36-da9d-11ec-bba3-acde48001122"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 13:40:28 GMT",
+ "Date": "Wed, 27 Jul 2022 12:58:52 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f7182bf9-3cce-47f0-94a7-c101131768d1",
- "x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-request-id": "f7182bf9-3cce-47f0-94a7-c101131768d1",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134028Z:f7182bf9-3cce-47f0-94a7-c101131768d1"
+ "x-ms-correlation-request-id": "198bf148-0934-4cc8-a36d-629160614947",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14971",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125852Z:198bf148-0934-4cc8-a36d-629160614947"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "Authorization": "Sanitized",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
- "x-ms-client-request-id": "ee3d7cf0-da9d-11ec-bba3-acde48001122"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:40:38 GMT",
+ "Date": "Wed, 27 Jul 2022 12:59:02 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2231d995-a799-4912-aa2d-9c5f10918512",
+ "x-ms-correlation-request-id": "96fe8d68-727a-4df8-aaa1-25f21d9c0cee",
"x-ms-failure-cause": "gateway",
- "x-ms-request-id": "2231d995-a799-4912-aa2d-9c5f10918512",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134038Z:2231d995-a799-4912-aa2d-9c5f10918512"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125902Z:96fe8d68-727a-4df8-aaa1-25f21d9c0cee"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
- "Authorization": "Sanitized",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
- "x-ms-client-request-id": "ee64e61e-da9d-11ec-bba3-acde48001122"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/13e092b7-2b61-43bf-9ffb-03ca6f6757b7?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d577541b-cbf5-4456-9eca-d622fca8210f?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 13:40:40 GMT",
+ "Date": "Wed, 27 Jul 2022 12:59:03 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/13e092b7-2b61-43bf-9ffb-03ca6f6757b7?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d577541b-cbf5-4456-9eca-d622fca8210f?api-version=2022-03-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": "42b9bb37-444b-4b0d-a397-256922826e84",
- "x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-request-id": "42b9bb37-444b-4b0d-a397-256922826e84",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134040Z:42b9bb37-444b-4b0d-a397-256922826e84",
+ "x-ms-correlation-request-id": "86e620bc-3a29-4044-9a55-185d4fa8c5c3",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14970",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125904Z:86e620bc-3a29-4044-9a55-185d4fa8c5c3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/13e092b7-2b61-43bf-9ffb-03ca6f6757b7?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d577541b-cbf5-4456-9eca-d622fca8210f?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
- "Authorization": "Sanitized",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
- "x-ms-client-request-id": "ee64e61e-da9d-11ec-bba3-acde48001122"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -959,7 +883,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:41:10 GMT",
+ "Date": "Wed, 27 Jul 2022 12:59:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -967,34 +891,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "59c04bae-4732-459a-b008-467508375f56",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-request-id": "31b4e86d-d29b-434a-9963-eefbdd636860",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134110Z:59c04bae-4732-459a-b008-467508375f56",
+ "x-ms-correlation-request-id": "ec01f32e-f623-44f9-ad0e-7279e2eaff94",
+ "x-ms-ratelimit-remaining-subscription-reads": "11956",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125934Z:ec01f32e-f623-44f9-ad0e-7279e2eaff94",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/13e092b7-2b61-43bf-9ffb-03ca6f6757b7",
- "name": "13e092b7-2b61-43bf-9ffb-03ca6f6757b7",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d577541b-cbf5-4456-9eca-d622fca8210f",
+ "name": "d577541b-cbf5-4456-9eca-d622fca8210f",
"status": "Succeeded",
- "startTime": "2022-05-23T13:40:39.9628526Z",
- "endTime": "2022-05-23T13:40:39.9941097Z",
+ "startTime": "2022-07-27T12:59:04.1646338Z",
+ "endTime": "2022-07-27T12:59:04.1958907Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/13e092b7-2b61-43bf-9ffb-03ca6f6757b7?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d577541b-cbf5-4456-9eca-d622fca8210f?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
- "Authorization": "Sanitized",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
- "x-ms-client-request-id": "ee64e61e-da9d-11ec-bba3-acde48001122"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1002,7 +923,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:41:10 GMT",
+ "Date": "Wed, 27 Jul 2022 12:59:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1010,20 +931,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "da5db3e2-38a4-4a4f-9f21-17adecaa04fb",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-request-id": "af608cd3-47ed-4a06-8b94-630dcfc13278",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134110Z:da5db3e2-38a4-4a4f-9f21-17adecaa04fb",
+ "x-ms-correlation-request-id": "072b0c98-fbdc-4e09-9f22-41a1cd8fe57a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11955",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125934Z:072b0c98-fbdc-4e09-9f22-41a1cd8fe57a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A40%3A39.9605584Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A59%3A04.1720445Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:37:54.3791735Z"
+ "CreatedOnDate": "2022-07-27T12:56:21.4929663Z"
},
"properties": {
"encryption": {
@@ -1034,44 +954,41 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T13:37:57.9328728Z",
+ "createdAt": "2022-07-27T12:56:23.3842876Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:37:57.9328728Z"
+ "lastModifiedAt": "2022-07-27T12:56:23.3842876Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "Authorization": "Sanitized",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
- "x-ms-client-request-id": "02ab640e-da9e-11ec-bba3-acde48001122"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:41:12 GMT",
+ "Date": "Wed, 27 Jul 2022 12:59:35 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "49a27512-9e3e-4030-a9bb-31a0ec7eee55",
+ "x-ms-correlation-request-id": "b50edd45-8429-4c84-b206-f61ab9b0a121",
"x-ms-failure-cause": "gateway",
- "x-ms-request-id": "49a27512-9e3e-4030-a9bb-31a0ec7eee55",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134113Z:49a27512-9e3e-4030-a9bb-31a0ec7eee55"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125935Z:b50edd45-8429-4c84-b206-f61ab9b0a121"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
}
}
}
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 42586d33ab88..1cb22401a1a3 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 23 May 2022 13:30:33 GMT",
+ "Date": "Wed, 27 Jul 2022 12:50:56 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.12794.4 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 23 May 2022 13:30:33 GMT",
+ "Date": "Wed, 27 Jul 2022 12:50: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.12794.4 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - NEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "88bb29aa-b887-4eca-ac79-76c176f032ef",
+ "client-request-id": "aebb99e9-babc-4a96-a9c7-26dd678a2022",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "88bb29aa-b887-4eca-ac79-76c176f032ef",
+ "client-request-id": "aebb99e9-babc-4a96-a9c7-26dd678a2022",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:30:33 GMT",
+ "Date": "Wed, 27 Jul 2022 12:50:57 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12794.4 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - WEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,45 +213,45 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "23",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2"
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ddc31828-fc2a-4b8d-b055-8dac0daec736?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bb980fe-1feb-498d-ad24-8dca54e29aaf?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "697",
+ "Content-Length": "702",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:30:41 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T13%3A30%3A41.0915457Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 12:51:01 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T12%3A51%3A00.4930809Z\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": "22344923-0335-4212-aa28-bde08c7a996a",
- "x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133042Z:22344923-0335-4212-aa28-bde08c7a996a",
+ "x-ms-correlation-request-id": "921e0176-a68d-4205-ba62-348ca75397d0",
+ "x-ms-ratelimit-remaining-subscription-writes": "1197",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125101Z:921e0176-a68d-4205-ba62-348ca75397d0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A30%3A41.0915457Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A51%3A00.4930809Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:30:37.0334602Z"
+ "CreatedOnDate": "2022-07-27T12:50:58.4472363Z"
},
"properties": {
"provisioningState": "Creating"
@@ -258,21 +259,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T13:30:40.340162Z",
+ "createdAt": "2022-07-27T12:51:00.3020741Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:30:40.340162Z"
+ "lastModifiedAt": "2022-07-27T12:51:00.3020741Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ddc31828-fc2a-4b8d-b055-8dac0daec736?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bb980fe-1feb-498d-ad24-8dca54e29aaf?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +281,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:31:12 GMT",
+ "Date": "Wed, 27 Jul 2022 12:51:31 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +289,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3fa77a2e-6e79-4254-a254-1c40a4c37c4a",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133112Z:3fa77a2e-6e79-4254-a254-1c40a4c37c4a",
+ "x-ms-correlation-request-id": "a61c110b-8581-480c-807b-60662cf3336e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11980",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125132Z:a61c110b-8581-480c-807b-60662cf3336e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ddc31828-fc2a-4b8d-b055-8dac0daec736",
- "name": "ddc31828-fc2a-4b8d-b055-8dac0daec736",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bb980fe-1feb-498d-ad24-8dca54e29aaf",
+ "name": "6bb980fe-1feb-498d-ad24-8dca54e29aaf",
"status": "Succeeded",
- "startTime": "2022-05-23T13:30:41.0947466Z",
- "endTime": "2022-05-23T13:30:41.1260133Z",
+ "startTime": "2022-07-27T12:51:00.4779069Z",
+ "endTime": "2022-07-27T12:51:00.5247807Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +321,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:31:13 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T13%3A30%3A41.129919Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 12:51:32 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T12%3A51%3A00.5395572Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,35 +330,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1c66f5df-f74e-45cb-81bd-f2d1577be429",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133113Z:1c66f5df-f74e-45cb-81bd-f2d1577be429",
+ "x-ms-correlation-request-id": "2e386ec9-b51a-49b7-95ea-40502f98c689",
+ "x-ms-ratelimit-remaining-subscription-reads": "11979",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125132Z:2e386ec9-b51a-49b7-95ea-40502f98c689",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A30%3A41.129919Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A51%3A00.5395572Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:30:37.0334602Z"
+ "CreatedOnDate": "2022-07-27T12:50:58.4472363Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -370,26 +371,26 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T13:30:40.340162Z",
+ "createdAt": "2022-07-27T12:51:00.3020741Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:30:40.340162Z"
+ "lastModifiedAt": "2022-07-27T12:51:00.3020741Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "150",
+ "Content-Length": "138",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"size": 4398046511104,
"serviceLevel": "Premium",
@@ -399,30 +400,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0b3cf998-dd54-4f74-86e8-5eb0361269e0?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fe788af4-1aa8-4e0f-8967-82c8d41729e7?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "917",
+ "Content-Length": "918",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:31:15 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T13%3A31%3A14.9264548Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 12:51:35 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T12%3A51%3A34.6022091Z\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": "01e081b4-1897-45c5-ad15-e5446d8d8c5f",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133115Z:01e081b4-1897-45c5-ad15-e5446d8d8c5f",
+ "x-ms-correlation-request-id": "f55180da-467c-41a1-8a4d-edb4563d16e0",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125135Z:f55180da-467c-41a1-8a4d-edb4563d16e0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A31%3A14.9264548Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A51%3A34.6022091Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:31:13.4522947Z"
+ "CreatedOnDate": "2022-07-27T12:51:32.9804476Z"
},
"properties": {
"serviceLevel": "Premium",
@@ -436,21 +437,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T13:31:14.5747129Z",
+ "createdAt": "2022-07-27T12:51:34.3657959Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:31:14.5747129Z"
+ "lastModifiedAt": "2022-07-27T12:51:34.3657959Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0b3cf998-dd54-4f74-86e8-5eb0361269e0?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fe788af4-1aa8-4e0f-8967-82c8d41729e7?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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, 23 May 2022 13:31:45 GMT",
+ "Date": "Wed, 27 Jul 2022 12:52:05 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -466,31 +467,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "68cf0b53-c48e-4589-a079-220499addffd",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133146Z:68cf0b53-c48e-4589-a079-220499addffd",
+ "x-ms-correlation-request-id": "898711b2-64ad-4f43-8f13-3668b51f383a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11978",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125206Z:898711b2-64ad-4f43-8f13-3668b51f383a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0b3cf998-dd54-4f74-86e8-5eb0361269e0",
- "name": "0b3cf998-dd54-4f74-86e8-5eb0361269e0",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fe788af4-1aa8-4e0f-8967-82c8d41729e7",
+ "name": "fe788af4-1aa8-4e0f-8967-82c8d41729e7",
"status": "Succeeded",
- "startTime": "2022-05-23T13:31:14.9225094Z",
- "endTime": "2022-05-23T13:31:15.6256248Z",
+ "startTime": "2022-07-27T12:51:34.5958146Z",
+ "endTime": "2022-07-27T12:51:34.8770385Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-1"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -498,8 +499,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:31:46 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T13%3A31%3A15.6195806Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 12:52:05 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T12%3A51%3A34.8773724Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -507,22 +508,22 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c51d4337-81ea-4efd-a3f4-9e8295c561a1",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133146Z:c51d4337-81ea-4efd-a3f4-9e8295c561a1",
+ "x-ms-correlation-request-id": "207db38c-00bc-4695-b1c6-c86ef216df11",
+ "x-ms-ratelimit-remaining-subscription-reads": "11977",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125206Z:207db38c-00bc-4695-b1c6-c86ef216df11",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A31%3A15.6195806Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A51%3A34.8773724Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:31:13.4522947Z"
+ "CreatedOnDate": "2022-07-27T12:51:32.9804476Z"
},
"properties": {
- "poolId": "2357edb7-aa41-5237-f85f-51ad13f73b01",
+ "poolId": "d531328e-a266-cd0c-baea-c041e9f5b3ff",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
@@ -531,30 +532,22 @@
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T13:31:14.5747129Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:31:14.5747129Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-2?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "150",
+ "Content-Length": "138",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"size": 4398046511104,
"serviceLevel": "Premium",
@@ -564,30 +557,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/80c67dde-feb5-498a-9bd7-826359fc272b?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b75ed7f5-543d-4287-aeae-33bedc28d4ee?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "917",
+ "Content-Length": "918",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:31:49 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T13%3A31%3A48.9452631Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 12:52:09 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T12%3A52%3A08.1464741Z\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": "32044b2f-6e81-4dbe-bbd1-a4260c6da283",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133149Z:32044b2f-6e81-4dbe-bbd1-a4260c6da283",
+ "x-ms-correlation-request-id": "52042df2-7b72-455e-a34c-777389d72e5c",
+ "x-ms-ratelimit-remaining-subscription-writes": "1195",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125209Z:52042df2-7b72-455e-a34c-777389d72e5c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A31%3A48.9452631Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A52%3A08.1464741Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:31:46.8800464Z"
+ "CreatedOnDate": "2022-07-27T12:52:06.8653387Z"
},
"properties": {
"serviceLevel": "Premium",
@@ -601,21 +594,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T13:31:48.6060942Z",
+ "createdAt": "2022-07-27T12:52:07.9231699Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:31:48.6060942Z"
+ "lastModifiedAt": "2022-07-27T12:52:07.9231699Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/80c67dde-feb5-498a-9bd7-826359fc272b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b75ed7f5-543d-4287-aeae-33bedc28d4ee?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -623,7 +616,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:32:19 GMT",
+ "Date": "Wed, 27 Jul 2022 12:52:39 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -631,31 +624,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7be2a7d0-7849-4707-84e2-fd309d246243",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133219Z:7be2a7d0-7849-4707-84e2-fd309d246243",
+ "x-ms-correlation-request-id": "2bdc105d-6460-425f-92d2-fe575b5228b0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11976",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125239Z:2bdc105d-6460-425f-92d2-fe575b5228b0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/80c67dde-feb5-498a-9bd7-826359fc272b",
- "name": "80c67dde-feb5-498a-9bd7-826359fc272b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b75ed7f5-543d-4287-aeae-33bedc28d4ee",
+ "name": "b75ed7f5-543d-4287-aeae-33bedc28d4ee",
"status": "Succeeded",
- "startTime": "2022-05-23T13:31:48.9452855Z",
- "endTime": "2022-05-23T13:31:49.5546586Z",
+ "startTime": "2022-07-27T12:52:08.1551329Z",
+ "endTime": "2022-07-27T12:52:08.4207102Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-2?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -663,8 +656,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:32:19 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T13%3A31%3A49.5475008Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 12:52:39 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T12%3A52%3A08.4296886Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -672,22 +665,22 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1fa35dd1-8acd-4d9e-b8ed-5b26fd139343",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133220Z:1fa35dd1-8acd-4d9e-b8ed-5b26fd139343",
+ "x-ms-correlation-request-id": "5763f39c-5384-4cd2-8cb2-c8f6477f80a8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11975",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125239Z:5763f39c-5384-4cd2-8cb2-c8f6477f80a8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A31%3A49.5475008Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A52%3A08.4296886Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:31:46.8800464Z"
+ "CreatedOnDate": "2022-07-27T12:52:06.8653387Z"
},
"properties": {
- "poolId": "11991171-25ba-35b0-5ab3-1ad6a9f68b5e",
+ "poolId": "3fd9d48d-8a8f-1c61-3936-def8e1ea2d98",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
@@ -696,25 +689,17 @@
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T13:31:48.6060942Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:31:48.6060942Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -722,7 +707,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:32:20 GMT",
+ "Date": "Wed, 27 Jul 2022 12:52:40 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -730,24 +715,24 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8ad3a2fb-965f-4dea-b576-ef1b7e0d12ed",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133220Z:8ad3a2fb-965f-4dea-b576-ef1b7e0d12ed",
+ "x-ms-correlation-request-id": "d6432916-ec02-416d-ba9a-b798095b4b65",
+ "x-ms-ratelimit-remaining-subscription-reads": "11974",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125240Z:d6432916-ec02-416d-ba9a-b798095b4b65",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A31%3A15.6195806Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A51%3A34.8773724Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:31:13.4522947Z"
+ "CreatedOnDate": "2022-07-27T12:51:32.9804476Z"
},
"properties": {
- "poolId": "2357edb7-aa41-5237-f85f-51ad13f73b01",
+ "poolId": "d531328e-a266-cd0c-baea-c041e9f5b3ff",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
@@ -756,27 +741,19 @@
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T13:31:14.5747129Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:31:14.5747129Z"
}
},
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A31%3A49.5475008Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A52%3A08.4296886Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:31:46.8800464Z"
+ "CreatedOnDate": "2022-07-27T12:52:06.8653387Z"
},
"properties": {
- "poolId": "11991171-25ba-35b0-5ab3-1ad6a9f68b5e",
+ "poolId": "3fd9d48d-8a8f-1c61-3936-def8e1ea2d98",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
@@ -785,57 +762,49 @@
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T13:31:48.6060942Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:31:48.6060942Z"
}
}
]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/ff8e461a-f6eb-4dc0-8782-badcddcc2ed1?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0f50a118-7e8b-48e7-9f87-26fd40cf0274?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 13:32:30 GMT",
+ "Date": "Wed, 27 Jul 2022 12:52:50 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ff8e461a-f6eb-4dc0-8782-badcddcc2ed1?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0f50a118-7e8b-48e7-9f87-26fd40cf0274?api-version=2022-03-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": "c173a44a-48d8-4d12-8145-e09e461db59f",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133231Z:c173a44a-48d8-4d12-8145-e09e461db59f",
+ "x-ms-correlation-request-id": "74ca8a3e-662e-41f8-9fca-d00583395cb5",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125251Z:74ca8a3e-662e-41f8-9fca-d00583395cb5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ff8e461a-f6eb-4dc0-8782-badcddcc2ed1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0f50a118-7e8b-48e7-9f87-26fd40cf0274?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -843,7 +812,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:33:01 GMT",
+ "Date": "Wed, 27 Jul 2022 12:53:20 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -851,31 +820,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "57a10786-0197-4ff6-9747-a761c910055a",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133301Z:57a10786-0197-4ff6-9747-a761c910055a",
+ "x-ms-correlation-request-id": "6d8a246a-e1d0-4b57-a426-e5a021b90402",
+ "x-ms-ratelimit-remaining-subscription-reads": "11973",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125321Z:6d8a246a-e1d0-4b57-a426-e5a021b90402",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ff8e461a-f6eb-4dc0-8782-badcddcc2ed1",
- "name": "ff8e461a-f6eb-4dc0-8782-badcddcc2ed1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0f50a118-7e8b-48e7-9f87-26fd40cf0274",
+ "name": "0f50a118-7e8b-48e7-9f87-26fd40cf0274",
"status": "Succeeded",
- "startTime": "2022-05-23T13:32:31.5028066Z",
- "endTime": "2022-05-23T13:32:34.8517539Z",
+ "startTime": "2022-07-27T12:52:51.0431929Z",
+ "endTime": "2022-07-27T12:52:51.277657Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-1"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ff8e461a-f6eb-4dc0-8782-badcddcc2ed1?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0f50a118-7e8b-48e7-9f87-26fd40cf0274?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -883,7 +852,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:33:02 GMT",
+ "Date": "Wed, 27 Jul 2022 12:53:20 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -891,211 +860,203 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2ec08b15-51fa-4bac-a317-3b1e7496c45d",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133302Z:2ec08b15-51fa-4bac-a317-3b1e7496c45d",
+ "x-ms-correlation-request-id": "f5b1d9ea-ed10-431d-ab11-cfde53785958",
+ "x-ms-ratelimit-remaining-subscription-reads": "11972",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125321Z:f5b1d9ea-ed10-431d-ab11-cfde53785958",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A32%3A31.5059063Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A52%3A51.0437378Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:31:13.4522947Z"
+ "CreatedOnDate": "2022-07-27T12:51:32.9804476Z"
},
"properties": {
- "poolId": "2357edb7-aa41-5237-f85f-51ad13f73b01",
+ "poolId": "d531328e-a266-cd0c-baea-c041e9f5b3ff",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-1",
"qosType": "Auto",
"totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T13:31:14.5747129Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:31:14.5747129Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 13:33:12 GMT",
+ "Date": "Wed, 27 Jul 2022 12:53:32 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "15775396-dfb7-4dbf-ba81-37c236053ee4",
- "x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133312Z:15775396-dfb7-4dbf-ba81-37c236053ee4"
+ "x-ms-correlation-request-id": "5155f1e3-ad17-475c-b614-c39b9887edf0",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125332Z:5155f1e3-ad17-475c-b614-c39b9887edf0"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 13:33:22 GMT",
+ "Date": "Wed, 27 Jul 2022 12:53:42 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b0f2fa85-816d-4cf1-95ce-4d0177096fb2",
- "x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133322Z:b0f2fa85-816d-4cf1-95ce-4d0177096fb2"
+ "x-ms-correlation-request-id": "a87d0d6c-9b16-4f34-a4a0-321348f15ab0",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125342Z:a87d0d6c-9b16-4f34-a4a0-321348f15ab0"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 13:33:32 GMT",
+ "Date": "Wed, 27 Jul 2022 12:53:52 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "334a88ba-5eb2-40f2-9db3-6833cb4553f2",
- "x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133333Z:334a88ba-5eb2-40f2-9db3-6833cb4553f2"
+ "x-ms-correlation-request-id": "b9943958-24f0-4516-ae58-2b780e478227",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14983",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125352Z:b9943958-24f0-4516-ae58-2b780e478227"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 13:33:43 GMT",
+ "Date": "Wed, 27 Jul 2022 12:54:02 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3f3b160d-cdf2-43ae-ab05-f2b2d4832641",
- "x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133343Z:3f3b160d-cdf2-43ae-ab05-f2b2d4832641"
+ "x-ms-correlation-request-id": "db296c18-90b2-40fd-be9e-0b7fae43dbeb",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125403Z:db296c18-90b2-40fd-be9e-0b7fae43dbeb"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:33:53 GMT",
+ "Date": "Wed, 27 Jul 2022 12:54:13 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9b95748d-4d2f-4cc4-86d0-c65b29439706",
+ "x-ms-correlation-request-id": "8646b121-9e6d-42dd-9eac-5dc26d33dd8a",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133353Z:9b95748d-4d2f-4cc4-86d0-c65b29439706"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125413Z:8646b121-9e6d-42dd-9eac-5dc26d33dd8a"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-2?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/ca7949a0-8ce8-4b0d-a935-f1e48d509a85?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d9e0e58-bfee-46dd-92ca-63b77ff77821?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 13:34:04 GMT",
+ "Date": "Wed, 27 Jul 2022 12:54:24 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ca7949a0-8ce8-4b0d-a935-f1e48d509a85?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d9e0e58-bfee-46dd-92ca-63b77ff77821?api-version=2022-03-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": "0ab03ced-aaff-4600-b90f-79330eddd089",
- "x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133405Z:0ab03ced-aaff-4600-b90f-79330eddd089",
+ "x-ms-correlation-request-id": "283af418-61ed-4526-b441-1532f8aeacfb",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14981",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125424Z:283af418-61ed-4526-b441-1532f8aeacfb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ca7949a0-8ce8-4b0d-a935-f1e48d509a85?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d9e0e58-bfee-46dd-92ca-63b77ff77821?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1103,7 +1064,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:34:34 GMT",
+ "Date": "Wed, 27 Jul 2022 12:54:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1111,31 +1072,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c5479953-cc25-4219-8d3c-1fbdc70f758b",
- "x-ms-ratelimit-remaining-subscription-reads": "11988",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133435Z:c5479953-cc25-4219-8d3c-1fbdc70f758b",
+ "x-ms-correlation-request-id": "1096ab66-1462-478c-8f32-ba4236a3bd36",
+ "x-ms-ratelimit-remaining-subscription-reads": "11970",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125455Z:1096ab66-1462-478c-8f32-ba4236a3bd36",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ca7949a0-8ce8-4b0d-a935-f1e48d509a85",
- "name": "ca7949a0-8ce8-4b0d-a935-f1e48d509a85",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d9e0e58-bfee-46dd-92ca-63b77ff77821",
+ "name": "0d9e0e58-bfee-46dd-92ca-63b77ff77821",
"status": "Succeeded",
- "startTime": "2022-05-23T13:34:05.1595014Z",
- "endTime": "2022-05-23T13:34:08.6837386Z",
+ "startTime": "2022-07-27T12:54:24.806246Z",
+ "endTime": "2022-07-27T12:54:25.2750369Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/ca7949a0-8ce8-4b0d-a935-f1e48d509a85?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d9e0e58-bfee-46dd-92ca-63b77ff77821?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1143,7 +1104,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:34:35 GMT",
+ "Date": "Wed, 27 Jul 2022 12:54:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1151,211 +1112,203 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e960ccb9-57f6-4681-84f9-6c964609692a",
- "x-ms-ratelimit-remaining-subscription-reads": "11987",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133435Z:e960ccb9-57f6-4681-84f9-6c964609692a",
+ "x-ms-correlation-request-id": "cb1cd185-e7b0-446e-a584-6206c293c07c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11969",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125455Z:cb1cd185-e7b0-446e-a584-6206c293c07c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A34%3A05.156247Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A54%3A24.8109938Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:31:46.8800464Z"
+ "CreatedOnDate": "2022-07-27T12:52:06.8653387Z"
},
"properties": {
- "poolId": "11991171-25ba-35b0-5ab3-1ad6a9f68b5e",
+ "poolId": "3fd9d48d-8a8f-1c61-3936-def8e1ea2d98",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-2",
"qosType": "Auto",
"totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T13:31:48.6060942Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:31:48.6060942Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-2?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 13:34:45 GMT",
+ "Date": "Wed, 27 Jul 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": "ada91a72-7a0f-417a-ab09-d9fe24565280",
- "x-ms-ratelimit-remaining-subscription-deletes": "14993",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133446Z:ada91a72-7a0f-417a-ab09-d9fe24565280"
+ "x-ms-correlation-request-id": "bb93aa78-b213-41d9-b46d-2b4c199fbd7e",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14980",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125505Z:bb93aa78-b213-41d9-b46d-2b4c199fbd7e"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-2?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 13:34:55 GMT",
+ "Date": "Wed, 27 Jul 2022 12:55:16 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d679c24c-0881-4c1e-b0b5-b322e76d4b12",
- "x-ms-ratelimit-remaining-subscription-deletes": "14992",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133456Z:d679c24c-0881-4c1e-b0b5-b322e76d4b12"
+ "x-ms-correlation-request-id": "7fa6f792-e54c-4620-919d-bdb5b22178a8",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14979",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125516Z:7fa6f792-e54c-4620-919d-bdb5b22178a8"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-2?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 13:35:05 GMT",
+ "Date": "Wed, 27 Jul 2022 12:55:26 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "10797d05-149b-424b-8271-50b3bd7bd29a",
- "x-ms-ratelimit-remaining-subscription-deletes": "14991",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133506Z:10797d05-149b-424b-8271-50b3bd7bd29a"
+ "x-ms-correlation-request-id": "256539b2-d03f-4745-8012-5fcdc3ee6f49",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14978",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125526Z:256539b2-d03f-4745-8012-5fcdc3ee6f49"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-2?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 13:35:17 GMT",
+ "Date": "Wed, 27 Jul 2022 12:55:36 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c80b67a9-5e8c-4f62-b927-917d571fb208",
- "x-ms-ratelimit-remaining-subscription-deletes": "14990",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133517Z:c80b67a9-5e8c-4f62-b927-917d571fb208"
+ "x-ms-correlation-request-id": "2c0a03c2-dc86-4b44-a6f5-f0499081cc01",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14977",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125536Z:2c0a03c2-dc86-4b44-a6f5-f0499081cc01"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-2?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:35:27 GMT",
+ "Date": "Wed, 27 Jul 2022 12:55:46 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d79d1f1c-cdc3-4cd8-8786-843a459bd5ec",
+ "x-ms-correlation-request-id": "064d9004-75f7-4dec-85d4-f5c0c0c66770",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133527Z:d79d1f1c-cdc3-4cd8-8786-843a459bd5ec"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125547Z:064d9004-75f7-4dec-85d4-f5c0c0c66770"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-2\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/2773b75c-bdcb-4b05-8b1d-43632fba0bf5?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/068afab0-a231-4d9e-ba28-9d28f618579d?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 13:35:28 GMT",
+ "Date": "Wed, 27 Jul 2022 12:55:48 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2773b75c-bdcb-4b05-8b1d-43632fba0bf5?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/068afab0-a231-4d9e-ba28-9d28f618579d?api-version=2022-03-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": "048cd3ef-e769-4920-9c43-669acea4d2dd",
- "x-ms-ratelimit-remaining-subscription-deletes": "14989",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133528Z:048cd3ef-e769-4920-9c43-669acea4d2dd",
+ "x-ms-correlation-request-id": "b010758a-7639-4c42-9321-bd09e35ad124",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14976",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125548Z:b010758a-7639-4c42-9321-bd09e35ad124",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2773b75c-bdcb-4b05-8b1d-43632fba0bf5?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/068afab0-a231-4d9e-ba28-9d28f618579d?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1363,7 +1316,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:35:58 GMT",
+ "Date": "Wed, 27 Jul 2022 12:56:18 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1371,31 +1324,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d1bd08b1-6fc8-4b9a-9e55-81321a537c1f",
- "x-ms-ratelimit-remaining-subscription-reads": "11985",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133559Z:d1bd08b1-6fc8-4b9a-9e55-81321a537c1f",
+ "x-ms-correlation-request-id": "6aa63d12-9954-4b61-a00b-795deae7face",
+ "x-ms-ratelimit-remaining-subscription-reads": "11967",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125618Z:6aa63d12-9954-4b61-a00b-795deae7face",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2773b75c-bdcb-4b05-8b1d-43632fba0bf5",
- "name": "2773b75c-bdcb-4b05-8b1d-43632fba0bf5",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/068afab0-a231-4d9e-ba28-9d28f618579d",
+ "name": "068afab0-a231-4d9e-ba28-9d28f618579d",
"status": "Succeeded",
- "startTime": "2022-05-23T13:35:28.7673855Z",
- "endTime": "2022-05-23T13:35:28.7985873Z",
+ "startTime": "2022-07-27T12:55:48.4743268Z",
+ "endTime": "2022-07-27T12:55:48.5368391Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2773b75c-bdcb-4b05-8b1d-43632fba0bf5?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/068afab0-a231-4d9e-ba28-9d28f618579d?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1403,7 +1356,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:35:59 GMT",
+ "Date": "Wed, 27 Jul 2022 12:56:18 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1411,19 +1364,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b583529c-c4c6-4213-a0d7-92b8c2f1450f",
- "x-ms-ratelimit-remaining-subscription-reads": "11984",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133559Z:b583529c-c4c6-4213-a0d7-92b8c2f1450f",
+ "x-ms-correlation-request-id": "8294077f-944d-4337-9415-81e15f5c7ab4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11966",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125619Z:8294077f-944d-4337-9415-81e15f5c7ab4",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A35%3A28.7694685Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A55%3A48.4833674Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:30:37.0334602Z"
+ "CreatedOnDate": "2022-07-27T12:50:58.4472363Z"
},
"properties": {
"encryption": {
@@ -1434,41 +1387,41 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T13:30:40.340162Z",
+ "createdAt": "2022-07-27T12:51:00.3020741Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:30:40.340162Z"
+ "lastModifiedAt": "2022-07-27T12:51:00.3020741Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:36:01 GMT",
+ "Date": "Wed, 27 Jul 2022 12:56:18 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8527fc21-d1e7-4861-9094-ea96224dfc55",
+ "x-ms-correlation-request-id": "f391de01-c1a7-4084-b1b7-f0d7a8ae6526",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T133601Z:8527fc21-d1e7-4861-9094-ea96224dfc55"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125619Z:f391de01-c1a7-4084-b1b7-f0d7a8ae6526"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
}
}
}
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 ca0f33b769f4..2b4e4c7b898e 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 23 May 2022 14:56:32 GMT",
+ "Date": "Wed, 27 Jul 2022 13:03: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.12794.4 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 23 May 2022 14:56:32 GMT",
+ "Date": "Wed, 27 Jul 2022 13:03: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.12744.11 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - NEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "52d7e475-76c8-4588-b317-0cab02f6e137",
+ "client-request-id": "1e40fe6e-b471-46c4-9a19-b8c967acb5f9",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "52d7e475-76c8-4588-b317-0cab02f6e137",
+ "client-request-id": "1e40fe6e-b471-46c4-9a19-b8c967acb5f9",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 14:56:32 GMT",
+ "Date": "Wed, 27 Jul 2022 13:03:23 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12794.4 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - WEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,45 +213,45 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "23",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2"
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/26b4bdc2-06f2-47fe-9e3b-30a4f58d3f9b?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/82eb0895-3d6f-48f6-a5b7-1914e58d3707?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "699",
+ "Content-Length": "702",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 14:56:39 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T14%3A56%3A39.5190748Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 13:03:27 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T13%3A03%3A27.2175285Z\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": "779f0256-8624-4bac-815a-ba35288e0cb0",
- "x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T145640Z:779f0256-8624-4bac-815a-ba35288e0cb0",
+ "x-ms-correlation-request-id": "b0fb1508-e99b-4ba7-a5c4-473bdb899fec",
+ "x-ms-ratelimit-remaining-subscription-writes": "1189",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130328Z:b0fb1508-e99b-4ba7-a5c4-473bdb899fec",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T14%3A56%3A39.5190748Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T13%3A03%3A27.2175285Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T14:56:35.5768542Z"
+ "CreatedOnDate": "2022-07-27T13:03:25.1927085Z"
},
"properties": {
"provisioningState": "Creating"
@@ -258,21 +259,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T14:56:38.7546637Z",
+ "createdAt": "2022-07-27T13:03:27.0386058Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T14:56:38.7546637Z"
+ "lastModifiedAt": "2022-07-27T13:03:27.0386058Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/26b4bdc2-06f2-47fe-9e3b-30a4f58d3f9b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/82eb0895-3d6f-48f6-a5b7-1914e58d3707?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +281,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 14:57:10 GMT",
+ "Date": "Wed, 27 Jul 2022 13:03:57 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +289,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "80f2bbb2-5792-4d17-9981-1b320f296f90",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T145710Z:80f2bbb2-5792-4d17-9981-1b320f296f90",
+ "x-ms-correlation-request-id": "d1189dfc-562a-4df9-b425-2f18d3d7e815",
+ "x-ms-ratelimit-remaining-subscription-reads": "11941",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130358Z:d1189dfc-562a-4df9-b425-2f18d3d7e815",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/26b4bdc2-06f2-47fe-9e3b-30a4f58d3f9b",
- "name": "26b4bdc2-06f2-47fe-9e3b-30a4f58d3f9b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/82eb0895-3d6f-48f6-a5b7-1914e58d3707",
+ "name": "82eb0895-3d6f-48f6-a5b7-1914e58d3707",
"status": "Succeeded",
- "startTime": "2022-05-23T14:56:39.5234076Z",
- "endTime": "2022-05-23T14:56:39.5390869Z",
+ "startTime": "2022-07-27T13:03:27.224303Z",
+ "endTime": "2022-07-27T13:03:27.2555883Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +321,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 14:57:12 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T14%3A56%3A39.545883Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 13:03:58 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T13%3A03%3A27.2695148Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,35 +330,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b602eca4-3ef7-4e80-bd32-4595511fe5c7",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T145712Z:b602eca4-3ef7-4e80-bd32-4595511fe5c7",
+ "x-ms-correlation-request-id": "accf774f-b3ff-4980-845b-f983b35d95ca",
+ "x-ms-ratelimit-remaining-subscription-reads": "11940",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130359Z:accf774f-b3ff-4980-845b-f983b35d95ca",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T14%3A56%3A39.545883Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T13%3A03%3A27.2695148Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T14:56:35.5768542Z"
+ "CreatedOnDate": "2022-07-27T13:03:25.1927085Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -370,26 +371,26 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T14:56:38.7546637Z",
+ "createdAt": "2022-07-27T13:03:27.0386058Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T14:56:38.7546637Z"
+ "lastModifiedAt": "2022-07-27T13:03:27.0386058Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "150",
+ "Content-Length": "138",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"size": 4398046511104,
"serviceLevel": "Premium",
@@ -399,30 +400,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6a06d0bf-9bf8-4384-bbc9-f7981b406b8a?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d2888a7-80ae-4c76-9104-541b9947bbbd?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "917",
+ "Content-Length": "918",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 14:57:15 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T14%3A57%3A14.2909609Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 13:04:00 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T13%3A04%3A00.6228143Z\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": "4d4c94ba-7eaf-4b4e-94e2-66a8c9e636fc",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T145715Z:4d4c94ba-7eaf-4b4e-94e2-66a8c9e636fc",
+ "x-ms-correlation-request-id": "81b24b15-fa2b-4e05-9587-f7410dcc0ac7",
+ "x-ms-ratelimit-remaining-subscription-writes": "1188",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130401Z:81b24b15-fa2b-4e05-9587-f7410dcc0ac7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T14%3A57%3A14.2909609Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T13%3A04%3A00.6228143Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T14:57:12.5773959Z"
+ "CreatedOnDate": "2022-07-27T13:03:59.3515157Z"
},
"properties": {
"serviceLevel": "Premium",
@@ -436,21 +437,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T14:57:13.8331955Z",
+ "createdAt": "2022-07-27T13:04:00.4179226Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T14:57:13.8331955Z"
+ "lastModifiedAt": "2022-07-27T13:04:00.4179226Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6a06d0bf-9bf8-4384-bbc9-f7981b406b8a?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d2888a7-80ae-4c76-9104-541b9947bbbd?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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, 23 May 2022 14:57:45 GMT",
+ "Date": "Wed, 27 Jul 2022 13:04:32 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -466,31 +467,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "344cf38d-6efe-468f-b3b0-d56b7ba31c20",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T145745Z:344cf38d-6efe-468f-b3b0-d56b7ba31c20",
+ "x-ms-correlation-request-id": "7263d3d4-262a-4f6e-a89e-a0602e4df720",
+ "x-ms-ratelimit-remaining-subscription-reads": "11939",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130432Z:7263d3d4-262a-4f6e-a89e-a0602e4df720",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6a06d0bf-9bf8-4384-bbc9-f7981b406b8a",
- "name": "6a06d0bf-9bf8-4384-bbc9-f7981b406b8a",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d2888a7-80ae-4c76-9104-541b9947bbbd",
+ "name": "0d2888a7-80ae-4c76-9104-541b9947bbbd",
"status": "Succeeded",
- "startTime": "2022-05-23T14:57:14.2915316Z",
- "endTime": "2022-05-23T14:57:14.8856226Z",
+ "startTime": "2022-07-27T13:04:00.6329205Z",
+ "endTime": "2022-07-27T13:04:00.78922Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -498,8 +499,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 14:57:45 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T14%3A57%3A14.8739961Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 13:04:32 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T13%3A04%3A00.8015154Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -507,22 +508,22 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3ac5f390-b164-48c5-9c34-7c4958a8ffac",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T145746Z:3ac5f390-b164-48c5-9c34-7c4958a8ffac",
+ "x-ms-correlation-request-id": "ccaf8a78-90dd-48b5-b6dd-90f308eb14c6",
+ "x-ms-ratelimit-remaining-subscription-reads": "11938",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130432Z:ccaf8a78-90dd-48b5-b6dd-90f308eb14c6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T14%3A57%3A14.8739961Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T13%3A04%3A00.8015154Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T14:57:12.5773959Z"
+ "CreatedOnDate": "2022-07-27T13:03:59.3515157Z"
},
"properties": {
- "poolId": "4b0ea095-65e4-1470-1b2e-d9b0381f91cc",
+ "poolId": "d8003607-a197-824d-7262-66bdda9ebb9d",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
@@ -531,19 +532,11 @@
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T14:57:13.8331955Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T14:57:13.8331955Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "PATCH",
"RequestHeaders": {
"Accept": "application/json",
@@ -551,7 +544,7 @@
"Connection": "keep-alive",
"Content-Length": "88",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
"tags": {
@@ -564,35 +557,35 @@
},
"StatusCode": 202,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7c923abb-6a15-4509-a9aa-85a8fafa296d?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a5c81b9-01ff-45da-b2dd-56d941e32311?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "984",
+ "Content-Length": "707",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 14:57:46 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T14%3A57%3A47.1369004Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 13:04:32 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T13%3A04%3A32.9663188Z\u0027\u0022",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7c923abb-6a15-4509-a9aa-85a8fafa296d?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a5c81b9-01ff-45da-b2dd-56d941e32311?api-version=2022-03-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": "6eb86a27-7e91-4b4f-a9a0-e96a2be7fbc2",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T145747Z:6eb86a27-7e91-4b4f-a9a0-e96a2be7fbc2",
+ "x-ms-correlation-request-id": "aa0b6838-fd8a-4fd1-956e-5a81091108e2",
+ "x-ms-ratelimit-remaining-subscription-writes": "1187",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130433Z:aa0b6838-fd8a-4fd1-956e-5a81091108e2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T14%3A57%3A47.1369004Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T13%3A04%3A32.9663188Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T14:57:12.5773959Z"
+ "CreatedOnDate": "2022-07-27T13:03:59.3515157Z"
},
"properties": {
"provisioningState": "Patching",
- "poolId": "4b0ea095-65e4-1470-1b2e-d9b0381f91cc",
+ "poolId": "d8003607-a197-824d-7262-66bdda9ebb9d",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
@@ -600,25 +593,17 @@
"utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T14:57:13.8331955Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T14:57:13.8331955Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7c923abb-6a15-4509-a9aa-85a8fafa296d?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a5c81b9-01ff-45da-b2dd-56d941e32311?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -626,7 +611,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 14:58:17 GMT",
+ "Date": "Wed, 27 Jul 2022 13:05:02 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -634,31 +619,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "102213ac-0e0c-45e4-a35d-6afab1186edf",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T145817Z:102213ac-0e0c-45e4-a35d-6afab1186edf",
+ "x-ms-correlation-request-id": "231e46d5-3480-4c78-84e2-c9023ecc8931",
+ "x-ms-ratelimit-remaining-subscription-reads": "11937",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130503Z:231e46d5-3480-4c78-84e2-c9023ecc8931",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7c923abb-6a15-4509-a9aa-85a8fafa296d",
- "name": "7c923abb-6a15-4509-a9aa-85a8fafa296d",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a5c81b9-01ff-45da-b2dd-56d941e32311",
+ "name": "3a5c81b9-01ff-45da-b2dd-56d941e32311",
"status": "Succeeded",
- "startTime": "2022-05-23T14:57:47.1306808Z",
- "endTime": "2022-05-23T14:57:49.9318851Z",
+ "startTime": "2022-07-27T13:04:32.9610991Z",
+ "endTime": "2022-07-27T13:04:33.3204871Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/7c923abb-6a15-4509-a9aa-85a8fafa296d?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a5c81b9-01ff-45da-b2dd-56d941e32311?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -666,7 +651,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 14:58:17 GMT",
+ "Date": "Wed, 27 Jul 2022 13:05:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -674,26 +659,26 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6518bcc8-7774-4bec-b523-b14505394733",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T145817Z:6518bcc8-7774-4bec-b523-b14505394733",
+ "x-ms-correlation-request-id": "877a2ea2-6987-4a71-bbc3-c7719948889b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11936",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130503Z:877a2ea2-6987-4a71-bbc3-c7719948889b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T14%3A57%3A49.924337Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T13%3A04%3A33.3241053Z\u0027\u0022",
+ "location": "westus2",
"tags": {
"Tag2": "Value1",
- "CreatedOnDate": "2022-05-23T14:57:46.4006609Z"
+ "CreatedOnDate": "2022-07-27T13:04:32.6697042Z"
},
"properties": {
- "poolId": "4b0ea095-65e4-1470-1b2e-d9b0381f91cc",
+ "poolId": "d8003607-a197-824d-7262-66bdda9ebb9d",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455/capacityPools/sdk-py-tests-pool-1",
"qosType": "Manual",
"totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
@@ -702,53 +687,50 @@
"provisioningState": "Succeeded"
},
"systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T14:57:13.8331955Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T14:57:47.0366897Z"
+ "lastModifiedAt": "2022-07-27T13:04:32.8224892Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/50f28888-2730-4133-856f-39b3e26217a0?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e48c8fb8-ecf3-4c6d-a7d3-e155d973bcc3?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 14:58:27 GMT",
+ "Date": "Wed, 27 Jul 2022 13:05:13 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/50f28888-2730-4133-856f-39b3e26217a0?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e48c8fb8-ecf3-4c6d-a7d3-e155d973bcc3?api-version=2022-03-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": "3e1f36f9-ed01-46de-8f83-220057f8eeb5",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T145828Z:3e1f36f9-ed01-46de-8f83-220057f8eeb5",
+ "x-ms-correlation-request-id": "a765020a-5898-4d3c-910c-962a59f6581b",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14963",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130514Z:a765020a-5898-4d3c-910c-962a59f6581b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/50f28888-2730-4133-856f-39b3e26217a0?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e48c8fb8-ecf3-4c6d-a7d3-e155d973bcc3?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -756,7 +738,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 14:58:58 GMT",
+ "Date": "Wed, 27 Jul 2022 13:05:44 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -764,31 +746,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0430979a-bef0-44a1-a1ce-70ad20ec0351",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T145858Z:0430979a-bef0-44a1-a1ce-70ad20ec0351",
+ "x-ms-correlation-request-id": "71d0b0bc-7851-461a-adc8-302778013bd0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11935",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130544Z:71d0b0bc-7851-461a-adc8-302778013bd0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/50f28888-2730-4133-856f-39b3e26217a0",
- "name": "50f28888-2730-4133-856f-39b3e26217a0",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e48c8fb8-ecf3-4c6d-a7d3-e155d973bcc3",
+ "name": "e48c8fb8-ecf3-4c6d-a7d3-e155d973bcc3",
"status": "Succeeded",
- "startTime": "2022-05-23T14:58:28.2359927Z",
- "endTime": "2022-05-23T14:58:31.6112077Z",
+ "startTime": "2022-07-27T13:05:14.3298865Z",
+ "endTime": "2022-07-27T13:05:14.6115141Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/50f28888-2730-4133-856f-39b3e26217a0?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e48c8fb8-ecf3-4c6d-a7d3-e155d973bcc3?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -796,7 +778,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 14:58:58 GMT",
+ "Date": "Wed, 27 Jul 2022 13:05:44 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -804,26 +786,26 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ddbdf3a6-4188-45e8-8e34-f3b51cb11341",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T145858Z:ddbdf3a6-4188-45e8-8e34-f3b51cb11341",
+ "x-ms-correlation-request-id": "698d97ae-bb6a-43f7-93a8-640551dc9a0b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11934",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130545Z:698d97ae-bb6a-43f7-93a8-640551dc9a0b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T14%3A58%3A28.2388404Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T13%3A05%3A14.2727675Z\u0027\u0022",
+ "location": "westus2",
"tags": {
"Tag2": "Value1",
- "CreatedOnDate": "2022-05-23T14:57:46.4006609Z"
+ "CreatedOnDate": "2022-07-27T13:04:32.6697042Z"
},
"properties": {
- "poolId": "4b0ea095-65e4-1470-1b2e-d9b0381f91cc",
+ "poolId": "d8003607-a197-824d-7262-66bdda9ebb9d",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455/capacityPools/sdk-py-tests-pool-1",
"qosType": "Manual",
"totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
@@ -832,184 +814,181 @@
"provisioningState": "Deleting"
},
"systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T14:57:13.8331955Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T14:57:47.0366897Z"
+ "lastModifiedAt": "2022-07-27T13:04:32.8224892Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 14:59:08 GMT",
+ "Date": "Wed, 27 Jul 2022 13:05:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "72d06793-840f-423d-9f5a-2ae2aefd9ba0",
- "x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T145909Z:72d06793-840f-423d-9f5a-2ae2aefd9ba0"
+ "x-ms-correlation-request-id": "702623f0-ba9f-43b6-818d-f03394744614",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14962",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130555Z:702623f0-ba9f-43b6-818d-f03394744614"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 14:59:19 GMT",
+ "Date": "Wed, 27 Jul 2022 13:06:04 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "413f8195-dde9-4a76-90db-b632da0b26a3",
- "x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T145919Z:413f8195-dde9-4a76-90db-b632da0b26a3"
+ "x-ms-correlation-request-id": "79bce389-5665-49b0-8fd5-2c19f40ece40",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14961",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130605Z:79bce389-5665-49b0-8fd5-2c19f40ece40"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 14:59:29 GMT",
+ "Date": "Wed, 27 Jul 2022 13:06:15 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "610df0f5-a21e-4af2-80db-230985daea7b",
- "x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T145929Z:610df0f5-a21e-4af2-80db-230985daea7b"
+ "x-ms-correlation-request-id": "a0af4283-48b3-4322-8324-571f458d1cd6",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14960",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130615Z:a0af4283-48b3-4322-8324-571f458d1cd6"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 14:59:39 GMT",
+ "Date": "Wed, 27 Jul 2022 13:06:25 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "142bb70b-9c8a-4d81-968a-9bfad99fe5e6",
- "x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T145939Z:142bb70b-9c8a-4d81-968a-9bfad99fe5e6"
+ "x-ms-correlation-request-id": "65005bfe-6200-463d-a8c3-1ae408570a0a",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14959",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130626Z:65005bfe-6200-463d-a8c3-1ae408570a0a"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 14:59:49 GMT",
+ "Date": "Wed, 27 Jul 2022 13:06:36 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "17404ee7-7863-4d30-90af-5500ac085f1e",
+ "x-ms-correlation-request-id": "a67a6658-3c39-4c31-9dd2-be4318582473",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T145950Z:17404ee7-7863-4d30-90af-5500ac085f1e"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130636Z:a67a6658-3c39-4c31-9dd2-be4318582473"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/2b95812a-d242-4e89-92b9-4b6f4c0af421?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f3efeaa0-3c00-42af-80d7-03aec9a30324?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 14:59:50 GMT",
+ "Date": "Wed, 27 Jul 2022 13:06:37 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2b95812a-d242-4e89-92b9-4b6f4c0af421?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f3efeaa0-3c00-42af-80d7-03aec9a30324?api-version=2022-03-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": "bcec74de-8770-44fe-9966-a279f699acee",
- "x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T145951Z:bcec74de-8770-44fe-9966-a279f699acee",
+ "x-ms-correlation-request-id": "8ea84190-d806-4297-beaf-8f7ba3fa2bd6",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14958",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130638Z:8ea84190-d806-4297-beaf-8f7ba3fa2bd6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2b95812a-d242-4e89-92b9-4b6f4c0af421?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f3efeaa0-3c00-42af-80d7-03aec9a30324?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1017,7 +996,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:00:20 GMT",
+ "Date": "Wed, 27 Jul 2022 13:07:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1025,31 +1004,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d0ae9792-c6cb-4d5c-bf2d-ba95eb8e4a82",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150021Z:d0ae9792-c6cb-4d5c-bf2d-ba95eb8e4a82",
+ "x-ms-correlation-request-id": "bd73fc4d-9809-4d64-9e76-97c6d1d377ec",
+ "x-ms-ratelimit-remaining-subscription-reads": "11932",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130708Z:bd73fc4d-9809-4d64-9e76-97c6d1d377ec",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2b95812a-d242-4e89-92b9-4b6f4c0af421",
- "name": "2b95812a-d242-4e89-92b9-4b6f4c0af421",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f3efeaa0-3c00-42af-80d7-03aec9a30324",
+ "name": "f3efeaa0-3c00-42af-80d7-03aec9a30324",
"status": "Succeeded",
- "startTime": "2022-05-23T14:59:51.1343072Z",
- "endTime": "2022-05-23T14:59:51.1655508Z",
+ "startTime": "2022-07-27T13:06:37.8677192Z",
+ "endTime": "2022-07-27T13:06:37.9175699Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2b95812a-d242-4e89-92b9-4b6f4c0af421?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f3efeaa0-3c00-42af-80d7-03aec9a30324?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1057,7 +1036,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:00:20 GMT",
+ "Date": "Wed, 27 Jul 2022 13:07:08 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1065,19 +1044,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6beb544e-9e8c-4d4f-9e52-a3a623251625",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150021Z:6beb544e-9e8c-4d4f-9e52-a3a623251625",
+ "x-ms-correlation-request-id": "c1b580d3-9018-4a68-84c1-0dbbcb3805b3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11931",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130708Z:c1b580d3-9018-4a68-84c1-0dbbcb3805b3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T14%3A59%3A51.1386935Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T13%3A06%3A37.8633721Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T14:56:35.5768542Z"
+ "CreatedOnDate": "2022-07-27T13:03:25.1927085Z"
},
"properties": {
"encryption": {
@@ -1088,41 +1067,41 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T14:56:38.7546637Z",
+ "createdAt": "2022-07-27T13:03:27.0386058Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T14:56:38.7546637Z"
+ "lastModifiedAt": "2022-07-27T13:03:27.0386058Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:00:23 GMT",
+ "Date": "Wed, 27 Jul 2022 13:07:08 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0dedbc28-ee77-4a2a-a5fc-45840bc4fc30",
+ "x-ms-correlation-request-id": "4f6b5487-6dd5-4bb5-a023-eb8200915cae",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150023Z:0dedbc28-ee77-4a2a-a5fc-45840bc4fc30"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130708Z:4f6b5487-6dd5-4bb5-a023-eb8200915cae"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
}
}
}
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 b180aa489a0e..afd232d29ef2 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 23 May 2022 13:42:10 GMT",
+ "Date": "Wed, 27 Jul 2022 12:59:35 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.12794.4 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 23 May 2022 13:42:10 GMT",
+ "Date": "Wed, 27 Jul 2022 12:59:35 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.12744.11 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - NEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "205ee347-5bff-4fba-87b6-0a7b02a20b79",
+ "client-request-id": "d7fd711f-6265-4adb-9b45-711b6612fd38",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "205ee347-5bff-4fba-87b6-0a7b02a20b79",
+ "client-request-id": "d7fd711f-6265-4adb-9b45-711b6612fd38",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:42:11 GMT",
+ "Date": "Wed, 27 Jul 2022 12:59:35 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12794.4 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - WEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,45 +213,45 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "23",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2"
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b36d50b0-884b-4d51-b2c5-e767fe788c9a?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/712ecbba-c29b-4b80-a14a-09c7278c5425?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "699",
+ "Content-Length": "698",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:42:20 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T13%3A42%3A20.1925899Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 12:59:40 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T12%3A59%3A39.6289905Z\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": "272b6fa0-be35-4b41-b8f3-6938c4b8e9cf",
- "x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134221Z:272b6fa0-be35-4b41-b8f3-6938c4b8e9cf",
+ "x-ms-correlation-request-id": "b36edf64-187a-402f-895e-9caf54f8822e",
+ "x-ms-ratelimit-remaining-subscription-writes": "1192",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T125940Z:b36edf64-187a-402f-895e-9caf54f8822e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A42%3A20.1925899Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A59%3A39.6289905Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:42:15.7334104Z"
+ "CreatedOnDate": "2022-07-27T12:59:37.4189124Z"
},
"properties": {
"provisioningState": "Creating"
@@ -258,21 +259,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T13:42:19.4722736Z",
+ "createdAt": "2022-07-27T12:59:39.457979Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:42:19.4722736Z"
+ "lastModifiedAt": "2022-07-27T12:59:39.457979Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b36d50b0-884b-4d51-b2c5-e767fe788c9a?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/712ecbba-c29b-4b80-a14a-09c7278c5425?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +281,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:42:51 GMT",
+ "Date": "Wed, 27 Jul 2022 13:00:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +289,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5e27777d-2766-426c-812e-5c775fe6d840",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134251Z:5e27777d-2766-426c-812e-5c775fe6d840",
+ "x-ms-correlation-request-id": "9a6eb11a-6c47-4502-aa26-cf9a564bdeb5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11953",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130011Z:9a6eb11a-6c47-4502-aa26-cf9a564bdeb5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b36d50b0-884b-4d51-b2c5-e767fe788c9a",
- "name": "b36d50b0-884b-4d51-b2c5-e767fe788c9a",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/712ecbba-c29b-4b80-a14a-09c7278c5425",
+ "name": "712ecbba-c29b-4b80-a14a-09c7278c5425",
"status": "Succeeded",
- "startTime": "2022-05-23T13:42:20.1931295Z",
- "endTime": "2022-05-23T13:42:20.2243912Z",
+ "startTime": "2022-07-27T12:59:39.6227831Z",
+ "endTime": "2022-07-27T12:59:39.6696786Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +321,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:42:52 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T13%3A42%3A20.2287333Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 13:00:11 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T12%3A59%3A39.6848768Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,35 +330,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c7140d79-b407-430c-a1d4-7dff2860fe5a",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134252Z:c7140d79-b407-430c-a1d4-7dff2860fe5a",
+ "x-ms-correlation-request-id": "e1181cab-14b0-4c8e-8c3e-338a0c0ebd78",
+ "x-ms-ratelimit-remaining-subscription-reads": "11952",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130011Z:e1181cab-14b0-4c8e-8c3e-338a0c0ebd78",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A42%3A20.2287333Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T12%3A59%3A39.6848768Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:42:15.7334104Z"
+ "CreatedOnDate": "2022-07-27T12:59:37.4189124Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -370,26 +371,26 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T13:42:19.4722736Z",
+ "createdAt": "2022-07-27T12:59:39.457979Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:42:19.4722736Z"
+ "lastModifiedAt": "2022-07-27T12:59:39.457979Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "150",
+ "Content-Length": "138",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"size": 4398046511104,
"serviceLevel": "Premium",
@@ -399,30 +400,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6475b9a8-7a0a-47b0-9b3f-0826c7f4d1c2?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e308e76d-65c2-464a-8be9-9668ca4dfbc9?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "917",
+ "Content-Length": "916",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:42:54 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T13%3A42%3A54.1368204Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 13:00:14 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T13%3A00%3A13.6709404Z\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": "2479192f-6c95-46fc-b890-cbf81fad7f4c",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134255Z:2479192f-6c95-46fc-b890-cbf81fad7f4c",
+ "x-ms-correlation-request-id": "38127fd9-2082-483c-9a83-9c1c5ee91ebd",
+ "x-ms-ratelimit-remaining-subscription-writes": "1191",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130014Z:38127fd9-2082-483c-9a83-9c1c5ee91ebd",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A42%3A54.1368204Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T13%3A00%3A13.6709404Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:42:52.6381825Z"
+ "CreatedOnDate": "2022-07-27T13:00:12.2538124Z"
},
"properties": {
"serviceLevel": "Premium",
@@ -436,21 +437,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T13:42:53.8165062Z",
+ "createdAt": "2022-07-27T13:00:13.4742181Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:42:53.8165062Z"
+ "lastModifiedAt": "2022-07-27T13:00:13.4742181Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6475b9a8-7a0a-47b0-9b3f-0826c7f4d1c2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e308e76d-65c2-464a-8be9-9668ca4dfbc9?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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, 23 May 2022 13:43:25 GMT",
+ "Date": "Wed, 27 Jul 2022 13:00:44 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -466,31 +467,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0d03f899-7d78-4f88-9833-8f056c04551a",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134325Z:0d03f899-7d78-4f88-9833-8f056c04551a",
+ "x-ms-correlation-request-id": "fa3a10ad-6c3c-4245-8c38-b3d212362a15",
+ "x-ms-ratelimit-remaining-subscription-reads": "11951",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130045Z:fa3a10ad-6c3c-4245-8c38-b3d212362a15",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6475b9a8-7a0a-47b0-9b3f-0826c7f4d1c2",
- "name": "6475b9a8-7a0a-47b0-9b3f-0826c7f4d1c2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e308e76d-65c2-464a-8be9-9668ca4dfbc9",
+ "name": "e308e76d-65c2-464a-8be9-9668ca4dfbc9",
"status": "Succeeded",
- "startTime": "2022-05-23T13:42:54.1288558Z",
- "endTime": "2022-05-23T13:42:54.6913932Z",
+ "startTime": "2022-07-27T13:00:13.6564367Z",
+ "endTime": "2022-07-27T13:00:13.8439565Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -498,8 +499,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:43:25 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T13%3A42%3A54.6955159Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 13:00:44 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T13%3A00%3A13.8485913Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -507,22 +508,22 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "604281bd-4387-4da9-88b6-dcb5cd01579a",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134325Z:604281bd-4387-4da9-88b6-dcb5cd01579a",
+ "x-ms-correlation-request-id": "e63cdffe-61e5-4da5-8e8c-71074fbcd7e9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11950",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130045Z:e63cdffe-61e5-4da5-8e8c-71074fbcd7e9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A42%3A54.6955159Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T13%3A00%3A13.8485913Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:42:52.6381825Z"
+ "CreatedOnDate": "2022-07-27T13:00:12.2538124Z"
},
"properties": {
- "poolId": "8997a29e-4a06-df48-818e-0d05e7f27cf1",
+ "poolId": "a34b1a7e-046f-5b7d-14e3-f14c127c9483",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
@@ -531,30 +532,22 @@
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T13:42:53.8165062Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:42:53.8165062Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "95",
+ "Content-Length": "83",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"size": 4398046511104,
"qosType": "Manual"
@@ -562,12 +555,12 @@
},
"StatusCode": 200,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3890783b-aafa-4102-acf1-de97c4e4e9af?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a155004a-907e-437d-99cd-94c185ddb013?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:43:27 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T13%3A43%3A26.4546598Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 13:00:46 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T13%3A00%3A46.0823123Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -575,23 +568,23 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9fd627fa-4ff4-4e31-8992-ca101b9bf590",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134327Z:9fd627fa-4ff4-4e31-8992-ca101b9bf590",
+ "x-ms-correlation-request-id": "911a563f-ec04-47bb-863b-87cab36e4968",
+ "x-ms-ratelimit-remaining-subscription-writes": "1190",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130046Z:911a563f-ec04-47bb-863b-87cab36e4968",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A43%3A26.4546598Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T13%3A00%3A46.0823123Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:42:52.6381825Z"
+ "CreatedOnDate": "2022-07-27T13:00:12.2538124Z"
},
"properties": {
"provisioningState": "Updating",
- "poolId": "8997a29e-4a06-df48-818e-0d05e7f27cf1",
+ "poolId": "a34b1a7e-046f-5b7d-14e3-f14c127c9483",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
@@ -599,25 +592,17 @@
"utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T13:42:53.8165062Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:42:53.8165062Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3890783b-aafa-4102-acf1-de97c4e4e9af?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a155004a-907e-437d-99cd-94c185ddb013?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -625,7 +610,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:43:57 GMT",
+ "Date": "Wed, 27 Jul 2022 13:01:17 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -633,31 +618,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d6d35284-db58-4e59-958a-5c22633361c5",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134357Z:d6d35284-db58-4e59-958a-5c22633361c5",
+ "x-ms-correlation-request-id": "615c1fa1-97f2-4ab6-b073-36d2f8646fb8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11949",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130117Z:615c1fa1-97f2-4ab6-b073-36d2f8646fb8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3890783b-aafa-4102-acf1-de97c4e4e9af",
- "name": "3890783b-aafa-4102-acf1-de97c4e4e9af",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a155004a-907e-437d-99cd-94c185ddb013",
+ "name": "a155004a-907e-437d-99cd-94c185ddb013",
"status": "Succeeded",
- "startTime": "2022-05-23T13:43:26.4507134Z",
- "endTime": "2022-05-23T13:43:29.8103246Z",
+ "startTime": "2022-07-27T13:00:46.072071Z",
+ "endTime": "2022-07-27T13:00:46.3220818Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -665,8 +650,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:43:57 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T13%3A43%3A29.8007783Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 13:01:17 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T13%3A00%3A46.3321624Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -674,22 +659,22 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "cbd1305b-a6fa-4dc6-9e80-b858f7e1492d",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134358Z:cbd1305b-a6fa-4dc6-9e80-b858f7e1492d",
+ "x-ms-correlation-request-id": "143bbd19-351b-4113-b309-26e7ca7bad12",
+ "x-ms-ratelimit-remaining-subscription-reads": "11948",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130117Z:143bbd19-351b-4113-b309-26e7ca7bad12",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A43%3A29.8007783Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T13%3A00%3A46.3321624Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:43:26.1841976Z"
+ "CreatedOnDate": "2022-07-27T13:00:45.7778790Z"
},
"properties": {
- "poolId": "8997a29e-4a06-df48-818e-0d05e7f27cf1",
+ "poolId": "a34b1a7e-046f-5b7d-14e3-f14c127c9483",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Manual",
@@ -700,53 +685,50 @@
"provisioningState": "Succeeded"
},
"systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T13:42:53.8165062Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:43:26.3480616Z"
+ "lastModifiedAt": "2022-07-27T13:00:45.9318061Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/acad2105-d19e-48eb-8c62-cfd52b114033?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af815ecf-0a48-4192-9061-b17afda1770b?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 13:44:08 GMT",
+ "Date": "Wed, 27 Jul 2022 13:01:28 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/acad2105-d19e-48eb-8c62-cfd52b114033?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af815ecf-0a48-4192-9061-b17afda1770b?api-version=2022-03-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": "3625b4e5-00dd-45d6-81e7-96e491e4c0a3",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134409Z:3625b4e5-00dd-45d6-81e7-96e491e4c0a3",
+ "x-ms-correlation-request-id": "f665b543-8597-4525-9fa9-69bd7bb034bb",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14969",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130128Z:f665b543-8597-4525-9fa9-69bd7bb034bb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/acad2105-d19e-48eb-8c62-cfd52b114033?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af815ecf-0a48-4192-9061-b17afda1770b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -754,7 +736,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:44:38 GMT",
+ "Date": "Wed, 27 Jul 2022 13:01:58 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -762,31 +744,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0ff4c118-83ea-45b0-bc2d-16d4bc019671",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134439Z:0ff4c118-83ea-45b0-bc2d-16d4bc019671",
+ "x-ms-correlation-request-id": "d5a670fd-0ef5-4209-9fa3-f4611dc9a3d9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11947",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130158Z:d5a670fd-0ef5-4209-9fa3-f4611dc9a3d9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/acad2105-d19e-48eb-8c62-cfd52b114033",
- "name": "acad2105-d19e-48eb-8c62-cfd52b114033",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af815ecf-0a48-4192-9061-b17afda1770b",
+ "name": "af815ecf-0a48-4192-9061-b17afda1770b",
"status": "Succeeded",
- "startTime": "2022-05-23T13:44:08.9005653Z",
- "endTime": "2022-05-23T13:44:12.8380855Z",
+ "startTime": "2022-07-27T13:01:28.3112251Z",
+ "endTime": "2022-07-27T13:01:28.5924944Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/acad2105-d19e-48eb-8c62-cfd52b114033?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af815ecf-0a48-4192-9061-b17afda1770b?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -794,7 +776,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:44:38 GMT",
+ "Date": "Wed, 27 Jul 2022 13:01:58 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -802,25 +784,25 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5094a7dd-115f-43c7-a668-8d2c183e53b2",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134439Z:5094a7dd-115f-43c7-a668-8d2c183e53b2",
+ "x-ms-correlation-request-id": "1f38aabb-b4d3-4fb0-b7b7-ab6430c2ab63",
+ "x-ms-ratelimit-remaining-subscription-reads": "11946",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130159Z:1f38aabb-b4d3-4fb0-b7b7-ab6430c2ab63",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A44%3A08.8947984Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T13%3A01%3A28.3160478Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:43:26.1841976Z"
+ "CreatedOnDate": "2022-07-27T13:00:45.7778790Z"
},
"properties": {
- "poolId": "8997a29e-4a06-df48-818e-0d05e7f27cf1",
+ "poolId": "a34b1a7e-046f-5b7d-14e3-f14c127c9483",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8/capacityPools/sdk-py-tests-pool-1",
"qosType": "Manual",
"totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
@@ -829,184 +811,181 @@
"provisioningState": "Deleting"
},
"systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T13:42:53.8165062Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:43:26.3480616Z"
+ "lastModifiedAt": "2022-07-27T13:00:45.9318061Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 13:44:48 GMT",
+ "Date": "Wed, 27 Jul 2022 13:02:08 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "bf762a58-caba-40d8-aeaa-f68234181937",
- "x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134449Z:bf762a58-caba-40d8-aeaa-f68234181937"
+ "x-ms-correlation-request-id": "03b6866e-9785-4675-901e-41217db23019",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14968",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130209Z:03b6866e-9785-4675-901e-41217db23019"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 13:44:59 GMT",
+ "Date": "Wed, 27 Jul 2022 13:02:18 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1410c62e-0230-4ce0-9b10-72a2b8be3f97",
- "x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134500Z:1410c62e-0230-4ce0-9b10-72a2b8be3f97"
+ "x-ms-correlation-request-id": "e1765627-c493-4ee1-b95b-ff0daccb8866",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14967",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130219Z:e1765627-c493-4ee1-b95b-ff0daccb8866"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 13:45:10 GMT",
+ "Date": "Wed, 27 Jul 2022 13:02:29 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f7ae0d80-7ddf-46ab-b4fd-4c8b8ab22283",
- "x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134510Z:f7ae0d80-7ddf-46ab-b4fd-4c8b8ab22283"
+ "x-ms-correlation-request-id": "4aff07f0-ca34-4190-b3de-7c6a859f6257",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14966",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130230Z:4aff07f0-ca34-4190-b3de-7c6a859f6257"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 13:45:20 GMT",
+ "Date": "Wed, 27 Jul 2022 13:02:39 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "dc413aed-df53-4d6c-96d2-b533d038f7e3",
- "x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134520Z:dc413aed-df53-4d6c-96d2-b533d038f7e3"
+ "x-ms-correlation-request-id": "538fe7cd-3e8b-4481-b5a3-33cc826e28ef",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14965",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130240Z:538fe7cd-3e8b-4481-b5a3-33cc826e28ef"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "283",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:45:31 GMT",
+ "Date": "Wed, 27 Jul 2022 13:02:50 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "25110d5a-48dc-47a6-b6a2-8f30ab38e8fa",
+ "x-ms-correlation-request-id": "a3adeb36-31f3-4533-8d5b-d1abcd415df0",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134531Z:25110d5a-48dc-47a6-b6a2-8f30ab38e8fa"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130250Z:a3adeb36-31f3-4533-8d5b-d1abcd415df0"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/a24ce284-8d66-4dba-b0cf-d8af84dfae5a?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d1d181d5-f115-49e8-85ca-5627b2b49989?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 13:45:32 GMT",
+ "Date": "Wed, 27 Jul 2022 13:02:51 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a24ce284-8d66-4dba-b0cf-d8af84dfae5a?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d1d181d5-f115-49e8-85ca-5627b2b49989?api-version=2022-03-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": "e31f8c3b-6ebe-4edd-96a3-8a76f9b0da6c",
- "x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134532Z:e31f8c3b-6ebe-4edd-96a3-8a76f9b0da6c",
+ "x-ms-correlation-request-id": "f555851b-3404-45ff-acf0-3c3b6bb47110",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14964",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130252Z:f555851b-3404-45ff-acf0-3c3b6bb47110",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a24ce284-8d66-4dba-b0cf-d8af84dfae5a?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d1d181d5-f115-49e8-85ca-5627b2b49989?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1014,7 +993,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:46:02 GMT",
+ "Date": "Wed, 27 Jul 2022 13:03:22 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1022,31 +1001,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4bf6935a-3026-4f30-a134-c59130833029",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134602Z:4bf6935a-3026-4f30-a134-c59130833029",
+ "x-ms-correlation-request-id": "3a604856-33df-4bc8-8710-785e34a36e0e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11944",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130322Z:3a604856-33df-4bc8-8710-785e34a36e0e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a24ce284-8d66-4dba-b0cf-d8af84dfae5a",
- "name": "a24ce284-8d66-4dba-b0cf-d8af84dfae5a",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d1d181d5-f115-49e8-85ca-5627b2b49989",
+ "name": "d1d181d5-f115-49e8-85ca-5627b2b49989",
"status": "Succeeded",
- "startTime": "2022-05-23T13:45:32.2297452Z",
- "endTime": "2022-05-23T13:45:32.2453883Z",
+ "startTime": "2022-07-27T13:02:51.9904419Z",
+ "endTime": "2022-07-27T13:02:52.0217217Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a24ce284-8d66-4dba-b0cf-d8af84dfae5a?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d1d181d5-f115-49e8-85ca-5627b2b49989?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1054,7 +1033,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:46:02 GMT",
+ "Date": "Wed, 27 Jul 2022 13:03:22 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1062,19 +1041,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a84a61fa-155c-4d3a-ade1-a0693c8f394b",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134602Z:a84a61fa-155c-4d3a-ade1-a0693c8f394b",
+ "x-ms-correlation-request-id": "69c094a3-36e3-463e-adc0-7f589e087100",
+ "x-ms-ratelimit-remaining-subscription-reads": "11943",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130322Z:69c094a3-36e3-463e-adc0-7f589e087100",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T13%3A45%3A32.2260519Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T13%3A02%3A51.9963479Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T13:42:15.7334104Z"
+ "CreatedOnDate": "2022-07-27T12:59:37.4189124Z"
},
"properties": {
"encryption": {
@@ -1085,41 +1064,41 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T13:42:19.4722736Z",
+ "createdAt": "2022-07-27T12:59:39.457979Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T13:42:19.4722736Z"
+ "lastModifiedAt": "2022-07-27T12:59:39.457979Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "249",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 13:46:04 GMT",
+ "Date": "Wed, 27 Jul 2022 13:03:22 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "85f131cd-5a83-4deb-bf5b-52378fc9226f",
+ "x-ms-correlation-request-id": "a98914f4-625d-452c-b5e7-175a03b9f8dc",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T134605Z:85f131cd-5a83-4deb-bf5b-52378fc9226f"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130322Z:a98914f4-625d-452c-b5e7-175a03b9f8dc"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
}
}
}
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 4fb40d3b9d9e..bc6de0eaecb0 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 23 May 2022 15:01:12 GMT",
+ "Date": "Mon, 25 Jul 2022 17:31: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.12794.4 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 23 May 2022 15:01:12 GMT",
+ "Date": "Mon, 25 Jul 2022 17:31: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.12794.4 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13201.7 - NEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "b47a80c0-f068-4c69-b9d6-4b1bc40e46da",
+ "client-request-id": "c5177899-d9c1-4c7f-a9ac-3859f49c4a8a",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "b47a80c0-f068-4c69-b9d6-4b1bc40e46da",
+ "client-request-id": "c5177899-d9c1-4c7f-a9ac-3859f49c4a8a",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:01:12 GMT",
+ "Date": "Mon, 25 Jul 2022 17:31:26 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12794.4 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - WEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,45 +213,587 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "93",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2",
+ "properties": {
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ }
+ }
+ },
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Azure-AsyncNotification": "Enabled",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7233dfd7-2c36-44d1-a719-7869be8b2c54?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Encoding": "gzip",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 17:31:34 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Retry-After": "3",
+ "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": "6ed0065e-2533-4640-84af-4898c60bb6f0",
+ "x-ms-correlation-request-id": "364eaa0c-e830-4998-afb2-27801904c302",
+ "x-ms-ratelimit-remaining-subscription-writes": "1199",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173134Z:364eaa0c-e830-4998-afb2-27801904c302"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-cd95297f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f",
+ "etag": "W/\u002224403c83-9679-45b8-a368-d75e1476a51d\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-25T17:31:28.8895481Z"
+ },
+ "properties": {
+ "provisioningState": "Updating",
+ "resourceGuid": "1010631b-2874-4ae7-aa54-ce503b8aad32",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7233dfd7-2c36-44d1-a719-7869be8b2c54?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 17:31:37 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": "1aac6ba1-ebe3-4a75-876f-bac04cedc06e",
+ "x-ms-correlation-request-id": "44553413-a530-4a67-8df7-d70d55daf002",
+ "x-ms-ratelimit-remaining-subscription-reads": "11999",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173137Z:44553413-a530-4a67-8df7-d70d55daf002"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 17:31:37 GMT",
+ "ETag": "W/\u0022a081e117-e14d-4dfd-b1c4-ed37a27481dc\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": "eada0539-b291-4c79-bb41-1d738903dfb0",
+ "x-ms-correlation-request-id": "308cb974-537d-49d7-892e-163a12d9e301",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173138Z:308cb974-537d-49d7-892e-163a12d9e301"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-cd95297f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f",
+ "etag": "W/\u0022a081e117-e14d-4dfd-b1c4-ed37a27481dc\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-25T17:31:28.8895481Z"
+ },
+ "properties": {
+ "provisioningState": "Succeeded",
+ "resourceGuid": "1010631b-2874-4ae7-aa54-ce503b8aad32",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "151",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "RequestBody": {
+ "properties": {
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "properties": {
+ "serviceName": "Microsoft.Netapp/volumes"
+ }
+ }
+ ]
+ }
+ },
+ "StatusCode": 201,
+ "ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/df4b40a3-6d89-4853-8f5e-964baafdfd37?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "1318",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 17:31:38 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Retry-After": "3",
+ "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": "30993660-0e01-4eee-be63-ea1e47233dd2",
+ "x-ms-correlation-request-id": "e1270135-38a0-43bd-b955-42b0f5e2ac61",
+ "x-ms-ratelimit-remaining-subscription-writes": "1198",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173138Z:e1270135-38a0-43bd-b955-42b0f5e2ac61"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f/subnets/default",
+ "etag": "W/\u0022c785c4e3-e66c-4840-ab01-9993a8b368ca\u0022",
+ "properties": {
+ "provisioningState": "Updating",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u0022c785c4e3-e66c-4840-ab01-9993a8b368ca\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/df4b40a3-6d89-4853-8f5e-964baafdfd37?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 17:31:41 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": "0dfad86b-adde-47af-be6c-729bc32ed389",
+ "x-ms-correlation-request-id": "679a6011-afde-4b89-b6de-12dc90c5d619",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173142Z:679a6011-afde-4b89-b6de-12dc90c5d619"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 17:31:42 GMT",
+ "ETag": "W/\u0022256983d0-f249-42d6-84a1-43d35239fb87\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": "de563c05-b783-44f0-817e-8e29fc859e8a",
+ "x-ms-correlation-request-id": "e415c6dd-90e9-4b8d-9ba4-94ad060acdf3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11996",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173142Z:e415c6dd-90e9-4b8d-9ba4-94ad060acdf3"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f/subnets/default",
+ "etag": "W/\u0022256983d0-f249-42d6-84a1-43d35239fb87\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u0022256983d0-f249-42d6-84a1-43d35239fb87\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "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.11.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": "Mon, 25 Jul 2022 17:31: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.13315.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.11.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": "Mon, 25 Jul 2022 17:31: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.13201.7 - 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": "c8e50f23-d8f1-4f81-b11f-67f2fc8c10c8",
+ "Connection": "keep-alive",
+ "Content-Length": "281",
+ "Content-Type": "application/x-www-form-urlencoded",
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.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.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
+ },
+ "RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "c8e50f23-d8f1-4f81-b11f-67f2fc8c10c8",
+ "Content-Length": "114",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 17:31:42 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.13315.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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f?api-version=2022-03-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "23",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/d1730b2f-4979-4c70-a107-95d246dedcbd?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/828cfefe-329c-4898-abf8-a637bab337e2?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "699",
+ "Content-Length": "700",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:01:19 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A01%3A18.8860685Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 17:31:46 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T17%3A31%3A46.1979781Z\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": "6d52b8a1-7283-4126-85e3-ae0f92807fa0",
- "x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150119Z:6d52b8a1-7283-4126-85e3-ae0f92807fa0",
+ "x-ms-correlation-request-id": "9b48dd93-05fe-4089-a963-1d1dbb967f9c",
+ "x-ms-ratelimit-remaining-subscription-writes": "1197",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173147Z:9b48dd93-05fe-4089-a963-1d1dbb967f9c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A01%3A18.8860685Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A31%3A46.1979781Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:01:14.4403636Z"
+ "CreatedOnDate": "2022-07-25T17:31:43.8594453Z"
},
"properties": {
"provisioningState": "Creating"
@@ -258,21 +801,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:01:18.1390916Z",
+ "createdAt": "2022-07-25T17:31:45.237512Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:01:18.1390916Z"
+ "lastModifiedAt": "2022-07-25T17:31:45.237512Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d1730b2f-4979-4c70-a107-95d246dedcbd?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/828cfefe-329c-4898-abf8-a637bab337e2?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +823,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:01:50 GMT",
+ "Date": "Mon, 25 Jul 2022 17:32:17 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +831,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "92c6dde5-f8b5-4d3d-87e5-4afda7483fd4",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150150Z:92c6dde5-f8b5-4d3d-87e5-4afda7483fd4",
+ "x-ms-correlation-request-id": "b5c3bf55-1d0c-470c-bd52-6a29a54d84a6",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173217Z:b5c3bf55-1d0c-470c-bd52-6a29a54d84a6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d1730b2f-4979-4c70-a107-95d246dedcbd",
- "name": "d1730b2f-4979-4c70-a107-95d246dedcbd",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/828cfefe-329c-4898-abf8-a637bab337e2",
+ "name": "828cfefe-329c-4898-abf8-a637bab337e2",
"status": "Succeeded",
- "startTime": "2022-05-23T15:01:18.8914535Z",
- "endTime": "2022-05-23T15:01:18.9070637Z",
+ "startTime": "2022-07-25T17:31:46.1990667Z",
+ "endTime": "2022-07-25T17:31:46.2928173Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +863,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:01:50 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A01%3A18.9115561Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 17:32:17 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T17%3A31%3A46.2489137Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,35 +872,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1995765a-54a9-4e92-ae6c-e71c7f83e55f",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150150Z:1995765a-54a9-4e92-ae6c-e71c7f83e55f",
+ "x-ms-correlation-request-id": "e087a789-def5-4d4d-ba6f-a131c03c1327",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173218Z:e087a789-def5-4d4d-ba6f-a131c03c1327",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A01%3A18.9115561Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A31%3A46.2489137Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:01:14.4403636Z"
+ "CreatedOnDate": "2022-07-25T17:31:43.8594453Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -370,26 +913,26 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:01:18.1390916Z",
+ "createdAt": "2022-07-25T17:31:45.237512Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:01:18.1390916Z"
+ "lastModifiedAt": "2022-07-25T17:31:45.237512Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "150",
+ "Content-Length": "138",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"size": 4398046511104,
"serviceLevel": "Premium",
@@ -399,30 +942,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c31b4fd0-ac07-4d75-9a18-7bffbe4921d3?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f7c82120-1a91-45ab-bcde-c28b11d06a56?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "917",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:01:53 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A01%3A52.3207008Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 17:32:20 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T17%3A32%3A20.027311Z\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": "9f5f178a-5e58-426e-9a95-8534d7cc3e95",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150153Z:9f5f178a-5e58-426e-9a95-8534d7cc3e95",
+ "x-ms-correlation-request-id": "a6fee8cb-8a2b-4ac0-bdde-dd9af9fb21ba",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173221Z:a6fee8cb-8a2b-4ac0-bdde-dd9af9fb21ba",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A01%3A52.3207008Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A32%3A20.027311Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:01:50.8108845Z"
+ "CreatedOnDate": "2022-07-25T17:32:18.3836262Z"
},
"properties": {
"serviceLevel": "Premium",
@@ -436,21 +979,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:01:51.9205181Z",
+ "createdAt": "2022-07-25T17:32:19.8527644Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:01:51.9205181Z"
+ "lastModifiedAt": "2022-07-25T17:32:19.8527644Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c31b4fd0-ac07-4d75-9a18-7bffbe4921d3?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f7c82120-1a91-45ab-bcde-c28b11d06a56?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -458,7 +1001,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:02:23 GMT",
+ "Date": "Mon, 25 Jul 2022 17:32:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -466,31 +1009,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "cce053a4-ecbe-458c-ab15-1f4e455fa9c4",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150223Z:cce053a4-ecbe-458c-ab15-1f4e455fa9c4",
+ "x-ms-correlation-request-id": "5076c65e-37b1-49c8-b2b0-852c27957215",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173251Z:5076c65e-37b1-49c8-b2b0-852c27957215",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c31b4fd0-ac07-4d75-9a18-7bffbe4921d3",
- "name": "c31b4fd0-ac07-4d75-9a18-7bffbe4921d3",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f7c82120-1a91-45ab-bcde-c28b11d06a56",
+ "name": "f7c82120-1a91-45ab-bcde-c28b11d06a56",
"status": "Succeeded",
- "startTime": "2022-05-23T15:01:52.3151827Z",
- "endTime": "2022-05-23T15:01:52.971599Z",
+ "startTime": "2022-07-25T17:32:20.0292416Z",
+ "endTime": "2022-07-25T17:32:20.2948203Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -498,8 +1041,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:02:23 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A01%3A52.9718773Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 17:32:51 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T17%3A32%3A20.2917302Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -507,22 +1050,22 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1eef0ffe-2b35-488c-8b5f-e0a73ae518ef",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150224Z:1eef0ffe-2b35-488c-8b5f-e0a73ae518ef",
+ "x-ms-correlation-request-id": "02dac5b2-ca71-43fe-9161-6026146534b5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173251Z:02dac5b2-ca71-43fe-9161-6026146534b5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A01%3A52.9718773Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A32%3A20.2917302Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:01:50.8108845Z"
+ "CreatedOnDate": "2022-07-25T17:32:18.3836262Z"
},
"properties": {
- "poolId": "746033ee-d90b-9a7a-e17e-d309abed0b8d",
+ "poolId": "babd14e8-be22-573f-c3a8-3d103aaf9f33",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
@@ -531,38 +1074,30 @@
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T15:01:51.9205181Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:01:51.9205181Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "800",
+ "Content-Length": "779",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-cd95297f",
"serviceLevel": "Premium",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -576,45 +1111,44 @@
"avsDataStore": "Disabled",
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled"
+ "defaultGroupQuotaInKiBs": 0
}
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/632b27d1-5d7d-426a-9a72-0ace3aab3909?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/42da34fe-b36d-4f60-8412-7e02545f6047?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "1561",
+ "Content-Length": "1577",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:02:30 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A02%3A29.9479092Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 17:32:54 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T17%3A32%3A53.8686368Z\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": "48185118-9766-43dc-bb30-046c04612c84",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150230Z:48185118-9766-43dc-bb30-046c04612c84",
+ "x-ms-correlation-request-id": "f1c02838-3a0f-46eb-afee-3d007440d8f2",
+ "x-ms-ratelimit-remaining-subscription-writes": "1195",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173254Z:f1c02838-3a0f-46eb-afee-3d007440d8f2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A02%3A29.9479092Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A32%3A53.8686368Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:02:24.2803115Z"
+ "CreatedOnDate": "2022-07-25T17:32:52.0565027Z"
},
"properties": {
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-cd95297f",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -629,68 +1163,27 @@
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
"provisioningState": "Creating"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:02:26.0457Z",
+ "createdAt": "2022-07-25T17:32:53.5701566Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:02:26.0457Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/632b27d1-5d7d-426a-9a72-0ace3aab3909?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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, 23 May 2022 15:03: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": "20292376-33f7-4789-b801-ee2e6ae891d0",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150300Z:20292376-33f7-4789-b801-ee2e6ae891d0",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/632b27d1-5d7d-426a-9a72-0ace3aab3909",
- "name": "632b27d1-5d7d-426a-9a72-0ace3aab3909",
- "status": "Creating",
- "startTime": "2022-05-23T15:02:29.9552288Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "lastModifiedAt": "2022-07-25T17:32:53.5701566Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/632b27d1-5d7d-426a-9a72-0ace3aab3909?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/42da34fe-b36d-4f60-8412-7e02545f6047?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -698,7 +1191,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:03:30 GMT",
+ "Date": "Mon, 25 Jul 2022 17:33:24 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -706,31 +1199,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d21e84f7-1f5c-4abd-af65-d81a95f2f6d3",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150331Z:d21e84f7-1f5c-4abd-af65-d81a95f2f6d3",
+ "x-ms-correlation-request-id": "796633d8-854a-4764-aeb6-99e767611c84",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173324Z:796633d8-854a-4764-aeb6-99e767611c84",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/632b27d1-5d7d-426a-9a72-0ace3aab3909",
- "name": "632b27d1-5d7d-426a-9a72-0ace3aab3909",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/42da34fe-b36d-4f60-8412-7e02545f6047",
+ "name": "42da34fe-b36d-4f60-8412-7e02545f6047",
"status": "Creating",
- "startTime": "2022-05-23T15:02:29.9552288Z",
+ "startTime": "2022-07-25T17:32:53.8747288Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/632b27d1-5d7d-426a-9a72-0ace3aab3909?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/42da34fe-b36d-4f60-8412-7e02545f6047?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -738,7 +1231,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:04:00 GMT",
+ "Date": "Mon, 25 Jul 2022 17:33:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -746,31 +1239,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "62b81bbb-2615-4a97-9698-c9d131256348",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150401Z:62b81bbb-2615-4a97-9698-c9d131256348",
+ "x-ms-correlation-request-id": "873af542-d0c0-48f5-9e54-f9aa77263f2c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173355Z:873af542-d0c0-48f5-9e54-f9aa77263f2c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/632b27d1-5d7d-426a-9a72-0ace3aab3909",
- "name": "632b27d1-5d7d-426a-9a72-0ace3aab3909",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/42da34fe-b36d-4f60-8412-7e02545f6047",
+ "name": "42da34fe-b36d-4f60-8412-7e02545f6047",
"status": "Creating",
- "startTime": "2022-05-23T15:02:29.9552288Z",
+ "startTime": "2022-07-25T17:32:53.8747288Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/632b27d1-5d7d-426a-9a72-0ace3aab3909?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/42da34fe-b36d-4f60-8412-7e02545f6047?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -778,7 +1271,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:04:30 GMT",
+ "Date": "Mon, 25 Jul 2022 17:34:25 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -786,31 +1279,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "29a61466-fb71-402d-90d0-3b87eb1451b0",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150431Z:29a61466-fb71-402d-90d0-3b87eb1451b0",
+ "x-ms-correlation-request-id": "e49ab4a1-b4b9-4fb0-9b9d-79f112a4cc6f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173425Z:e49ab4a1-b4b9-4fb0-9b9d-79f112a4cc6f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/632b27d1-5d7d-426a-9a72-0ace3aab3909",
- "name": "632b27d1-5d7d-426a-9a72-0ace3aab3909",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/42da34fe-b36d-4f60-8412-7e02545f6047",
+ "name": "42da34fe-b36d-4f60-8412-7e02545f6047",
"status": "Creating",
- "startTime": "2022-05-23T15:02:29.9552288Z",
+ "startTime": "2022-07-25T17:32:53.8747288Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/632b27d1-5d7d-426a-9a72-0ace3aab3909?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/42da34fe-b36d-4f60-8412-7e02545f6047?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -818,7 +1311,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:05:01 GMT",
+ "Date": "Mon, 25 Jul 2022 17:34:55 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -826,31 +1319,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "78e3af3f-3c8f-4123-b50d-6a69d7d36b7c",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150501Z:78e3af3f-3c8f-4123-b50d-6a69d7d36b7c",
+ "x-ms-correlation-request-id": "a45db04e-32e4-4862-bc31-8076d393a2ae",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173455Z:a45db04e-32e4-4862-bc31-8076d393a2ae",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/632b27d1-5d7d-426a-9a72-0ace3aab3909",
- "name": "632b27d1-5d7d-426a-9a72-0ace3aab3909",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/42da34fe-b36d-4f60-8412-7e02545f6047",
+ "name": "42da34fe-b36d-4f60-8412-7e02545f6047",
"status": "Creating",
- "startTime": "2022-05-23T15:02:29.9552288Z",
+ "startTime": "2022-07-25T17:32:53.8747288Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/632b27d1-5d7d-426a-9a72-0ace3aab3909?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/42da34fe-b36d-4f60-8412-7e02545f6047?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -858,7 +1351,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:05:31 GMT",
+ "Date": "Mon, 25 Jul 2022 17:35:25 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -866,31 +1359,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d1c518c0-a8a8-44cd-837b-ea40aca2e7d5",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150532Z:d1c518c0-a8a8-44cd-837b-ea40aca2e7d5",
+ "x-ms-correlation-request-id": "4097456b-65e6-449d-b2c5-616f2443447d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173526Z:4097456b-65e6-449d-b2c5-616f2443447d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/632b27d1-5d7d-426a-9a72-0ace3aab3909",
- "name": "632b27d1-5d7d-426a-9a72-0ace3aab3909",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/42da34fe-b36d-4f60-8412-7e02545f6047",
+ "name": "42da34fe-b36d-4f60-8412-7e02545f6047",
"status": "Creating",
- "startTime": "2022-05-23T15:02:29.9552288Z",
+ "startTime": "2022-07-25T17:32:53.8747288Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/632b27d1-5d7d-426a-9a72-0ace3aab3909?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/42da34fe-b36d-4f60-8412-7e02545f6047?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -898,7 +1391,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:06:01 GMT",
+ "Date": "Mon, 25 Jul 2022 17:35:56 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -906,31 +1399,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b9d5e5d3-02c5-4f00-8d91-3588c6dabbb1",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150602Z:b9d5e5d3-02c5-4f00-8d91-3588c6dabbb1",
+ "x-ms-correlation-request-id": "631f6bd3-9533-40c6-b2ba-10f6229fb949",
+ "x-ms-ratelimit-remaining-subscription-reads": "11986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173556Z:631f6bd3-9533-40c6-b2ba-10f6229fb949",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/632b27d1-5d7d-426a-9a72-0ace3aab3909",
- "name": "632b27d1-5d7d-426a-9a72-0ace3aab3909",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/42da34fe-b36d-4f60-8412-7e02545f6047",
+ "name": "42da34fe-b36d-4f60-8412-7e02545f6047",
"status": "Creating",
- "startTime": "2022-05-23T15:02:29.9552288Z",
+ "startTime": "2022-07-25T17:32:53.8747288Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/632b27d1-5d7d-426a-9a72-0ace3aab3909?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/42da34fe-b36d-4f60-8412-7e02545f6047?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -938,7 +1431,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:06:31 GMT",
+ "Date": "Mon, 25 Jul 2022 17:36:26 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -946,31 +1439,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6849a683-29d4-49c9-8ae8-aa006ffcb781",
- "x-ms-ratelimit-remaining-subscription-reads": "11988",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150632Z:6849a683-29d4-49c9-8ae8-aa006ffcb781",
+ "x-ms-correlation-request-id": "664e43ce-d826-41f8-b8f7-f54a58840a40",
+ "x-ms-ratelimit-remaining-subscription-reads": "11985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173626Z:664e43ce-d826-41f8-b8f7-f54a58840a40",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/632b27d1-5d7d-426a-9a72-0ace3aab3909",
- "name": "632b27d1-5d7d-426a-9a72-0ace3aab3909",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/42da34fe-b36d-4f60-8412-7e02545f6047",
+ "name": "42da34fe-b36d-4f60-8412-7e02545f6047",
"status": "Creating",
- "startTime": "2022-05-23T15:02:29.9552288Z",
+ "startTime": "2022-07-25T17:32:53.8747288Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/632b27d1-5d7d-426a-9a72-0ace3aab3909?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/42da34fe-b36d-4f60-8412-7e02545f6047?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -978,7 +1471,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:07:02 GMT",
+ "Date": "Mon, 25 Jul 2022 17:36:56 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -986,31 +1479,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "34cb8e4e-e8aa-4e3e-b811-f097d7439e1d",
- "x-ms-ratelimit-remaining-subscription-reads": "11987",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150703Z:34cb8e4e-e8aa-4e3e-b811-f097d7439e1d",
+ "x-ms-correlation-request-id": "e1080428-bb2b-4fea-bebe-9bb5421f7d42",
+ "x-ms-ratelimit-remaining-subscription-reads": "11984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173657Z:e1080428-bb2b-4fea-bebe-9bb5421f7d42",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/632b27d1-5d7d-426a-9a72-0ace3aab3909",
- "name": "632b27d1-5d7d-426a-9a72-0ace3aab3909",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/42da34fe-b36d-4f60-8412-7e02545f6047",
+ "name": "42da34fe-b36d-4f60-8412-7e02545f6047",
"status": "Succeeded",
- "startTime": "2022-05-23T15:02:29.9552288Z",
- "endTime": "2022-05-23T15:06:40.2966838Z",
+ "startTime": "2022-07-25T17:32:53.8747288Z",
+ "endTime": "2022-07-25T17:36:54.1617943Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1018,8 +1511,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:07:02 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A06%3A40.2894Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 17:36:56 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T17%3A36%3A54.1603242Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1027,24 +1520,24 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "92ff3bee-1218-424a-a5ef-1e436b593b9e",
- "x-ms-ratelimit-remaining-subscription-reads": "11986",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150703Z:92ff3bee-1218-424a-a5ef-1e436b593b9e",
+ "x-ms-correlation-request-id": "52c34311-8876-4b07-a2e2-d2afb00d230d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11983",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173657Z:52c34311-8876-4b07-a2e2-d2afb00d230d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A06%3A40.2894Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A36%3A54.1603242Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:02:24.2803115Z"
+ "CreatedOnDate": "2022-07-25T17:32:52.0565027Z"
},
"properties": {
- "fileSystemId": "17154004-b10f-e859-8a33-4e30b3df6f24",
+ "fileSystemId": "ccd774a7-e105-0910-f741-fcac4b243c8b",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-cd95297f",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1070,11 +1563,11 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_e9e0c923",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_fc769701",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
+ "networkSiblingSetId": "ab7763c0-0463-d6df-f940-dc2eb81d55f3",
+ "storageToNetworkProximity": "T2",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
"securityStyle": "Unix",
@@ -1085,9 +1578,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "17154004-b10f-e859-8a33-4e30b3df6f24",
- "fileSystemId": "17154004-b10f-e859-8a33-4e30b3df6f24",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "ccd774a7-e105-0910-f741-fcac4b243c8b",
+ "fileSystemId": "ccd774a7-e105-0910-f741-fcac4b243c8b",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1099,27 +1592,18 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
- "encrypted": true,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T15:02:26.0457Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:02:26.0457Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1127,8 +1611,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:07:03 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A06%3A40.2894Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 17:36:57 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T17%3A36%3A54.1603242Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1136,24 +1620,24 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "95f1d225-ed94-4541-a1e6-f09ff259eda9",
- "x-ms-ratelimit-remaining-subscription-reads": "11985",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150704Z:95f1d225-ed94-4541-a1e6-f09ff259eda9",
+ "x-ms-correlation-request-id": "1a83cff7-e4fa-4124-bd35-7fff13679b66",
+ "x-ms-ratelimit-remaining-subscription-reads": "11982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173657Z:1a83cff7-e4fa-4124-bd35-7fff13679b66",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A06%3A40.2894Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A36%3A54.1603242Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:02:24.2803115Z"
+ "CreatedOnDate": "2022-07-25T17:32:52.0565027Z"
},
"properties": {
- "fileSystemId": "17154004-b10f-e859-8a33-4e30b3df6f24",
+ "fileSystemId": "ccd774a7-e105-0910-f741-fcac4b243c8b",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-cd95297f",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1179,11 +1663,11 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_e9e0c923",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_fc769701",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
+ "networkSiblingSetId": "ab7763c0-0463-d6df-f940-dc2eb81d55f3",
+ "storageToNetworkProximity": "T2",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
"securityStyle": "Unix",
@@ -1194,9 +1678,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "17154004-b10f-e859-8a33-4e30b3df6f24",
- "fileSystemId": "17154004-b10f-e859-8a33-4e30b3df6f24",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "ccd774a7-e105-0910-f741-fcac4b243c8b",
+ "fileSystemId": "ccd774a7-e105-0910-f741-fcac4b243c8b",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1208,109 +1692,60 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
- "encrypted": true,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T15:02:26.0457Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:02:26.0457Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "23",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2"
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2635f769-283a-4acf-812e-882076c200e2?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e9fce348-15ec-4ffa-b3f4-f5e80e129f98?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "501",
+ "Content-Length": "518",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:07:03 GMT",
+ "Date": "Mon, 25 Jul 2022 17:36:57 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2635f769-283a-4acf-812e-882076c200e2?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e9fce348-15ec-4ffa-b3f4-f5e80e129f98?api-version=2022-03-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": "61634316-d319-471c-b45c-48753110707f",
- "x-ms-ratelimit-remaining-subscription-writes": "1196",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150704Z:61634316-d319-471c-b45c-48753110707f",
+ "x-ms-correlation-request-id": "61b30bcb-be44-444b-b14f-502b841390fb",
+ "x-ms-ratelimit-remaining-subscription-writes": "1194",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173658Z:61b30bcb-be44-444b-b14f-502b841390fb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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",
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"provisioningState": "Creating"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2635f769-283a-4acf-812e-882076c200e2?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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, 23 May 2022 15: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": "11f57a9a-2b54-488d-ade3-825949fa0923",
- "x-ms-ratelimit-remaining-subscription-reads": "11984",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150734Z:11f57a9a-2b54-488d-ade3-825949fa0923",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2635f769-283a-4acf-812e-882076c200e2",
- "name": "2635f769-283a-4acf-812e-882076c200e2",
- "status": "Creating",
- "startTime": "2022-05-23T15:07:04.5768749Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2635f769-283a-4acf-812e-882076c200e2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e9fce348-15ec-4ffa-b3f4-f5e80e129f98?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1318,7 +1753,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:08:04 GMT",
+ "Date": "Mon, 25 Jul 2022 17:37:28 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1326,70 +1761,70 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2b932892-a305-4355-861a-525507e98c6c",
- "x-ms-ratelimit-remaining-subscription-reads": "11983",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150805Z:2b932892-a305-4355-861a-525507e98c6c",
+ "x-ms-correlation-request-id": "4d4d7e2f-caf8-43dc-bcda-f07541817f6f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11981",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173728Z:4d4d7e2f-caf8-43dc-bcda-f07541817f6f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2635f769-283a-4acf-812e-882076c200e2",
- "name": "2635f769-283a-4acf-812e-882076c200e2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e9fce348-15ec-4ffa-b3f4-f5e80e129f98",
+ "name": "e9fce348-15ec-4ffa-b3f4-f5e80e129f98",
"status": "Succeeded",
- "startTime": "2022-05-23T15:07:04.5768749Z",
- "endTime": "2022-05-23T15:07:43.6974471Z",
+ "startTime": "2022-07-25T17:36:58.3805123Z",
+ "endTime": "2022-07-25T17:37:01.1304498Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/2635f769-283a-4acf-812e-882076c200e2?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e9fce348-15ec-4ffa-b3f4-f5e80e129f98?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 201,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "617",
+ "Content-Length": "634",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:08:05 GMT",
+ "Date": "Mon, 25 Jul 2022 17:37: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": "96637697-760d-468a-8172-6753a77a9db8",
- "x-ms-ratelimit-remaining-subscription-reads": "11982",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150805Z:96637697-760d-468a-8172-6753a77a9db8",
+ "x-ms-correlation-request-id": "308aa954-cd3c-4020-93b7-91c47a1aa78c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11980",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173729Z:308aa954-cd3c-4020-93b7-91c47a1aa78c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "5/23/2022 3:07:43 PM",
- "location": "southcentralusstage",
+ "etag": "7/25/2022 5:37:01 PM",
+ "location": "westus2",
"properties": {
"provisioningState": "Succeeded",
- "snapshotId": "974b74c5-7dd7-a2dc-88e4-282a48de251d",
- "created": "2022-05-23T15:07:08Z"
+ "snapshotId": "cb3fa839-e1d3-8e6c-1a01-61b4cf00e5cb",
+ "created": "2022-07-25T17:36:58Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f/snapshots?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1397,7 +1832,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:08:05 GMT",
+ "Date": "Mon, 25 Jul 2022 17:37:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1405,65 +1840,65 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "79158521-35c3-4260-ac04-a448241c3a97",
- "x-ms-ratelimit-remaining-subscription-reads": "11981",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150806Z:79158521-35c3-4260-ac04-a448241c3a97",
+ "x-ms-correlation-request-id": "7cfc9794-a90c-46b5-8bb1-34067e12c303",
+ "x-ms-ratelimit-remaining-subscription-reads": "11979",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173730Z:7cfc9794-a90c-46b5-8bb1-34067e12c303",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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",
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"provisioningState": "Succeeded",
- "snapshotId": "974b74c5-7dd7-a2dc-88e4-282a48de251d",
- "created": "2022-05-23T15:07:08Z"
+ "snapshotId": "cb3fa839-e1d3-8e6c-1a01-61b4cf00e5cb",
+ "created": "2022-07-25T17:36:58Z"
}
}
]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/d702190c-020d-4b1d-94ec-befd4a345221?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0fd54cae-fdf9-46b4-98ef-f2b7afc8135d?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 15:08:07 GMT",
+ "Date": "Mon, 25 Jul 2022 17:37:31 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d702190c-020d-4b1d-94ec-befd4a345221?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0fd54cae-fdf9-46b4-98ef-f2b7afc8135d?api-version=2022-03-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": "2d09c452-ba30-4a98-a315-02734358eda6",
+ "x-ms-correlation-request-id": "bff08fa5-f914-40df-b150-224f9d325b6b",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150807Z:2d09c452-ba30-4a98-a315-02734358eda6",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173731Z:bff08fa5-f914-40df-b150-224f9d325b6b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d702190c-020d-4b1d-94ec-befd4a345221?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0fd54cae-fdf9-46b4-98ef-f2b7afc8135d?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1471,7 +1906,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:08:36 GMT",
+ "Date": "Mon, 25 Jul 2022 17:38:01 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1479,31 +1914,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fbef2598-c514-44d4-885c-700298e8902c",
- "x-ms-ratelimit-remaining-subscription-reads": "11980",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150837Z:fbef2598-c514-44d4-885c-700298e8902c",
+ "x-ms-correlation-request-id": "2e5a4e71-7cbf-4508-b7b0-d420ec3456d0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11978",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173801Z:2e5a4e71-7cbf-4508-b7b0-d420ec3456d0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d702190c-020d-4b1d-94ec-befd4a345221",
- "name": "d702190c-020d-4b1d-94ec-befd4a345221",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0fd54cae-fdf9-46b4-98ef-f2b7afc8135d",
+ "name": "0fd54cae-fdf9-46b4-98ef-f2b7afc8135d",
"status": "Succeeded",
- "startTime": "2022-05-23T15:08:07.0247779Z",
- "endTime": "2022-05-23T15:08:16.1266168Z",
+ "startTime": "2022-07-25T17:37:31.282586Z",
+ "endTime": "2022-07-25T17:37:33.7834954Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/d702190c-020d-4b1d-94ec-befd4a345221?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0fd54cae-fdf9-46b4-98ef-f2b7afc8135d?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1511,7 +1946,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:08:37 GMT",
+ "Date": "Mon, 25 Jul 2022 17:38:01 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1519,59 +1954,59 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5aa788f0-1989-4b4a-975a-20bf5a103c90",
- "x-ms-ratelimit-remaining-subscription-reads": "11979",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150837Z:5aa788f0-1989-4b4a-975a-20bf5a103c90",
+ "x-ms-correlation-request-id": "a332f10f-e4d7-4ae3-b6bf-af939bb2d134",
+ "x-ms-ratelimit-remaining-subscription-reads": "11977",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173802Z:a332f10f-e4d7-4ae3-b6bf-af939bb2d134",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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",
- "location": "southcentralusstage"
+ "location": "westus2"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "311",
+ "Content-Length": "326",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:08:58 GMT",
+ "Date": "Mon, 25 Jul 2022 17:38: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": "acf3bfc0-273f-4639-b1b9-1884e04be71b",
- "x-ms-ratelimit-remaining-subscription-reads": "11978",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150858Z:acf3bfc0-273f-4639-b1b9-1884e04be71b",
+ "x-ms-correlation-request-id": "9b5b6924-f877-4977-8c39-410d0ee0ed73",
+ "x-ms-ratelimit-remaining-subscription-reads": "11976",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173822Z:9b5b6924-f877-4977-8c39-410d0ee0ed73",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"error": {
"code": "NotFound",
- "message": "The requested snapshot \u0027sdk-py-tests-snapshot-1\u0027 was not found on the volume \u0027sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1\u0027. Please check the requested snapshot. Please note: The snapshot may no longer be available based on configured snapshot policies."
+ "message": "The requested snapshot \u0027sdk-py-tests-snapshot-1\u0027 was not found on the volume \u0027sdk-py-tests-acc-1-cd95297f/sdk-py-tests-pool-1/sdk-py-tests-vol-3-cd95297f\u0027. Please check the requested snapshot. Please note: The snapshot may no longer be available based on configured snapshot policies."
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f/snapshots?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1579,7 +2014,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:08:59 GMT",
+ "Date": "Mon, 25 Jul 2022 17:38:22 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1587,9 +2022,9 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "bfb527fa-33aa-4f09-ad85-99f65c19f2fd",
- "x-ms-ratelimit-remaining-subscription-reads": "11977",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150900Z:bfb527fa-33aa-4f09-ad85-99f65c19f2fd",
+ "x-ms-correlation-request-id": "3d7f688e-dc7f-4cc8-9939-de7b9b84e981",
+ "x-ms-ratelimit-remaining-subscription-reads": "11975",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173822Z:3d7f688e-dc7f-4cc8-9939-de7b9b84e981",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -1597,43 +2032,43 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/96944ab0-a194-40eb-ac09-dd8a5c007828?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/487c5b4b-63ba-4942-aff5-59cf01e0cfe0?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 15:09:00 GMT",
+ "Date": "Mon, 25 Jul 2022 17:38:22 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/96944ab0-a194-40eb-ac09-dd8a5c007828?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/487c5b4b-63ba-4942-aff5-59cf01e0cfe0?api-version=2022-03-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": "c5419275-9f40-4cce-bb29-83efd68fa1db",
+ "x-ms-correlation-request-id": "de7b0913-725e-46b4-bbbd-14bfc214e6b8",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150900Z:c5419275-9f40-4cce-bb29-83efd68fa1db",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173823Z:de7b0913-725e-46b4-bbbd-14bfc214e6b8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/96944ab0-a194-40eb-ac09-dd8a5c007828?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/487c5b4b-63ba-4942-aff5-59cf01e0cfe0?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1641,7 +2076,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:09:30 GMT",
+ "Date": "Mon, 25 Jul 2022 17:38:53 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1649,31 +2084,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3b7c6fe2-ef8d-49c1-8cfd-8ab8243ade08",
- "x-ms-ratelimit-remaining-subscription-reads": "11976",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T150930Z:3b7c6fe2-ef8d-49c1-8cfd-8ab8243ade08",
+ "x-ms-correlation-request-id": "cf4cad06-6968-40e5-a8f9-cfa2fa4f0e97",
+ "x-ms-ratelimit-remaining-subscription-reads": "11974",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173853Z:cf4cad06-6968-40e5-a8f9-cfa2fa4f0e97",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/96944ab0-a194-40eb-ac09-dd8a5c007828",
- "name": "96944ab0-a194-40eb-ac09-dd8a5c007828",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/487c5b4b-63ba-4942-aff5-59cf01e0cfe0",
+ "name": "487c5b4b-63ba-4942-aff5-59cf01e0cfe0",
"status": "Deleting",
- "startTime": "2022-05-23T15:09:00.5616169Z",
+ "startTime": "2022-07-25T17:38:23.55534Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/96944ab0-a194-40eb-ac09-dd8a5c007828?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/487c5b4b-63ba-4942-aff5-59cf01e0cfe0?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1681,7 +2116,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:10:00 GMT",
+ "Date": "Mon, 25 Jul 2022 17:39:23 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1689,31 +2124,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6eafcd6a-40d8-46c9-bfc8-1472a3a168de",
- "x-ms-ratelimit-remaining-subscription-reads": "11975",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T151001Z:6eafcd6a-40d8-46c9-bfc8-1472a3a168de",
+ "x-ms-correlation-request-id": "3a47210e-8be2-4aea-b102-afd437e7fb49",
+ "x-ms-ratelimit-remaining-subscription-reads": "11973",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173924Z:3a47210e-8be2-4aea-b102-afd437e7fb49",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/96944ab0-a194-40eb-ac09-dd8a5c007828",
- "name": "96944ab0-a194-40eb-ac09-dd8a5c007828",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/487c5b4b-63ba-4942-aff5-59cf01e0cfe0",
+ "name": "487c5b4b-63ba-4942-aff5-59cf01e0cfe0",
"status": "Deleting",
- "startTime": "2022-05-23T15:09:00.5616169Z",
+ "startTime": "2022-07-25T17:38:23.55534Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/96944ab0-a194-40eb-ac09-dd8a5c007828?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/487c5b4b-63ba-4942-aff5-59cf01e0cfe0?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1721,7 +2156,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:10:30 GMT",
+ "Date": "Mon, 25 Jul 2022 17:39:53 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1729,31 +2164,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c3a43a26-79ce-4477-83eb-7da1ed1072f4",
- "x-ms-ratelimit-remaining-subscription-reads": "11974",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T151031Z:c3a43a26-79ce-4477-83eb-7da1ed1072f4",
+ "x-ms-correlation-request-id": "403ef960-a850-4f13-9ea5-def75fabb58e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11972",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173954Z:403ef960-a850-4f13-9ea5-def75fabb58e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/96944ab0-a194-40eb-ac09-dd8a5c007828",
- "name": "96944ab0-a194-40eb-ac09-dd8a5c007828",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/487c5b4b-63ba-4942-aff5-59cf01e0cfe0",
+ "name": "487c5b4b-63ba-4942-aff5-59cf01e0cfe0",
"status": "Succeeded",
- "startTime": "2022-05-23T15:09:00.5616169Z",
- "endTime": "2022-05-23T15:10:23.312606Z",
+ "startTime": "2022-07-25T17:38:23.55534Z",
+ "endTime": "2022-07-25T17:39:35.9417434Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/96944ab0-a194-40eb-ac09-dd8a5c007828?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/487c5b4b-63ba-4942-aff5-59cf01e0cfe0?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1761,7 +2196,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:10:30 GMT",
+ "Date": "Mon, 25 Jul 2022 17:39:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1769,25 +2204,26 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e3962be2-39b1-4281-8c57-1b8d4bcacdd5",
- "x-ms-ratelimit-remaining-subscription-reads": "11973",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T151031Z:e3962be2-39b1-4281-8c57-1b8d4bcacdd5",
+ "x-ms-correlation-request-id": "ca9bb6d1-15e7-4bcc-80d5-5d885245e191",
+ "x-ms-ratelimit-remaining-subscription-reads": "11971",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T173954Z:ca9bb6d1-15e7-4bcc-80d5-5d885245e191",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A10%3A13.9922543Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A38%3A23.5283328Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:02:24.2803115Z"
+ "CreatedOnDate": "2022-07-25T17:32:52.0565027Z"
},
"properties": {
- "fileSystemId": "17154004-b10f-e859-8a33-4e30b3df6f24",
+ "networkFeatures": "Basic",
+ "fileSystemId": "ccd774a7-e105-0910-f741-fcac4b243c8b",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
+ "creationToken": "sdk-py-tests-vol-3-cd95297f",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -1815,25 +2251,24 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "DELETED_baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_e9e0c923",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_fc769701",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f/subnets/default",
+ "networkSiblingSetId": "ab7763c0-0463-d6df-f940-dc2eb81d55f3",
+ "storageToNetworkProximity": "T2",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "746033ee-d90b-9a7a-e17e-d309abed0b8d",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f",
+ "poolId": "babd14e8-be22-573f-c3a8-3d103aaf9f33",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "17154004-b10f-e859-8a33-4e30b3df6f24",
- "fileSystemId": "17154004-b10f-e859-8a33-4e30b3df6f24",
+ "mountTargetId": "ccd774a7-e105-0910-f741-fcac4b243c8b",
+ "fileSystemId": "ccd774a7-e105-0910-f741-fcac4b243c8b",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1852,409 +2287,399 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"encrypted": true,
- "smbAccessBasedEnumeration": "Disabled",
- "smbNonBrowsable": "Disabled",
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T15:02:26.0457Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:02:26.0457Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "306",
+ "Content-Length": "320",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:13:52 GMT",
+ "Date": "Mon, 25 Jul 2022 17:43:18 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "cd79c27c-1136-42c2-be18-b2417af9eb84",
+ "x-ms-correlation-request-id": "4c27e8bb-c5b8-4938-8614-7548fd7c6352",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T151353Z:cd79c27c-1136-42c2-be18-b2417af9eb84"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174318Z:4c27e8bb-c5b8-4938-8614-7548fd7c6352"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/fddb5285-0ffe-4396-b8a6-526c3461928d?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/632763e1-239a-4220-9ca9-7ec22a166001?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 15:14:05 GMT",
+ "Date": "Mon, 25 Jul 2022 17:43:30 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fddb5285-0ffe-4396-b8a6-526c3461928d?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/632763e1-239a-4220-9ca9-7ec22a166001?api-version=2022-03-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": "dcc1aa8c-7440-4492-9e20-8032413ef046",
+ "x-ms-correlation-request-id": "bfdfa9c0-4e03-46b3-ae2c-cac22470d92e",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T151406Z:dcc1aa8c-7440-4492-9e20-8032413ef046",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174330Z:bfdfa9c0-4e03-46b3-ae2c-cac22470d92e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fddb5285-0ffe-4396-b8a6-526c3461928d?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/632763e1-239a-4220-9ca9-7ec22a166001?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "563",
+ "Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:14:35 GMT",
+ "Date": "Mon, 25 Jul 2022 17:44: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": "75c300b0-b32d-432f-a509-bc2968b9f838",
+ "x-ms-correlation-request-id": "6bcb058b-df56-4409-a59f-97e9b1e7d438",
"x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T151436Z:75c300b0-b32d-432f-a509-bc2968b9f838",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174400Z:6bcb058b-df56-4409-a59f-97e9b1e7d438",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fddb5285-0ffe-4396-b8a6-526c3461928d",
- "name": "fddb5285-0ffe-4396-b8a6-526c3461928d",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/632763e1-239a-4220-9ca9-7ec22a166001",
+ "name": "632763e1-239a-4220-9ca9-7ec22a166001",
"status": "Succeeded",
- "startTime": "2022-05-23T15:14:05.8886054Z",
- "endTime": "2022-05-23T15:14:10.2649123Z",
+ "startTime": "2022-07-25T17:43:30.5301611Z",
+ "endTime": "2022-07-25T17:43:30.9834549Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/fddb5285-0ffe-4396-b8a6-526c3461928d?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/632763e1-239a-4220-9ca9-7ec22a166001?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "1182",
+ "Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:14:36 GMT",
+ "Date": "Mon, 25 Jul 2022 17:44: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": "82fbf110-6f8f-4583-857e-39a6bb190508",
+ "x-ms-correlation-request-id": "36bcfe06-a8bf-4645-8f7e-e6e7b2ee1844",
"x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T151436Z:82fbf110-6f8f-4583-857e-39a6bb190508",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174401Z:36bcfe06-a8bf-4645-8f7e-e6e7b2ee1844",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A14%3A05.8919403Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A43%3A30.5221193Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:01:50.8108845Z"
+ "CreatedOnDate": "2022-07-25T17:32:18.3836262Z"
},
"properties": {
- "poolId": "746033ee-d90b-9a7a-e17e-d309abed0b8d",
+ "poolId": "babd14e8-be22-573f-c3a8-3d103aaf9f33",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1",
"qosType": "Auto",
"totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T15:01:51.9205181Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:01:51.9205181Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 15:14:46 GMT",
+ "Date": "Mon, 25 Jul 2022 17:44:11 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "27dd109b-1dbd-4fd4-9b61-fb300c4ae389",
+ "x-ms-correlation-request-id": "961aed9f-f545-461d-8de0-100544a82a6b",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T151446Z:27dd109b-1dbd-4fd4-9b61-fb300c4ae389"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174412Z:961aed9f-f545-461d-8de0-100544a82a6b"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 15:14:56 GMT",
+ "Date": "Mon, 25 Jul 2022 17:44:22 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b19c68ec-d6eb-41be-b2fe-e1847c175e7a",
+ "x-ms-correlation-request-id": "19184de0-ce9c-41f4-b9b4-ce82ff429154",
"x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T151457Z:b19c68ec-d6eb-41be-b2fe-e1847c175e7a"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174422Z:19184de0-ce9c-41f4-b9b4-ce82ff429154"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 15:15:28 GMT",
+ "Date": "Mon, 25 Jul 2022 17:44:32 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "80ca3793-2337-48dd-bd8a-b391e055bb63",
+ "x-ms-correlation-request-id": "859e0785-ec9b-4de9-8da1-abfc0748b498",
"x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T151529Z:80ca3793-2337-48dd-bd8a-b391e055bb63"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174432Z:859e0785-ec9b-4de9-8da1-abfc0748b498"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 15:15:39 GMT",
+ "Date": "Mon, 25 Jul 2022 17:44:42 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9ba646dc-6653-40fd-989f-343e8420ddfb",
+ "x-ms-correlation-request-id": "9a5dc3f2-692a-44bc-8537-46aa8fdbc813",
"x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T151540Z:9ba646dc-6653-40fd-989f-343e8420ddfb"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174443Z:9a5dc3f2-692a-44bc-8537-46aa8fdbc813"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:15:49 GMT",
+ "Date": "Mon, 25 Jul 2022 17:44:53 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "75c84ef6-cf8f-4c2c-9306-db05a0dccc2e",
+ "x-ms-correlation-request-id": "36c06a2d-3b55-4ad0-8d7d-f2ae08116b54",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T151550Z:75c84ef6-cf8f-4c2c-9306-db05a0dccc2e"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174453Z:36c06a2d-3b55-4ad0-8d7d-f2ae08116b54"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/366d4ae7-9e47-414e-8d1c-6fda06932afe?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2585d1b-1748-41f1-b768-9424e92be8cf?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 15:15:51 GMT",
+ "Date": "Mon, 25 Jul 2022 17:44:54 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/366d4ae7-9e47-414e-8d1c-6fda06932afe?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2585d1b-1748-41f1-b768-9424e92be8cf?api-version=2022-03-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": "44eee250-b58f-4209-b98c-7d87a14b1139",
+ "x-ms-correlation-request-id": "ba236d51-0f7c-4704-bdcd-c83a9dd0b1e7",
"x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T151551Z:44eee250-b58f-4209-b98c-7d87a14b1139",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174454Z:ba236d51-0f7c-4704-bdcd-c83a9dd0b1e7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/366d4ae7-9e47-414e-8d1c-6fda06932afe?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2585d1b-1748-41f1-b768-9424e92be8cf?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "527",
+ "Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:16:22 GMT",
+ "Date": "Mon, 25 Jul 2022 17:45: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": "f0b2a6d7-3760-423b-882f-bb097edcd47e",
+ "x-ms-correlation-request-id": "fd5500a5-926c-4ed1-976e-abcc75a2c7d6",
"x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T151622Z:f0b2a6d7-3760-423b-882f-bb097edcd47e",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174525Z:fd5500a5-926c-4ed1-976e-abcc75a2c7d6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/366d4ae7-9e47-414e-8d1c-6fda06932afe",
- "name": "366d4ae7-9e47-414e-8d1c-6fda06932afe",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2585d1b-1748-41f1-b768-9424e92be8cf",
+ "name": "c2585d1b-1748-41f1-b768-9424e92be8cf",
"status": "Succeeded",
- "startTime": "2022-05-23T15:15:51.817867Z",
- "endTime": "2022-05-23T15:15:51.8491106Z",
+ "startTime": "2022-07-25T17:44:54.6981609Z",
+ "endTime": "2022-07-25T17:44:54.7763576Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/366d4ae7-9e47-414e-8d1c-6fda06932afe?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2585d1b-1748-41f1-b768-9424e92be8cf?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "745",
+ "Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:16:22 GMT",
+ "Date": "Mon, 25 Jul 2022 17:45: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": "2e91be87-6dbe-4dc7-816e-09fdaff20ba1",
+ "x-ms-correlation-request-id": "3ede0a7d-dae5-4888-83fe-2baf5d65c2f0",
"x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T151622Z:2e91be87-6dbe-4dc7-816e-09fdaff20ba1",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174525Z:3ede0a7d-dae5-4888-83fe-2baf5d65c2f0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A15%3A51.8259801Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A44%3A54.691119Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:01:14.4403636Z"
+ "CreatedOnDate": "2022-07-25T17:31:43.8594453Z"
},
"properties": {
"encryption": {
@@ -2265,43 +2690,78 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:01:18.1390916Z",
+ "createdAt": "2022-07-25T17:31:45.237512Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:01:18.1390916Z"
+ "lastModifiedAt": "2022-07-25T17:31:45.237512Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:16:24 GMT",
+ "Date": "Mon, 25 Jul 2022 17:45:24 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ce3887be-fc91-4ea2-be88-3c55c5e9a9b0",
+ "x-ms-correlation-request-id": "072d1c6c-4ac5-4f91-9167-2479db626859",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T151624Z:ce3887be-fc91-4ea2-be88-3c55c5e9a9b0"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174525Z:072d1c6c-4ac5-4f91-9167-2479db626859"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f?api-version=2021-08-01",
+ "RequestMethod": "DELETE",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "0",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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/2246b4bd-45d3-4212-9770-f554eda14272?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "0",
+ "Date": "Mon, 25 Jul 2022 17:45:26 GMT",
+ "Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/2246b4bd-45d3-4212-9770-f554eda14272?api-version=2021-08-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": "57e34b5d-9624-4cc8-a855-1925509ac199",
+ "x-ms-correlation-request-id": "75e6b08f-0084-48ca-9ab7-acb808340c2e",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174526Z:75e6b08f-0084-48ca-9ab7-acb808340c2e"
+ },
+ "ResponseBody": null
}
],
"Variables": {}
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 a8f12d6161f7..7321b401dd04 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
@@ -7,7 +7,7 @@
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 23 May 2022 15:33:35 GMT",
+ "Date": "Mon, 25 Jul 2022 18:01: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.12794.4 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 23 May 2022 15:33:35 GMT",
+ "Date": "Mon, 25 Jul 2022 18:01: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.12744.11 - NEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - WEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "99a5d297-ce9f-49dc-a4b9-673878160150",
+ "client-request-id": "d659af11-8d65-4551-98a1-02040033ee9a",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "99a5d297-ce9f-49dc-a4b9-673878160150",
+ "client-request-id": "d659af11-8d65-4551-98a1-02040033ee9a",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:33:36 GMT",
+ "Date": "Mon, 25 Jul 2022 18:01:14 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12794.4 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - NEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,45 +213,585 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "93",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2",
+ "properties": {
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ }
+ }
+ },
+ "StatusCode": 201,
+ "ResponseHeaders": {
+ "Azure-AsyncNotification": "Enabled",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/76db37f2-9ea4-42d4-a28e-1bb625d7e009?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "746",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 18:01:19 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Retry-After": "3",
+ "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": "73a7db43-db21-4b89-b99a-c0d9c15da2df",
+ "x-ms-correlation-request-id": "5a6df4d0-977b-4e2a-aa03-9ea995413534",
+ "x-ms-ratelimit-remaining-subscription-writes": "1192",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180120Z:5a6df4d0-977b-4e2a-aa03-9ea995413534"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-7b9b28b3",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3",
+ "etag": "W/\u0022239b1e53-634e-41c0-b9ad-dfaa663adc8d\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-25T18:01:16.1483348Z"
+ },
+ "properties": {
+ "provisioningState": "Updating",
+ "resourceGuid": "a4c14caf-fce9-4df7-b2af-be15bd9b2780",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/76db37f2-9ea4-42d4-a28e-1bb625d7e009?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 18:01: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": "f4afa132-4c45-41c3-b955-6c10dd255f41",
+ "x-ms-correlation-request-id": "d97d2761-7619-4701-bf49-ec0c72b69a58",
+ "x-ms-ratelimit-remaining-subscription-reads": "11948",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180123Z:d97d2761-7619-4701-bf49-ec0c72b69a58"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 18:01:24 GMT",
+ "ETag": "W/\u0022a885f67c-a4d6-490c-ab21-c807cdd4ac80\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": "71c069a8-7c0e-414f-9785-c4ee637415ef",
+ "x-ms-correlation-request-id": "fa83e3ae-15c9-4a05-9b88-054c5444d30c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11947",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180124Z:fa83e3ae-15c9-4a05-9b88-054c5444d30c"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-7b9b28b3",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3",
+ "etag": "W/\u0022a885f67c-a4d6-490c-ab21-c807cdd4ac80\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-25T18:01:16.1483348Z"
+ },
+ "properties": {
+ "provisioningState": "Succeeded",
+ "resourceGuid": "a4c14caf-fce9-4df7-b2af-be15bd9b2780",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "151",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "RequestBody": {
+ "properties": {
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "properties": {
+ "serviceName": "Microsoft.Netapp/volumes"
+ }
+ }
+ ]
+ }
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/045249ad-90bb-4204-bc00-0e69765adbc5?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8fb551e1-a771-480d-b093-39791ee6c3e8?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "1318",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 18:01:24 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Retry-After": "3",
+ "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": "a729d6eb-2d1e-43de-80bf-13a781971983",
+ "x-ms-correlation-request-id": "8d9917de-ef02-4bba-bcb7-2273e6449c8a",
+ "x-ms-ratelimit-remaining-subscription-writes": "1191",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180124Z:8d9917de-ef02-4bba-bcb7-2273e6449c8a"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3/subnets/default",
+ "etag": "W/\u0022c5db1355-d9bb-4f14-9522-ab150dfb7f50\u0022",
+ "properties": {
+ "provisioningState": "Updating",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u0022c5db1355-d9bb-4f14-9522-ab150dfb7f50\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8fb551e1-a771-480d-b093-39791ee6c3e8?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 18:01: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": "6ee0370a-2b04-4692-b760-d059dea93a65",
+ "x-ms-correlation-request-id": "7945aacf-2626-4773-ab8d-b046e52c2861",
+ "x-ms-ratelimit-remaining-subscription-reads": "11946",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180127Z:7945aacf-2626-4773-ab8d-b046e52c2861"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "699",
+ "Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:33:45 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A33%3A44.0242859Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:01:28 GMT",
+ "ETag": "W/\u002249c11a40-9344-4ce1-8d2a-67d4688a8ed4\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": "3ad732b4-8588-4192-bbaa-5b028b5333f4",
+ "x-ms-correlation-request-id": "31e36fb5-fc5c-4b19-9af8-0188cf498dd3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11945",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180128Z:31e36fb5-fc5c-4b19-9af8-0188cf498dd3"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3/subnets/default",
+ "etag": "W/\u002249c11a40-9344-4ce1-8d2a-67d4688a8ed4\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u002249c11a40-9344-4ce1-8d2a-67d4688a8ed4\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "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.11.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": "Mon, 25 Jul 2022 18:01: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.13315.8 - WEULR2 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.11.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": "Mon, 25 Jul 2022 18:01: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.13315.8 - WEULR2 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": "d1d67825-bacb-4c62-a663-673176e0ffb0",
+ "Connection": "keep-alive",
+ "Content-Length": "281",
+ "Content-Type": "application/x-www-form-urlencoded",
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.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.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
+ },
+ "RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "d1d67825-bacb-4c62-a663-673176e0ffb0",
+ "Content-Length": "114",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 18:01:28 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.13315.8 - NEULR1 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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3?api-version=2022-03-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "23",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/20fcbb58-bfbd-437f-9e55-247c91817acc?api-version=2022-03-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "702",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 18:01:31 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A01%3A30.8037233Z\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": "d522de37-d0c3-4ee6-88b6-06b8cc6fbe8f",
- "x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153345Z:d522de37-d0c3-4ee6-88b6-06b8cc6fbe8f",
+ "x-ms-correlation-request-id": "e9e4d1e6-f3c1-40d4-9f25-4d418c188e8f",
+ "x-ms-ratelimit-remaining-subscription-writes": "1190",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180131Z:e9e4d1e6-f3c1-40d4-9f25-4d418c188e8f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A33%3A44.0242859Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A01%3A30.8037233Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:33:39.7847616Z"
+ "CreatedOnDate": "2022-07-25T18:01:29.5661912Z"
},
"properties": {
"provisioningState": "Creating"
@@ -258,21 +799,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:33:43.2386181Z",
+ "createdAt": "2022-07-25T18:01:30.6288663Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:33:43.2386181Z"
+ "lastModifiedAt": "2022-07-25T18:01:30.6288663Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/045249ad-90bb-4204-bc00-0e69765adbc5?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20fcbb58-bfbd-437f-9e55-247c91817acc?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +821,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:34:15 GMT",
+ "Date": "Mon, 25 Jul 2022 18:02:01 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +829,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "87ac97a9-0b07-4523-8017-5da3f57f2898",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153415Z:87ac97a9-0b07-4523-8017-5da3f57f2898",
+ "x-ms-correlation-request-id": "1ba2a7a6-39bf-476f-be8d-ff7cda51abb7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11944",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180202Z:1ba2a7a6-39bf-476f-be8d-ff7cda51abb7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/045249ad-90bb-4204-bc00-0e69765adbc5",
- "name": "045249ad-90bb-4204-bc00-0e69765adbc5",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20fcbb58-bfbd-437f-9e55-247c91817acc",
+ "name": "20fcbb58-bfbd-437f-9e55-247c91817acc",
"status": "Succeeded",
- "startTime": "2022-05-23T15:33:44.0186931Z",
- "endTime": "2022-05-23T15:33:44.0499243Z",
+ "startTime": "2022-07-25T18:01:30.8403684Z",
+ "endTime": "2022-07-25T18:01:30.8716672Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +861,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:34:15 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A33%3A44.0544763Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:02:01 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A01%3A30.875131Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,35 +870,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "708ff001-ff89-4758-87a0-3342915ed7d8",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153416Z:708ff001-ff89-4758-87a0-3342915ed7d8",
+ "x-ms-correlation-request-id": "9523b645-22c8-4ca8-82fd-db530ff0940f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11943",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180202Z:9523b645-22c8-4ca8-82fd-db530ff0940f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A33%3A44.0544763Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A01%3A30.875131Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:33:39.7847616Z"
+ "CreatedOnDate": "2022-07-25T18:01:29.5661912Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -370,26 +911,26 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:33:43.2386181Z",
+ "createdAt": "2022-07-25T18:01:30.6288663Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:33:43.2386181Z"
+ "lastModifiedAt": "2022-07-25T18:01:30.6288663Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "150",
+ "Content-Length": "138",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"size": 4398046511104,
"serviceLevel": "Premium",
@@ -399,30 +940,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/581e33c2-45fa-44cc-8995-2b572559656c?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8a295c26-b8c5-44c2-b986-358e65dd1a23?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "917",
+ "Content-Length": "918",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:34:18 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A34%3A18.0675413Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:02:04 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A02%3A04.2813621Z\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": "6740b0e9-3acd-4d46-ad04-842724c627e2",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153419Z:6740b0e9-3acd-4d46-ad04-842724c627e2",
+ "x-ms-correlation-request-id": "4698586d-bb46-423c-98ec-06e7cec9f685",
+ "x-ms-ratelimit-remaining-subscription-writes": "1189",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180205Z:4698586d-bb46-423c-98ec-06e7cec9f685",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A34%3A18.0675413Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A02%3A04.2813621Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:34:16.6276692Z"
+ "CreatedOnDate": "2022-07-25T18:02:03.0123061Z"
},
"properties": {
"serviceLevel": "Premium",
@@ -436,21 +977,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:34:17.6866618Z",
+ "createdAt": "2022-07-25T18:02:04.1026124Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:34:17.6866618Z"
+ "lastModifiedAt": "2022-07-25T18:02:04.1026124Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/581e33c2-45fa-44cc-8995-2b572559656c?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8a295c26-b8c5-44c2-b986-358e65dd1a23?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -458,7 +999,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:34:49 GMT",
+ "Date": "Mon, 25 Jul 2022 18:02:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -466,31 +1007,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "50dea148-d467-4c30-9cbe-a26b0d35617f",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153449Z:50dea148-d467-4c30-9cbe-a26b0d35617f",
+ "x-ms-correlation-request-id": "feb62749-09a9-4198-a321-5ecac807e658",
+ "x-ms-ratelimit-remaining-subscription-reads": "11942",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180235Z:feb62749-09a9-4198-a321-5ecac807e658",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/581e33c2-45fa-44cc-8995-2b572559656c",
- "name": "581e33c2-45fa-44cc-8995-2b572559656c",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8a295c26-b8c5-44c2-b986-358e65dd1a23",
+ "name": "8a295c26-b8c5-44c2-b986-358e65dd1a23",
"status": "Succeeded",
- "startTime": "2022-05-23T15:34:18.0616562Z",
- "endTime": "2022-05-23T15:34:19.2179507Z",
+ "startTime": "2022-07-25T18:02:04.2844291Z",
+ "endTime": "2022-07-25T18:02:04.6438389Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -498,8 +1039,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:34:49 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A34%3A19.2181095Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:02:34 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A02%3A04.6450745Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -507,22 +1048,22 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5c5a2311-329c-4e4c-a7ca-4e1b5e7f9432",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153449Z:5c5a2311-329c-4e4c-a7ca-4e1b5e7f9432",
+ "x-ms-correlation-request-id": "f1cf4b5b-e914-4eee-9a53-245e85b98f2b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11941",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180235Z:f1cf4b5b-e914-4eee-9a53-245e85b98f2b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A34%3A19.2181095Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A02%3A04.6450745Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:34:16.6276692Z"
+ "CreatedOnDate": "2022-07-25T18:02:03.0123061Z"
},
"properties": {
- "poolId": "2995de4a-fe9b-bf08-8d8a-daf09348924e",
+ "poolId": "1e209306-4d7f-05dd-02f8-907503f37e01",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
@@ -531,38 +1072,30 @@
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T15:34:17.6866618Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:34:17.6866618Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9b28b3?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "800",
+ "Content-Length": "779",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-7b9b28b3",
"serviceLevel": "Premium",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -576,45 +1109,44 @@
"avsDataStore": "Disabled",
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled"
+ "defaultGroupQuotaInKiBs": 0
}
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0f02febd-9000-45ca-99eb-b2b18209ff8b?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c86a0db-6095-45d7-9cda-e05a6c4da631?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "1567",
+ "Content-Length": "1577",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:34:54 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A34%3A54.3455068Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:02:37 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A02%3A37.5251504Z\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": "5f72f3af-2525-4ae7-8110-e818d7cec978",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153455Z:5f72f3af-2525-4ae7-8110-e818d7cec978",
+ "x-ms-correlation-request-id": "e5af1dc6-44f1-4d54-9c42-7f8c33d93a42",
+ "x-ms-ratelimit-remaining-subscription-writes": "1188",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180238Z:e5af1dc6-44f1-4d54-9c42-7f8c33d93a42",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A34%3A54.3455068Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A02%3A37.5251504Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:34:50.2007796Z"
+ "CreatedOnDate": "2022-07-25T18:02:36.0774767Z"
},
"properties": {
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-7b9b28b3",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -629,28 +1161,27 @@
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
"provisioningState": "Creating"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:34:51.6250828Z",
+ "createdAt": "2022-07-25T18:02:37.1393527Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:34:51.6250828Z"
+ "lastModifiedAt": "2022-07-25T18:02:37.1393527Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0f02febd-9000-45ca-99eb-b2b18209ff8b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c86a0db-6095-45d7-9cda-e05a6c4da631?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -658,7 +1189,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:35:24 GMT",
+ "Date": "Mon, 25 Jul 2022 18:03:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -666,31 +1197,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "996020b8-d6a8-4c91-9b87-ea7e65545ec2",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153525Z:996020b8-d6a8-4c91-9b87-ea7e65545ec2",
+ "x-ms-correlation-request-id": "7a4e0d62-34d0-4579-a623-cc4c6527146d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11940",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180308Z:7a4e0d62-34d0-4579-a623-cc4c6527146d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0f02febd-9000-45ca-99eb-b2b18209ff8b",
- "name": "0f02febd-9000-45ca-99eb-b2b18209ff8b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c86a0db-6095-45d7-9cda-e05a6c4da631",
+ "name": "7c86a0db-6095-45d7-9cda-e05a6c4da631",
"status": "Creating",
- "startTime": "2022-05-23T15:34:54.3410311Z",
+ "startTime": "2022-07-25T18:02:37.5307242Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/0f02febd-9000-45ca-99eb-b2b18209ff8b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c86a0db-6095-45d7-9cda-e05a6c4da631?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -698,7 +1229,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:35:55 GMT",
+ "Date": "Mon, 25 Jul 2022 18:03:38 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -706,31 +1237,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "db1fabba-7891-43f6-9fd7-e4a28d568c8c",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153555Z:db1fabba-7891-43f6-9fd7-e4a28d568c8c",
+ "x-ms-correlation-request-id": "08de99ed-4d11-4bcd-a973-8ce1de33564a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11939",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180339Z:08de99ed-4d11-4bcd-a973-8ce1de33564a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0f02febd-9000-45ca-99eb-b2b18209ff8b",
- "name": "0f02febd-9000-45ca-99eb-b2b18209ff8b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c86a0db-6095-45d7-9cda-e05a6c4da631",
+ "name": "7c86a0db-6095-45d7-9cda-e05a6c4da631",
"status": "Creating",
- "startTime": "2022-05-23T15:34:54.3410311Z",
+ "startTime": "2022-07-25T18:02:37.5307242Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/0f02febd-9000-45ca-99eb-b2b18209ff8b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c86a0db-6095-45d7-9cda-e05a6c4da631?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -738,7 +1269,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:36:25 GMT",
+ "Date": "Mon, 25 Jul 2022 18:04:08 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -746,31 +1277,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b5338924-1d72-48b8-b14c-cd62130dfc07",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153626Z:b5338924-1d72-48b8-b14c-cd62130dfc07",
+ "x-ms-correlation-request-id": "92c55d22-ac36-4faf-86a8-a823f874bd3f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11938",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180409Z:92c55d22-ac36-4faf-86a8-a823f874bd3f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0f02febd-9000-45ca-99eb-b2b18209ff8b",
- "name": "0f02febd-9000-45ca-99eb-b2b18209ff8b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c86a0db-6095-45d7-9cda-e05a6c4da631",
+ "name": "7c86a0db-6095-45d7-9cda-e05a6c4da631",
"status": "Creating",
- "startTime": "2022-05-23T15:34:54.3410311Z",
+ "startTime": "2022-07-25T18:02:37.5307242Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/0f02febd-9000-45ca-99eb-b2b18209ff8b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c86a0db-6095-45d7-9cda-e05a6c4da631?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -778,7 +1309,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:36:55 GMT",
+ "Date": "Mon, 25 Jul 2022 18:04:39 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -786,31 +1317,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c90c3523-c5f9-4c15-b802-cb31b3005fbe",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153656Z:c90c3523-c5f9-4c15-b802-cb31b3005fbe",
+ "x-ms-correlation-request-id": "17371594-4ea0-4966-a509-321369ae55d5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11937",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180439Z:17371594-4ea0-4966-a509-321369ae55d5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0f02febd-9000-45ca-99eb-b2b18209ff8b",
- "name": "0f02febd-9000-45ca-99eb-b2b18209ff8b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c86a0db-6095-45d7-9cda-e05a6c4da631",
+ "name": "7c86a0db-6095-45d7-9cda-e05a6c4da631",
"status": "Creating",
- "startTime": "2022-05-23T15:34:54.3410311Z",
+ "startTime": "2022-07-25T18:02:37.5307242Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/0f02febd-9000-45ca-99eb-b2b18209ff8b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c86a0db-6095-45d7-9cda-e05a6c4da631?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -818,7 +1349,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:37:25 GMT",
+ "Date": "Mon, 25 Jul 2022 18:05:09 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -826,31 +1357,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b3c1e031-ffbf-40a1-bbff-70adf8b4bf0e",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153726Z:b3c1e031-ffbf-40a1-bbff-70adf8b4bf0e",
+ "x-ms-correlation-request-id": "ab85f1b6-cf34-4b17-8197-a893ceed678c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11936",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180509Z:ab85f1b6-cf34-4b17-8197-a893ceed678c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0f02febd-9000-45ca-99eb-b2b18209ff8b",
- "name": "0f02febd-9000-45ca-99eb-b2b18209ff8b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c86a0db-6095-45d7-9cda-e05a6c4da631",
+ "name": "7c86a0db-6095-45d7-9cda-e05a6c4da631",
"status": "Creating",
- "startTime": "2022-05-23T15:34:54.3410311Z",
+ "startTime": "2022-07-25T18:02:37.5307242Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/0f02febd-9000-45ca-99eb-b2b18209ff8b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c86a0db-6095-45d7-9cda-e05a6c4da631?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -858,7 +1389,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:37:56 GMT",
+ "Date": "Mon, 25 Jul 2022 18:05:40 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -866,31 +1397,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "092a6a9b-6e88-4505-bad6-fbaeec009d5e",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153756Z:092a6a9b-6e88-4505-bad6-fbaeec009d5e",
+ "x-ms-correlation-request-id": "06bce10d-3522-407b-82b7-6c5a39f48732",
+ "x-ms-ratelimit-remaining-subscription-reads": "11935",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180541Z:06bce10d-3522-407b-82b7-6c5a39f48732",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0f02febd-9000-45ca-99eb-b2b18209ff8b",
- "name": "0f02febd-9000-45ca-99eb-b2b18209ff8b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c86a0db-6095-45d7-9cda-e05a6c4da631",
+ "name": "7c86a0db-6095-45d7-9cda-e05a6c4da631",
"status": "Creating",
- "startTime": "2022-05-23T15:34:54.3410311Z",
+ "startTime": "2022-07-25T18:02:37.5307242Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/0f02febd-9000-45ca-99eb-b2b18209ff8b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c86a0db-6095-45d7-9cda-e05a6c4da631?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -898,7 +1429,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:38:26 GMT",
+ "Date": "Mon, 25 Jul 2022 18:06:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -906,31 +1437,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "58f7af10-bc49-4432-9500-c33d62116ae6",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153827Z:58f7af10-bc49-4432-9500-c33d62116ae6",
+ "x-ms-correlation-request-id": "aad81c99-c771-4dc3-acac-14438af96b84",
+ "x-ms-ratelimit-remaining-subscription-reads": "11934",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180611Z:aad81c99-c771-4dc3-acac-14438af96b84",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0f02febd-9000-45ca-99eb-b2b18209ff8b",
- "name": "0f02febd-9000-45ca-99eb-b2b18209ff8b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c86a0db-6095-45d7-9cda-e05a6c4da631",
+ "name": "7c86a0db-6095-45d7-9cda-e05a6c4da631",
"status": "Creating",
- "startTime": "2022-05-23T15:34:54.3410311Z",
+ "startTime": "2022-07-25T18:02:37.5307242Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/0f02febd-9000-45ca-99eb-b2b18209ff8b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c86a0db-6095-45d7-9cda-e05a6c4da631?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -938,7 +1469,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:38:56 GMT",
+ "Date": "Mon, 25 Jul 2022 18:06:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -946,111 +1477,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a12ad111-dfea-4570-ba60-9e169628ae3a",
- "x-ms-ratelimit-remaining-subscription-reads": "11988",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153857Z:a12ad111-dfea-4570-ba60-9e169628ae3a",
+ "x-ms-correlation-request-id": "fc36c05f-a0c0-42e5-b4f5-2dcac66ade01",
+ "x-ms-ratelimit-remaining-subscription-reads": "11933",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180641Z:fc36c05f-a0c0-42e5-b4f5-2dcac66ade01",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0f02febd-9000-45ca-99eb-b2b18209ff8b",
- "name": "0f02febd-9000-45ca-99eb-b2b18209ff8b",
- "status": "Creating",
- "startTime": "2022-05-23T15:34:54.3410311Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0f02febd-9000-45ca-99eb-b2b18209ff8b?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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, 23 May 2022 15:39: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": "1a3e042b-e479-4af9-ad5d-989ec00dd875",
- "x-ms-ratelimit-remaining-subscription-reads": "11987",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153927Z:1a3e042b-e479-4af9-ad5d-989ec00dd875",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0f02febd-9000-45ca-99eb-b2b18209ff8b",
- "name": "0f02febd-9000-45ca-99eb-b2b18209ff8b",
- "status": "Creating",
- "startTime": "2022-05-23T15:34:54.3410311Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0f02febd-9000-45ca-99eb-b2b18209ff8b?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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, 23 May 2022 15:39: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": "63e02226-d21a-41fa-80a1-be52bf0e5026",
- "x-ms-ratelimit-remaining-subscription-reads": "11986",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153957Z:63e02226-d21a-41fa-80a1-be52bf0e5026",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0f02febd-9000-45ca-99eb-b2b18209ff8b",
- "name": "0f02febd-9000-45ca-99eb-b2b18209ff8b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c86a0db-6095-45d7-9cda-e05a6c4da631",
+ "name": "7c86a0db-6095-45d7-9cda-e05a6c4da631",
"status": "Succeeded",
- "startTime": "2022-05-23T15:34:54.3410311Z",
- "endTime": "2022-05-23T15:39:38.33554Z",
+ "startTime": "2022-07-25T18:02:37.5307242Z",
+ "endTime": "2022-07-25T18:06:40.8409062Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9b28b3?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1058,8 +1509,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:39:58 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A39%3A38.3286919Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:06:41 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A06%3A40.8422281Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1067,24 +1518,24 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8ee8ac11-72c3-4720-aa2e-a0408498197c",
- "x-ms-ratelimit-remaining-subscription-reads": "11985",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153958Z:8ee8ac11-72c3-4720-aa2e-a0408498197c",
+ "x-ms-correlation-request-id": "81020f6d-175f-4950-a7a6-88d75f034460",
+ "x-ms-ratelimit-remaining-subscription-reads": "11932",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180642Z:81020f6d-175f-4950-a7a6-88d75f034460",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A39%3A38.3286919Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A06%3A40.8422281Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:34:50.2007796Z"
+ "CreatedOnDate": "2022-07-25T18:02:36.0774767Z"
},
"properties": {
- "fileSystemId": "beea4d3d-a282-20aa-21f4-28c0a41271c9",
+ "fileSystemId": "bc59a9f1-a851-4766-72ca-3429f4559da5",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-7b9b28b3",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1110,11 +1561,11 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_576818f1",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_dec46996",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
+ "networkSiblingSetId": "ab7763c0-0463-d6df-f940-dc2eb81d55f3",
+ "storageToNetworkProximity": "T2",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
"securityStyle": "Unix",
@@ -1125,9 +1576,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "beea4d3d-a282-20aa-21f4-28c0a41271c9",
- "fileSystemId": "beea4d3d-a282-20aa-21f4-28c0a41271c9",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "bc59a9f1-a851-4766-72ca-3429f4559da5",
+ "fileSystemId": "bc59a9f1-a851-4766-72ca-3429f4559da5",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1139,27 +1590,18 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
- "encrypted": true,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T15:34:51.6250828Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:34:51.6250828Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9b28b3?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1167,8 +1609,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:39:59 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A39%3A38.3286919Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 18:06:42 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T18%3A06%3A40.8422281Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1176,24 +1618,24 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8ecbb74b-c239-47c6-952e-9dc4734e02ce",
- "x-ms-ratelimit-remaining-subscription-reads": "11984",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153959Z:8ecbb74b-c239-47c6-952e-9dc4734e02ce",
+ "x-ms-correlation-request-id": "44636179-edc7-4fbd-a184-aff883a9b9fb",
+ "x-ms-ratelimit-remaining-subscription-reads": "11931",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180642Z:44636179-edc7-4fbd-a184-aff883a9b9fb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A39%3A38.3286919Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A06%3A40.8422281Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:34:50.2007796Z"
+ "CreatedOnDate": "2022-07-25T18:02:36.0774767Z"
},
"properties": {
- "fileSystemId": "beea4d3d-a282-20aa-21f4-28c0a41271c9",
+ "fileSystemId": "bc59a9f1-a851-4766-72ca-3429f4559da5",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-7b9b28b3",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1219,11 +1661,11 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_576818f1",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_dec46996",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
+ "networkSiblingSetId": "ab7763c0-0463-d6df-f940-dc2eb81d55f3",
+ "storageToNetworkProximity": "T2",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
"securityStyle": "Unix",
@@ -1234,9 +1676,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "beea4d3d-a282-20aa-21f4-28c0a41271c9",
- "fileSystemId": "beea4d3d-a282-20aa-21f4-28c0a41271c9",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "bc59a9f1-a851-4766-72ca-3429f4559da5",
+ "fileSystemId": "bc59a9f1-a851-4766-72ca-3429f4559da5",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1248,69 +1690,60 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
- "encrypted": true,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T15:34:51.6250828Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:34:51.6250828Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "23",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2"
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4244d6cf-65fd-40b1-a762-4e8afbefa48e?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/894cbfee-fa59-49e1-9aed-2580bfa6b33b?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "501",
+ "Content-Length": "518",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:39:59 GMT",
+ "Date": "Mon, 25 Jul 2022 18:06:42 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4244d6cf-65fd-40b1-a762-4e8afbefa48e?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/894cbfee-fa59-49e1-9aed-2580bfa6b33b?api-version=2022-03-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": "8e64dc2b-aafd-4200-a874-325b09dbc536",
- "x-ms-ratelimit-remaining-subscription-writes": "1196",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153959Z:8e64dc2b-aafd-4200-a874-325b09dbc536",
+ "x-ms-correlation-request-id": "8b3aa785-b5cc-40b3-90da-6c0652ea3b36",
+ "x-ms-ratelimit-remaining-subscription-writes": "1187",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180642Z:8b3aa785-b5cc-40b3-90da-6c0652ea3b36",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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",
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"provisioningState": "Creating"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4244d6cf-65fd-40b1-a762-4e8afbefa48e?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/894cbfee-fa59-49e1-9aed-2580bfa6b33b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1318,7 +1751,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:40:29 GMT",
+ "Date": "Mon, 25 Jul 2022 18:07:13 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1326,70 +1759,70 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4e604d58-ace0-4c82-b885-6e3440372fc9",
- "x-ms-ratelimit-remaining-subscription-reads": "11983",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154029Z:4e604d58-ace0-4c82-b885-6e3440372fc9",
+ "x-ms-correlation-request-id": "f1d89217-392d-4b94-81d8-3ac9140c3a84",
+ "x-ms-ratelimit-remaining-subscription-reads": "11930",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180713Z:f1d89217-392d-4b94-81d8-3ac9140c3a84",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4244d6cf-65fd-40b1-a762-4e8afbefa48e",
- "name": "4244d6cf-65fd-40b1-a762-4e8afbefa48e",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/894cbfee-fa59-49e1-9aed-2580bfa6b33b",
+ "name": "894cbfee-fa59-49e1-9aed-2580bfa6b33b",
"status": "Succeeded",
- "startTime": "2022-05-23T15:39:59.4386523Z",
- "endTime": "2022-05-23T15:40:10.0509298Z",
+ "startTime": "2022-07-25T18:06:42.8639613Z",
+ "endTime": "2022-07-25T18:06:45.5204067Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/4244d6cf-65fd-40b1-a762-4e8afbefa48e?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/894cbfee-fa59-49e1-9aed-2580bfa6b33b?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 201,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "617",
+ "Content-Length": "634",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:40:29 GMT",
+ "Date": "Mon, 25 Jul 2022 18:07: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": "2e42fc44-081c-4625-af09-d9f7a0980e86",
- "x-ms-ratelimit-remaining-subscription-reads": "11982",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154030Z:2e42fc44-081c-4625-af09-d9f7a0980e86",
+ "x-ms-correlation-request-id": "df766ce1-8e08-4fc5-bd32-bf6559dac4b9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11929",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180713Z:df766ce1-8e08-4fc5-bd32-bf6559dac4b9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "5/23/2022 3:40:10 PM",
- "location": "southcentralusstage",
+ "etag": "7/25/2022 6:06:45 PM",
+ "location": "westus2",
"properties": {
"provisioningState": "Succeeded",
- "snapshotId": "e876b398-263c-0749-73a1-156b1e84a015",
- "created": "2022-05-23T15:40:01Z"
+ "snapshotId": "07508c1d-0c49-61ff-3f21-cdcd9e145dda",
+ "created": "2022-07-25T18:06:43Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1397,7 +1830,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:40:30 GMT",
+ "Date": "Mon, 25 Jul 2022 18:07:14 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1405,61 +1838,61 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "64531f88-319c-4cf2-9a71-1190ee07990f",
- "x-ms-ratelimit-remaining-subscription-reads": "11981",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154031Z:64531f88-319c-4cf2-9a71-1190ee07990f",
+ "x-ms-correlation-request-id": "2ab6b33e-85cb-49d9-8721-fe6e0d24a247",
+ "x-ms-ratelimit-remaining-subscription-reads": "11928",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180714Z:2ab6b33e-85cb-49d9-8721-fe6e0d24a247",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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",
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"provisioningState": "Succeeded",
- "snapshotId": "e876b398-263c-0749-73a1-156b1e84a015",
- "created": "2022-05-23T15:40:01Z"
+ "snapshotId": "07508c1d-0c49-61ff-3f21-cdcd9e145dda",
+ "created": "2022-07-25T18:06:43Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/d6a967ff-1541-4d6d-b313-b7fee3886790?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38631777-700b-4891-aa38-c0ad8a868374?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 15:40:35 GMT",
+ "Date": "Mon, 25 Jul 2022 18:07:14 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d6a967ff-1541-4d6d-b313-b7fee3886790?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38631777-700b-4891-aa38-c0ad8a868374?api-version=2022-03-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": "71b66711-4a74-4bf3-9cf9-d5e9f4f8ec57",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154036Z:71b66711-4a74-4bf3-9cf9-d5e9f4f8ec57",
+ "x-ms-correlation-request-id": "1eaed11b-5d01-46a2-9503-8f3f2197dbdf",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14983",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180714Z:1eaed11b-5d01-46a2-9503-8f3f2197dbdf",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d6a967ff-1541-4d6d-b313-b7fee3886790?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38631777-700b-4891-aa38-c0ad8a868374?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1467,7 +1900,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:41:05 GMT",
+ "Date": "Mon, 25 Jul 2022 18:07:44 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1475,31 +1908,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3fc202e9-5880-4c37-9e06-d506591bfa41",
- "x-ms-ratelimit-remaining-subscription-reads": "11980",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154106Z:3fc202e9-5880-4c37-9e06-d506591bfa41",
+ "x-ms-correlation-request-id": "053b3b0b-e0bf-49ca-8a32-ec00311a83f4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11927",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180745Z:053b3b0b-e0bf-49ca-8a32-ec00311a83f4",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d6a967ff-1541-4d6d-b313-b7fee3886790",
- "name": "d6a967ff-1541-4d6d-b313-b7fee3886790",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38631777-700b-4891-aa38-c0ad8a868374",
+ "name": "38631777-700b-4891-aa38-c0ad8a868374",
"status": "Succeeded",
- "startTime": "2022-05-23T15:40:36.0393907Z",
- "endTime": "2022-05-23T15:40:47.7156153Z",
+ "startTime": "2022-07-25T18:07:14.5817537Z",
+ "endTime": "2022-07-25T18:07:20.9060998Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/d6a967ff-1541-4d6d-b313-b7fee3886790?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38631777-700b-4891-aa38-c0ad8a868374?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1507,7 +1940,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:41:05 GMT",
+ "Date": "Mon, 25 Jul 2022 18:07:45 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1515,89 +1948,129 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2fd835c5-ef88-4f2d-9006-0ab24d651ce3",
- "x-ms-ratelimit-remaining-subscription-reads": "11979",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154106Z:2fd835c5-ef88-4f2d-9006-0ab24d651ce3",
+ "x-ms-correlation-request-id": "8d62b6a7-86d4-4413-91f2-6cf683a0f05f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11926",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180745Z:8d62b6a7-86d4-4413-91f2-6cf683a0f05f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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",
- "location": "southcentralusstage"
+ "location": "westus2"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "311",
+ "Content-Length": "326",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:41:29 GMT",
+ "Date": "Mon, 25 Jul 2022 18:08: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": "731d9819-045c-49e2-94eb-ab7679c30f2b",
- "x-ms-ratelimit-remaining-subscription-reads": "11978",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154129Z:731d9819-045c-49e2-94eb-ab7679c30f2b",
+ "x-ms-correlation-request-id": "6ab6a9d5-3a87-404b-94bd-b845ecf811cb",
+ "x-ms-ratelimit-remaining-subscription-reads": "11925",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180805Z:6ab6a9d5-3a87-404b-94bd-b845ecf811cb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"error": {
"code": "NotFound",
- "message": "The requested snapshot \u0027sdk-py-tests-snapshot-1\u0027 was not found on the volume \u0027sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1\u0027. Please check the requested snapshot. Please note: The snapshot may no longer be available based on configured snapshot policies."
+ "message": "The requested snapshot \u0027sdk-py-tests-snapshot-1\u0027 was not found on the volume \u0027sdk-py-tests-acc-1-7b9b28b3/sdk-py-tests-pool-1/sdk-py-tests-vol-3-7b9b28b3\u0027. Please check the requested snapshot. Please note: The snapshot may no longer be available based on configured snapshot policies."
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9b28b3?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/9e4fa85b-b5f9-4545-8932-60f5ca3a5f26?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f16a64a7-2bc6-4072-96ad-4ede6a491a39?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 15:41:29 GMT",
+ "Date": "Mon, 25 Jul 2022 18:08:05 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9e4fa85b-b5f9-4545-8932-60f5ca3a5f26?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f16a64a7-2bc6-4072-96ad-4ede6a491a39?api-version=2022-03-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": "05524247-73d4-4b74-90fa-cc25c0730bb5",
- "x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154129Z:05524247-73d4-4b74-90fa-cc25c0730bb5",
+ "x-ms-correlation-request-id": "7f02c53f-8ec7-4d09-9529-d63b99b51c48",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180806Z:7f02c53f-8ec7-4d09-9529-d63b99b51c48",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9e4fa85b-b5f9-4545-8932-60f5ca3a5f26?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f16a64a7-2bc6-4072-96ad-4ede6a491a39?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Mon, 25 Jul 2022 18:08: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": "e57293bc-1247-424d-bf73-f091ecd44642",
+ "x-ms-ratelimit-remaining-subscription-reads": "11924",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180836Z:e57293bc-1247-424d-bf73-f091ecd44642",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f16a64a7-2bc6-4072-96ad-4ede6a491a39",
+ "name": "f16a64a7-2bc6-4072-96ad-4ede6a491a39",
+ "status": "Deleting",
+ "startTime": "2022-07-25T18:08:06.3817973Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/f16a64a7-2bc6-4072-96ad-4ede6a491a39?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1605,7 +2078,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:41:59 GMT",
+ "Date": "Mon, 25 Jul 2022 18:09:06 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1613,31 +2086,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f5358b84-21b3-44b2-ab9b-265ef8861e1c",
- "x-ms-ratelimit-remaining-subscription-reads": "11977",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154200Z:f5358b84-21b3-44b2-ab9b-265ef8861e1c",
+ "x-ms-correlation-request-id": "e73e1ec7-16b3-415a-8ed2-a027b5ddd788",
+ "x-ms-ratelimit-remaining-subscription-reads": "11923",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180907Z:e73e1ec7-16b3-415a-8ed2-a027b5ddd788",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9e4fa85b-b5f9-4545-8932-60f5ca3a5f26",
- "name": "9e4fa85b-b5f9-4545-8932-60f5ca3a5f26",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f16a64a7-2bc6-4072-96ad-4ede6a491a39",
+ "name": "f16a64a7-2bc6-4072-96ad-4ede6a491a39",
"status": "Deleting",
- "startTime": "2022-05-23T15:41:29.6090593Z",
+ "startTime": "2022-07-25T18:08:06.3817973Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/9e4fa85b-b5f9-4545-8932-60f5ca3a5f26?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f16a64a7-2bc6-4072-96ad-4ede6a491a39?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1645,7 +2118,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:42:29 GMT",
+ "Date": "Mon, 25 Jul 2022 18:09:36 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1653,31 +2126,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "44e82e12-0b05-401f-b8c1-fa8f48e30418",
- "x-ms-ratelimit-remaining-subscription-reads": "11976",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154230Z:44e82e12-0b05-401f-b8c1-fa8f48e30418",
+ "x-ms-correlation-request-id": "effecedb-513d-4353-a308-ab2dc719b713",
+ "x-ms-ratelimit-remaining-subscription-reads": "11922",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180937Z:effecedb-513d-4353-a308-ab2dc719b713",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9e4fa85b-b5f9-4545-8932-60f5ca3a5f26",
- "name": "9e4fa85b-b5f9-4545-8932-60f5ca3a5f26",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f16a64a7-2bc6-4072-96ad-4ede6a491a39",
+ "name": "f16a64a7-2bc6-4072-96ad-4ede6a491a39",
"status": "Succeeded",
- "startTime": "2022-05-23T15:41:29.6090593Z",
- "endTime": "2022-05-23T15:42:28.4801727Z",
+ "startTime": "2022-07-25T18:08:06.3817973Z",
+ "endTime": "2022-07-25T18:09:10.3676842Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/9e4fa85b-b5f9-4545-8932-60f5ca3a5f26?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f16a64a7-2bc6-4072-96ad-4ede6a491a39?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1685,7 +2158,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:42:29 GMT",
+ "Date": "Mon, 25 Jul 2022 18:09:37 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1693,25 +2166,25 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "59aafe57-caf4-466d-b4e1-2ae27c8a5c53",
- "x-ms-ratelimit-remaining-subscription-reads": "11975",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154230Z:59aafe57-caf4-466d-b4e1-2ae27c8a5c53",
+ "x-ms-correlation-request-id": "feb41f97-30c4-4b16-8bb3-f2f22b21415e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11921",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180937Z:feb41f97-30c4-4b16-8bb3-f2f22b21415e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A42%3A18.9843632Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A08%3A06.3505456Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:34:50.2007796Z"
+ "CreatedOnDate": "2022-07-25T18:02:36.0774767Z"
},
"properties": {
- "fileSystemId": "beea4d3d-a282-20aa-21f4-28c0a41271c9",
+ "fileSystemId": "bc59a9f1-a851-4766-72ca-3429f4559da5",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
+ "creationToken": "sdk-py-tests-vol-3-7b9b28b3",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -1739,25 +2212,25 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "DELETED_baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_576818f1",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_dec46996",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
+ "networkSiblingSetId": "ab7763c0-0463-d6df-f940-dc2eb81d55f3",
+ "storageToNetworkProximity": "T2",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "2995de4a-fe9b-bf08-8d8a-daf09348924e",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9b28b3",
+ "poolId": "1e209306-4d7f-05dd-02f8-907503f37e01",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "beea4d3d-a282-20aa-21f4-28c0a41271c9",
- "fileSystemId": "beea4d3d-a282-20aa-21f4-28c0a41271c9",
+ "mountTargetId": "bc59a9f1-a851-4766-72ca-3429f4559da5",
+ "fileSystemId": "bc59a9f1-a851-4766-72ca-3429f4559da5",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1776,89 +2249,79 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"encrypted": true,
- "smbAccessBasedEnumeration": "Disabled",
- "smbNonBrowsable": "Disabled",
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T15:34:51.6250828Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:34:51.6250828Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9b28b3?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "306",
+ "Content-Length": "320",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:45:51 GMT",
+ "Date": "Mon, 25 Jul 2022 18:13:00 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "66b39091-b8f4-4727-b163-4ee4812e0c3a",
+ "x-ms-correlation-request-id": "13778b72-ead9-4ea0-b628-fcab767bf48c",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154552Z:66b39091-b8f4-4727-b163-4ee4812e0c3a"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181301Z:13778b72-ead9-4ea0-b628-fcab767bf48c"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9b28b3\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/83b6f0e0-ba27-46a6-8d72-2e45b2737adb?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2a4568e3-e36e-4cf1-ad3d-470bb863c1dc?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 15:46:03 GMT",
+ "Date": "Mon, 25 Jul 2022 18:13:13 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/83b6f0e0-ba27-46a6-8d72-2e45b2737adb?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2a4568e3-e36e-4cf1-ad3d-470bb863c1dc?api-version=2022-03-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": "e5ce4813-d297-486b-aca2-2f83cfa84afa",
+ "x-ms-correlation-request-id": "1e2c9382-73e3-484a-a93a-baff5b3c59b9",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154604Z:e5ce4813-d297-486b-aca2-2f83cfa84afa",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181313Z:1e2c9382-73e3-484a-a93a-baff5b3c59b9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/83b6f0e0-ba27-46a6-8d72-2e45b2737adb?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2a4568e3-e36e-4cf1-ad3d-470bb863c1dc?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1866,7 +2329,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:46:33 GMT",
+ "Date": "Mon, 25 Jul 2022 18:13:43 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1874,31 +2337,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "edfc3659-d96a-4013-972e-bee0cd06e7db",
+ "x-ms-correlation-request-id": "4b009c23-15ae-4f63-8c98-a073ba46fad5",
"x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154634Z:edfc3659-d96a-4013-972e-bee0cd06e7db",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181343Z:4b009c23-15ae-4f63-8c98-a073ba46fad5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/83b6f0e0-ba27-46a6-8d72-2e45b2737adb",
- "name": "83b6f0e0-ba27-46a6-8d72-2e45b2737adb",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2a4568e3-e36e-4cf1-ad3d-470bb863c1dc",
+ "name": "2a4568e3-e36e-4cf1-ad3d-470bb863c1dc",
"status": "Succeeded",
- "startTime": "2022-05-23T15:46:04.0691651Z",
- "endTime": "2022-05-23T15:46:08.3822158Z",
+ "startTime": "2022-07-25T18:13:13.4588749Z",
+ "endTime": "2022-07-25T18:13:13.7245047Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/83b6f0e0-ba27-46a6-8d72-2e45b2737adb?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2a4568e3-e36e-4cf1-ad3d-470bb863c1dc?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1906,7 +2369,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:46:33 GMT",
+ "Date": "Mon, 25 Jul 2022 18:13:43 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1914,211 +2377,203 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9f839a8c-7144-440f-92ee-9c4f8d6b296f",
+ "x-ms-correlation-request-id": "b6c470b2-f3c7-4cb2-93a7-1cce33cf7678",
"x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154634Z:9f839a8c-7144-440f-92ee-9c4f8d6b296f",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181344Z:b6c470b2-f3c7-4cb2-93a7-1cce33cf7678",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A46%3A04.0618153Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A13%3A13.4544397Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:34:16.6276692Z"
+ "CreatedOnDate": "2022-07-25T18:02:03.0123061Z"
},
"properties": {
- "poolId": "2995de4a-fe9b-bf08-8d8a-daf09348924e",
+ "poolId": "1e209306-4d7f-05dd-02f8-907503f37e01",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1",
"qosType": "Auto",
"totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T15:34:17.6866618Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:34:17.6866618Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 15:46:44 GMT",
+ "Date": "Mon, 25 Jul 2022 18:13:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "14f21156-8aec-4033-ae06-5d664b52fa73",
+ "x-ms-correlation-request-id": "1644e2f1-bcbd-4003-ba89-34a23bb21b7d",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154644Z:14f21156-8aec-4033-ae06-5d664b52fa73"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181354Z:1644e2f1-bcbd-4003-ba89-34a23bb21b7d"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 15:46:55 GMT",
+ "Date": "Mon, 25 Jul 2022 18:14:04 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "dbfff2a7-12cd-40b6-9077-f978c6d7d4e8",
+ "x-ms-correlation-request-id": "496141f6-2401-4386-b7f4-3c7bfc7bd5c1",
"x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154655Z:dbfff2a7-12cd-40b6-9077-f978c6d7d4e8"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181404Z:496141f6-2401-4386-b7f4-3c7bfc7bd5c1"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 15:47:05 GMT",
+ "Date": "Mon, 25 Jul 2022 18:14:14 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a0d05008-dea7-4a6a-bec3-851d7e189512",
+ "x-ms-correlation-request-id": "4bb6a1a8-3a61-46df-a98e-2fac3740c64d",
"x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154705Z:a0d05008-dea7-4a6a-bec3-851d7e189512"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181415Z:4bb6a1a8-3a61-46df-a98e-2fac3740c64d"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 15:47:15 GMT",
+ "Date": "Mon, 25 Jul 2022 18:14:24 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b0761760-3773-4fbc-8bd7-cf8a8a91df27",
+ "x-ms-correlation-request-id": "e0a42347-dcdc-4794-90a5-9df486cb78e2",
"x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154715Z:b0761760-3773-4fbc-8bd7-cf8a8a91df27"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181425Z:e0a42347-dcdc-4794-90a5-9df486cb78e2"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:47:25 GMT",
+ "Date": "Mon, 25 Jul 2022 18:14:35 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "947914e8-aeb7-4d65-9263-63d1d9a86c80",
+ "x-ms-correlation-request-id": "3c3bbc40-9990-4e38-8848-4154ba9ddb15",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154726Z:947914e8-aeb7-4d65-9263-63d1d9a86c80"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181435Z:3c3bbc40-9990-4e38-8848-4154ba9ddb15"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/3157438f-97ba-4f25-8177-e90d56cec15b?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/595923a1-b695-4a6a-8e64-f0e1cc4078c7?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 15:47:27 GMT",
+ "Date": "Mon, 25 Jul 2022 18:14:36 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3157438f-97ba-4f25-8177-e90d56cec15b?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/595923a1-b695-4a6a-8e64-f0e1cc4078c7?api-version=2022-03-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": "57ab3c5b-e76f-4916-9c3f-0f8a9e992f37",
+ "x-ms-correlation-request-id": "f251e9a9-6f51-4342-add6-624e81090fc5",
"x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154727Z:57ab3c5b-e76f-4916-9c3f-0f8a9e992f37",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181437Z:f251e9a9-6f51-4342-add6-624e81090fc5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3157438f-97ba-4f25-8177-e90d56cec15b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/595923a1-b695-4a6a-8e64-f0e1cc4078c7?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2126,7 +2581,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:47:57 GMT",
+ "Date": "Mon, 25 Jul 2022 18:15:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2134,31 +2589,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d3c5232f-62b3-43dd-8995-9b813be62c75",
+ "x-ms-correlation-request-id": "6cfdba88-7ea9-4a0d-8585-3a7f0850b5c6",
"x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154757Z:d3c5232f-62b3-43dd-8995-9b813be62c75",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181507Z:6cfdba88-7ea9-4a0d-8585-3a7f0850b5c6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3157438f-97ba-4f25-8177-e90d56cec15b",
- "name": "3157438f-97ba-4f25-8177-e90d56cec15b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/595923a1-b695-4a6a-8e64-f0e1cc4078c7",
+ "name": "595923a1-b695-4a6a-8e64-f0e1cc4078c7",
"status": "Succeeded",
- "startTime": "2022-05-23T15:47:27.2492219Z",
- "endTime": "2022-05-23T15:47:27.2804721Z",
+ "startTime": "2022-07-25T18:14:36.9246844Z",
+ "endTime": "2022-07-25T18:14:36.9872458Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3157438f-97ba-4f25-8177-e90d56cec15b?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/595923a1-b695-4a6a-8e64-f0e1cc4078c7?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2166,7 +2621,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:47:57 GMT",
+ "Date": "Mon, 25 Jul 2022 18:15:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2174,19 +2629,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4e4e5c13-8cca-433f-8207-6ed87c6e0a46",
+ "x-ms-correlation-request-id": "8dacb62a-221e-4ff2-b374-6223b67cbb82",
"x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154757Z:4e4e5c13-8cca-433f-8207-6ed87c6e0a46",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181507Z:8dacb62a-221e-4ff2-b374-6223b67cbb82",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A47%3A27.2495886Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A14%3A36.9139761Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:33:39.7847616Z"
+ "CreatedOnDate": "2022-07-25T18:01:29.5661912Z"
},
"properties": {
"encryption": {
@@ -2197,41 +2652,41 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:33:43.2386181Z",
+ "createdAt": "2022-07-25T18:01:30.6288663Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:33:43.2386181Z"
+ "lastModifiedAt": "2022-07-25T18:01:30.6288663Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:47:59 GMT",
+ "Date": "Mon, 25 Jul 2022 18:15:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e54a7edd-3f21-4fe0-a45e-3d8fa9cc361b",
+ "x-ms-correlation-request-id": "0371a7e3-227d-4026-9e41-ee0a27efca82",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154800Z:e54a7edd-3f21-4fe0-a45e-3d8fa9cc361b"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T181507Z:0371a7e3-227d-4026-9e41-ee0a27efca82"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
}
}
}
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 fddcb7c780a8..f109b2e5884d 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
@@ -7,7 +7,7 @@
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 23 May 2022 15:17:14 GMT",
+ "Date": "Mon, 25 Jul 2022 17:45: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.12794.4 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 23 May 2022 15:17:14 GMT",
+ "Date": "Mon, 25 Jul 2022 17:45: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.12744.11 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13201.7 - WEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "a53c8201-0456-4d21-91a3-a8994fa0b329",
+ "client-request-id": "d1e5b75b-fbd4-427f-9ba1-6a7b4afe4e6f",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "a53c8201-0456-4d21-91a3-a8994fa0b329",
+ "client-request-id": "d1e5b75b-fbd4-427f-9ba1-6a7b4afe4e6f",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:17:14 GMT",
+ "Date": "Mon, 25 Jul 2022 17:45:27 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12794.4 - NEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - NEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,45 +213,655 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "93",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2",
+ "properties": {
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ }
+ }
+ },
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Azure-AsyncNotification": "Enabled",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2a2ffd32-d357-4e4b-96a6-5cef5cd8817b?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Encoding": "gzip",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 17:45:32 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Retry-After": "3",
+ "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": "ca1f7a3b-0e90-497b-b0ae-5acb040f21ed",
+ "x-ms-correlation-request-id": "76063e8e-f332-4570-ac0b-60a3913b5663",
+ "x-ms-ratelimit-remaining-subscription-writes": "1199",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174533Z:76063e8e-f332-4570-ac0b-60a3913b5663"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-8a942668",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668",
+ "etag": "W/\u002297241144-a65e-4ced-a559-e4c3082ea753\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-25T17:45:29.0342022Z"
+ },
+ "properties": {
+ "provisioningState": "Updating",
+ "resourceGuid": "9ed974ff-9d58-4768-8d32-8fd591c8f78b",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2a2ffd32-d357-4e4b-96a6-5cef5cd8817b?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 17:45:36 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": "6d3d2960-4a81-470b-b009-4f46feb722f2",
+ "x-ms-correlation-request-id": "09d155e2-11fc-47b6-bf4f-10cb608b57d2",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174536Z:09d155e2-11fc-47b6-bf4f-10cb608b57d2"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2246b4bd-45d3-4212-9770-f554eda14272?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 17:45:36 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": "6e1f6003-5baa-4539-9f8a-48cdebd08e92",
+ "x-ms-correlation-request-id": "5870fbb4-a1f0-4538-a22e-483b85d2c32a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174537Z:5870fbb4-a1f0-4538-a22e-483b85d2c32a"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 17:45:36 GMT",
+ "ETag": "W/\u0022267c3a8b-f397-4cc1-a93e-74699428a3d4\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": "fda40520-839c-409a-9543-f6b35bca0457",
+ "x-ms-correlation-request-id": "ac6a41fb-5e44-4f7c-921a-ee2cda65e3fe",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174537Z:ac6a41fb-5e44-4f7c-921a-ee2cda65e3fe"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-8a942668",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668",
+ "etag": "W/\u0022267c3a8b-f397-4cc1-a93e-74699428a3d4\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-25T17:45:29.0342022Z"
+ },
+ "properties": {
+ "provisioningState": "Succeeded",
+ "resourceGuid": "9ed974ff-9d58-4768-8d32-8fd591c8f78b",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/2246b4bd-45d3-4212-9770-f554eda14272?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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/2246b4bd-45d3-4212-9770-f554eda14272?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 17:45:37 GMT",
+ "Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/2246b4bd-45d3-4212-9770-f554eda14272?api-version=2021-08-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": "57e34b5d-9624-4cc8-a855-1925509ac199",
+ "x-ms-correlation-request-id": "75e6b08f-0084-48ca-9ab7-acb808340c2e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174537Z:f6bb691e-e9e8-456f-81bb-1dba66f3bb28"
+ },
+ "ResponseBody": null
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "151",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "RequestBody": {
+ "properties": {
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "properties": {
+ "serviceName": "Microsoft.Netapp/volumes"
+ }
+ }
+ ]
+ }
+ },
+ "StatusCode": 201,
+ "ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/db1aadf6-d226-478a-a2f4-dcc3b7d391f9?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "1318",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 17:45:37 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Retry-After": "3",
+ "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": "737ea5b0-cc72-497b-877d-9bbc78331127",
+ "x-ms-correlation-request-id": "6038d0de-a53a-4770-8d46-b62461806fe8",
+ "x-ms-ratelimit-remaining-subscription-writes": "1198",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174538Z:6038d0de-a53a-4770-8d46-b62461806fe8"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668/subnets/default",
+ "etag": "W/\u0022efa41ba1-0597-4bff-ac62-01132a88340d\u0022",
+ "properties": {
+ "provisioningState": "Updating",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u0022efa41ba1-0597-4bff-ac62-01132a88340d\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/db1aadf6-d226-478a-a2f4-dcc3b7d391f9?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 17:45:41 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": "ac8572f0-484f-48f3-9feb-8b491dd512df",
+ "x-ms-correlation-request-id": "03f1229c-eb56-4b96-9c61-a99c17a86829",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174541Z:03f1229c-eb56-4b96-9c61-a99c17a86829"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 17:45:42 GMT",
+ "ETag": "W/\u0022ea8ccd6a-9f64-4aad-ad71-1dc97855b329\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": "da9ba215-2dec-4866-ad64-d72e349745e7",
+ "x-ms-correlation-request-id": "b5e4b624-21c0-4609-bcae-9fc2f1d9393d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174542Z:b5e4b624-21c0-4609-bcae-9fc2f1d9393d"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668/subnets/default",
+ "etag": "W/\u0022ea8ccd6a-9f64-4aad-ad71-1dc97855b329\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u0022ea8ccd6a-9f64-4aad-ad71-1dc97855b329\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "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.11.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": "Mon, 25 Jul 2022 17:45: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.13315.8 - NEULR1 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.11.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": "Mon, 25 Jul 2022 17:45: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.13201.7 - NEULR1 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": "d8d0b588-c692-4c06-9223-6efcfd8b31dd",
+ "Connection": "keep-alive",
+ "Content-Length": "281",
+ "Content-Type": "application/x-www-form-urlencoded",
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.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.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
+ },
+ "RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "d8d0b588-c692-4c06-9223-6efcfd8b31dd",
+ "Content-Length": "114",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 17:45:41 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.13315.8 - NEULR2 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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668?api-version=2022-03-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "23",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/ac6b0b9c-49df-49ff-9c0f-998cfdffc1d4?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1751a296-45dd-4439-afb0-ffb4e1634f6b?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "699",
+ "Content-Length": "702",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:17:25 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A17%3A24.7394307Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 17:45:46 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T17%3A45%3A45.5433655Z\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": "e7815018-298e-4d3a-ae55-954a3ca58d1f",
- "x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T151725Z:e7815018-298e-4d3a-ae55-954a3ca58d1f",
+ "x-ms-correlation-request-id": "950d105c-6c5e-4bcb-aca4-e451e45ec97c",
+ "x-ms-ratelimit-remaining-subscription-writes": "1197",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174546Z:950d105c-6c5e-4bcb-aca4-e451e45ec97c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A17%3A24.7394307Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A45%3A45.5433655Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:17:19.8230075Z"
+ "CreatedOnDate": "2022-07-25T17:45:43.4464289Z"
},
"properties": {
"provisioningState": "Creating"
@@ -258,21 +869,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:17:23.9646404Z",
+ "createdAt": "2022-07-25T17:45:45.3575716Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:17:23.9646404Z"
+ "lastModifiedAt": "2022-07-25T17:45:45.3575716Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ac6b0b9c-49df-49ff-9c0f-998cfdffc1d4?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1751a296-45dd-4439-afb0-ffb4e1634f6b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +891,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:17:55 GMT",
+ "Date": "Mon, 25 Jul 2022 17:46:16 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +899,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "be636140-9c53-401b-9a2d-2c7a88b2e701",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T151756Z:be636140-9c53-401b-9a2d-2c7a88b2e701",
+ "x-ms-correlation-request-id": "62e84b3d-c300-4ec0-95fb-5c848eb90f99",
+ "x-ms-ratelimit-remaining-subscription-reads": "11986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174616Z:62e84b3d-c300-4ec0-95fb-5c848eb90f99",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ac6b0b9c-49df-49ff-9c0f-998cfdffc1d4",
- "name": "ac6b0b9c-49df-49ff-9c0f-998cfdffc1d4",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1751a296-45dd-4439-afb0-ffb4e1634f6b",
+ "name": "1751a296-45dd-4439-afb0-ffb4e1634f6b",
"status": "Succeeded",
- "startTime": "2022-05-23T15:17:24.7397754Z",
- "endTime": "2022-05-23T15:17:24.7710429Z",
+ "startTime": "2022-07-25T17:45:45.546644Z",
+ "endTime": "2022-07-25T17:45:45.5779676Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +931,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:17:56 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A17%3A24.7756495Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 17:46:16 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T17%3A45%3A45.5839078Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,35 +940,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "41057f15-1d29-4c01-b42e-2e6efa5018d9",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T151756Z:41057f15-1d29-4c01-b42e-2e6efa5018d9",
+ "x-ms-correlation-request-id": "1dc1c53e-3131-4992-99a8-86115ee56dc0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174617Z:1dc1c53e-3131-4992-99a8-86115ee56dc0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A17%3A24.7756495Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A45%3A45.5839078Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:17:19.8230075Z"
+ "CreatedOnDate": "2022-07-25T17:45:43.4464289Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -370,26 +981,26 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:17:23.9646404Z",
+ "createdAt": "2022-07-25T17:45:45.3575716Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:17:23.9646404Z"
+ "lastModifiedAt": "2022-07-25T17:45:45.3575716Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "150",
+ "Content-Length": "138",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"size": 4398046511104,
"serviceLevel": "Premium",
@@ -399,30 +1010,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/269f1c71-a360-45db-88cd-2f26949b3b03?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0f24dba0-2b72-42fb-a194-5d56378c1c8b?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "917",
+ "Content-Length": "916",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:17:59 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A17%3A58.3130996Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 17:46:19 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T17%3A46%3A19.1859001Z\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": "a2fc2b75-91f0-4635-9f06-31352b021413",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T151759Z:a2fc2b75-91f0-4635-9f06-31352b021413",
+ "x-ms-correlation-request-id": "5a057084-0f6e-4046-8e42-9cbe9c6145ef",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174620Z:5a057084-0f6e-4046-8e42-9cbe9c6145ef",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A17%3A58.3130996Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A46%3A19.1859001Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:17:56.7803573Z"
+ "CreatedOnDate": "2022-07-25T17:46:17.6468071Z"
},
"properties": {
"serviceLevel": "Premium",
@@ -436,21 +1047,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:17:57.9042525Z",
+ "createdAt": "2022-07-25T17:46:18.990147Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:17:57.9042525Z"
+ "lastModifiedAt": "2022-07-25T17:46:18.990147Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/269f1c71-a360-45db-88cd-2f26949b3b03?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0f24dba0-2b72-42fb-a194-5d56378c1c8b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -458,7 +1069,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:18:29 GMT",
+ "Date": "Mon, 25 Jul 2022 17:46:49 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -466,31 +1077,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c0005110-3f7f-4248-ba31-8a4076104f8b",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T151829Z:c0005110-3f7f-4248-ba31-8a4076104f8b",
+ "x-ms-correlation-request-id": "4ce51aeb-5ec6-4e49-a801-b647a524be4b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174650Z:4ce51aeb-5ec6-4e49-a801-b647a524be4b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/269f1c71-a360-45db-88cd-2f26949b3b03",
- "name": "269f1c71-a360-45db-88cd-2f26949b3b03",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0f24dba0-2b72-42fb-a194-5d56378c1c8b",
+ "name": "0f24dba0-2b72-42fb-a194-5d56378c1c8b",
"status": "Succeeded",
- "startTime": "2022-05-23T15:17:58.3139695Z",
- "endTime": "2022-05-23T15:17:58.8609631Z",
+ "startTime": "2022-07-25T17:46:19.2026581Z",
+ "endTime": "2022-07-25T17:46:19.5308445Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -498,8 +1109,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:18:29 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A17%3A58.8661622Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 17:46:50 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T17%3A46%3A19.5207692Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -507,22 +1118,22 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6c36e9e8-c5b6-4a91-8f9f-cc94e49e8540",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T151830Z:6c36e9e8-c5b6-4a91-8f9f-cc94e49e8540",
+ "x-ms-correlation-request-id": "31ac5b67-5a27-45e1-9ae8-e35e445d3056",
+ "x-ms-ratelimit-remaining-subscription-reads": "11983",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174650Z:31ac5b67-5a27-45e1-9ae8-e35e445d3056",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A17%3A58.8661622Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A46%3A19.5207692Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:17:56.7803573Z"
+ "CreatedOnDate": "2022-07-25T17:46:17.6468071Z"
},
"properties": {
- "poolId": "53cb36ec-fd37-b7a4-fd5b-72a3ce489051",
+ "poolId": "c0e739c5-2bed-a651-8803-09c522cd859b",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
@@ -531,38 +1142,30 @@
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T15:17:57.9042525Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:17:57.9042525Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "800",
+ "Content-Length": "779",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-8a942668",
"serviceLevel": "Premium",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -576,45 +1179,44 @@
"avsDataStore": "Disabled",
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled"
+ "defaultGroupQuotaInKiBs": 0
}
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/880428a3-b4c7-4707-bded-e913f5db5970?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58e53b82-611d-4338-9a58-dda7e0b24cec?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "1567",
+ "Content-Length": "1575",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:18:34 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A18%3A33.9455845Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 17:46:53 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T17%3A46%3A52.7644729Z\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": "b4dbc7aa-92ff-4b64-857a-f272f607f16a",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T151834Z:b4dbc7aa-92ff-4b64-857a-f272f607f16a",
+ "x-ms-correlation-request-id": "5d47c12d-eb14-406e-99e7-79cb86b689de",
+ "x-ms-ratelimit-remaining-subscription-writes": "1195",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174653Z:5d47c12d-eb14-406e-99e7-79cb86b689de",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A18%3A33.9455845Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A46%3A52.7644729Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:18:30.3543599Z"
+ "CreatedOnDate": "2022-07-25T17:46:51.3630571Z"
},
"properties": {
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-8a942668",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -629,28 +1231,27 @@
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
"provisioningState": "Creating"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:18:31.5736089Z",
+ "createdAt": "2022-07-25T17:46:52.462186Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:18:31.5736089Z"
+ "lastModifiedAt": "2022-07-25T17:46:52.462186Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/880428a3-b4c7-4707-bded-e913f5db5970?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58e53b82-611d-4338-9a58-dda7e0b24cec?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -658,7 +1259,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:19:04 GMT",
+ "Date": "Mon, 25 Jul 2022 17:47:23 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -666,31 +1267,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c41fd6e4-c78e-4179-9351-9e5b9bf31389",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T151904Z:c41fd6e4-c78e-4179-9351-9e5b9bf31389",
+ "x-ms-correlation-request-id": "e86a38be-9463-4084-9ce7-7dd9b250a355",
+ "x-ms-ratelimit-remaining-subscription-reads": "11982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174723Z:e86a38be-9463-4084-9ce7-7dd9b250a355",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/880428a3-b4c7-4707-bded-e913f5db5970",
- "name": "880428a3-b4c7-4707-bded-e913f5db5970",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58e53b82-611d-4338-9a58-dda7e0b24cec",
+ "name": "58e53b82-611d-4338-9a58-dda7e0b24cec",
"status": "Creating",
- "startTime": "2022-05-23T15:18:33.9460523Z",
+ "startTime": "2022-07-25T17:46:52.7696285Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/880428a3-b4c7-4707-bded-e913f5db5970?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58e53b82-611d-4338-9a58-dda7e0b24cec?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -698,7 +1299,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:19:34 GMT",
+ "Date": "Mon, 25 Jul 2022 17:47:53 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -706,31 +1307,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7fdfd6c1-bae8-4c7f-b654-2d30ff2ba66d",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T151935Z:7fdfd6c1-bae8-4c7f-b654-2d30ff2ba66d",
+ "x-ms-correlation-request-id": "bd31de44-3b67-488e-a9b7-e10b8bfcd35b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11981",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174754Z:bd31de44-3b67-488e-a9b7-e10b8bfcd35b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/880428a3-b4c7-4707-bded-e913f5db5970",
- "name": "880428a3-b4c7-4707-bded-e913f5db5970",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58e53b82-611d-4338-9a58-dda7e0b24cec",
+ "name": "58e53b82-611d-4338-9a58-dda7e0b24cec",
"status": "Creating",
- "startTime": "2022-05-23T15:18:33.9460523Z",
+ "startTime": "2022-07-25T17:46:52.7696285Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/880428a3-b4c7-4707-bded-e913f5db5970?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58e53b82-611d-4338-9a58-dda7e0b24cec?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -738,7 +1339,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:20:05 GMT",
+ "Date": "Mon, 25 Jul 2022 17:48:24 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -746,31 +1347,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9449db0f-482d-4aac-9023-f559223e0c39",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152005Z:9449db0f-482d-4aac-9023-f559223e0c39",
+ "x-ms-correlation-request-id": "b3502d94-3167-407d-974d-452b676f1e28",
+ "x-ms-ratelimit-remaining-subscription-reads": "11980",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174824Z:b3502d94-3167-407d-974d-452b676f1e28",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/880428a3-b4c7-4707-bded-e913f5db5970",
- "name": "880428a3-b4c7-4707-bded-e913f5db5970",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58e53b82-611d-4338-9a58-dda7e0b24cec",
+ "name": "58e53b82-611d-4338-9a58-dda7e0b24cec",
"status": "Creating",
- "startTime": "2022-05-23T15:18:33.9460523Z",
+ "startTime": "2022-07-25T17:46:52.7696285Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/880428a3-b4c7-4707-bded-e913f5db5970?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58e53b82-611d-4338-9a58-dda7e0b24cec?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -778,7 +1379,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:20:35 GMT",
+ "Date": "Mon, 25 Jul 2022 17:48:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -786,31 +1387,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "99812c9d-02b8-4788-a005-29a2a6307013",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152035Z:99812c9d-02b8-4788-a005-29a2a6307013",
+ "x-ms-correlation-request-id": "344220d3-0ce2-47bd-b593-db43ba3d8ba4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11979",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174854Z:344220d3-0ce2-47bd-b593-db43ba3d8ba4",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/880428a3-b4c7-4707-bded-e913f5db5970",
- "name": "880428a3-b4c7-4707-bded-e913f5db5970",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58e53b82-611d-4338-9a58-dda7e0b24cec",
+ "name": "58e53b82-611d-4338-9a58-dda7e0b24cec",
"status": "Creating",
- "startTime": "2022-05-23T15:18:33.9460523Z",
+ "startTime": "2022-07-25T17:46:52.7696285Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/880428a3-b4c7-4707-bded-e913f5db5970?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58e53b82-611d-4338-9a58-dda7e0b24cec?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -818,7 +1419,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:21:05 GMT",
+ "Date": "Mon, 25 Jul 2022 17:49:24 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -826,31 +1427,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "23f2e15b-32d9-4485-ac71-21a6f21329ae",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152106Z:23f2e15b-32d9-4485-ac71-21a6f21329ae",
+ "x-ms-correlation-request-id": "987167c9-4992-46b5-8fac-9f33df4418ca",
+ "x-ms-ratelimit-remaining-subscription-reads": "11978",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174925Z:987167c9-4992-46b5-8fac-9f33df4418ca",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/880428a3-b4c7-4707-bded-e913f5db5970",
- "name": "880428a3-b4c7-4707-bded-e913f5db5970",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58e53b82-611d-4338-9a58-dda7e0b24cec",
+ "name": "58e53b82-611d-4338-9a58-dda7e0b24cec",
"status": "Creating",
- "startTime": "2022-05-23T15:18:33.9460523Z",
+ "startTime": "2022-07-25T17:46:52.7696285Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/880428a3-b4c7-4707-bded-e913f5db5970?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58e53b82-611d-4338-9a58-dda7e0b24cec?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -858,7 +1459,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:21:36 GMT",
+ "Date": "Mon, 25 Jul 2022 17:49:55 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -866,31 +1467,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5ca67db3-8726-4bfe-a20b-cbfc048b4bb4",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152136Z:5ca67db3-8726-4bfe-a20b-cbfc048b4bb4",
+ "x-ms-correlation-request-id": "41685cc5-07f1-443b-a277-4fd540a40b20",
+ "x-ms-ratelimit-remaining-subscription-reads": "11977",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T174955Z:41685cc5-07f1-443b-a277-4fd540a40b20",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/880428a3-b4c7-4707-bded-e913f5db5970",
- "name": "880428a3-b4c7-4707-bded-e913f5db5970",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58e53b82-611d-4338-9a58-dda7e0b24cec",
+ "name": "58e53b82-611d-4338-9a58-dda7e0b24cec",
"status": "Creating",
- "startTime": "2022-05-23T15:18:33.9460523Z",
+ "startTime": "2022-07-25T17:46:52.7696285Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/880428a3-b4c7-4707-bded-e913f5db5970?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58e53b82-611d-4338-9a58-dda7e0b24cec?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -898,7 +1499,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:22:06 GMT",
+ "Date": "Mon, 25 Jul 2022 17:50:26 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -906,31 +1507,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1465523a-e541-4c3c-8b03-14bd1a69a165",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152206Z:1465523a-e541-4c3c-8b03-14bd1a69a165",
+ "x-ms-correlation-request-id": "92bfe672-93e4-4f7d-924a-13214a40ab2d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11976",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175026Z:92bfe672-93e4-4f7d-924a-13214a40ab2d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/880428a3-b4c7-4707-bded-e913f5db5970",
- "name": "880428a3-b4c7-4707-bded-e913f5db5970",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58e53b82-611d-4338-9a58-dda7e0b24cec",
+ "name": "58e53b82-611d-4338-9a58-dda7e0b24cec",
"status": "Creating",
- "startTime": "2022-05-23T15:18:33.9460523Z",
+ "startTime": "2022-07-25T17:46:52.7696285Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/880428a3-b4c7-4707-bded-e913f5db5970?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58e53b82-611d-4338-9a58-dda7e0b24cec?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -938,7 +1539,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:22:36 GMT",
+ "Date": "Mon, 25 Jul 2022 17:50:55 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -946,31 +1547,71 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fdd8476f-d8ae-48dd-865a-aa673057780d",
- "x-ms-ratelimit-remaining-subscription-reads": "11988",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152236Z:fdd8476f-d8ae-48dd-865a-aa673057780d",
+ "x-ms-correlation-request-id": "38c8a6ef-89f8-4147-98ab-1f7256c27c84",
+ "x-ms-ratelimit-remaining-subscription-reads": "11975",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175056Z:38c8a6ef-89f8-4147-98ab-1f7256c27c84",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58e53b82-611d-4338-9a58-dda7e0b24cec",
+ "name": "58e53b82-611d-4338-9a58-dda7e0b24cec",
+ "status": "Creating",
+ "startTime": "2022-07-25T17:46:52.7696285Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/58e53b82-611d-4338-9a58-dda7e0b24cec?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Mon, 25 Jul 2022 17:51: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": "c683de82-5ac5-483e-9bcd-fd2dc83e7ed0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11974",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175127Z:c683de82-5ac5-483e-9bcd-fd2dc83e7ed0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/880428a3-b4c7-4707-bded-e913f5db5970",
- "name": "880428a3-b4c7-4707-bded-e913f5db5970",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58e53b82-611d-4338-9a58-dda7e0b24cec",
+ "name": "58e53b82-611d-4338-9a58-dda7e0b24cec",
"status": "Succeeded",
- "startTime": "2022-05-23T15:18:33.9460523Z",
- "endTime": "2022-05-23T15:22:36.1158214Z",
+ "startTime": "2022-07-25T17:46:52.7696285Z",
+ "endTime": "2022-07-25T17:50:59.1437784Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -978,8 +1619,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:22:37 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A22%3A36.1103618Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 17:51:27 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T17%3A50%3A59.1369793Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -987,24 +1628,24 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c29f1c08-bc4d-4239-9eef-bd95075a3442",
- "x-ms-ratelimit-remaining-subscription-reads": "11987",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152237Z:c29f1c08-bc4d-4239-9eef-bd95075a3442",
+ "x-ms-correlation-request-id": "60a7d937-7f06-4653-8c15-6a6f9474a669",
+ "x-ms-ratelimit-remaining-subscription-reads": "11973",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175127Z:60a7d937-7f06-4653-8c15-6a6f9474a669",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A22%3A36.1103618Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A50%3A59.1369793Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:18:30.3543599Z"
+ "CreatedOnDate": "2022-07-25T17:46:51.3630571Z"
},
"properties": {
- "fileSystemId": "4226bef8-e4f7-fe61-1cea-3e079b3ae20e",
+ "fileSystemId": "90d6b852-fff0-c7cf-21bd-f51e2d7be235",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-8a942668",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1030,11 +1671,11 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_f1828831",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_9f07673f",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
+ "networkSiblingSetId": "ab7763c0-0463-d6df-f940-dc2eb81d55f3",
+ "storageToNetworkProximity": "T2",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
"securityStyle": "Unix",
@@ -1045,9 +1686,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "4226bef8-e4f7-fe61-1cea-3e079b3ae20e",
- "fileSystemId": "4226bef8-e4f7-fe61-1cea-3e079b3ae20e",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "90d6b852-fff0-c7cf-21bd-f51e2d7be235",
+ "fileSystemId": "90d6b852-fff0-c7cf-21bd-f51e2d7be235",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1059,27 +1700,18 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
- "encrypted": true,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T15:18:31.5736089Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:18:31.5736089Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1087,8 +1719,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:22:37 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A22%3A36.1103618Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 17:51:27 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T17%3A50%3A59.1369793Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1096,24 +1728,24 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "dfa822bc-b52c-4316-a1c0-b0b24d05d55d",
- "x-ms-ratelimit-remaining-subscription-reads": "11986",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152238Z:dfa822bc-b52c-4316-a1c0-b0b24d05d55d",
+ "x-ms-correlation-request-id": "dde10933-f36a-4adc-82fb-c2bb30c48178",
+ "x-ms-ratelimit-remaining-subscription-reads": "11972",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175127Z:dde10933-f36a-4adc-82fb-c2bb30c48178",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A22%3A36.1103618Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A50%3A59.1369793Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:18:30.3543599Z"
+ "CreatedOnDate": "2022-07-25T17:46:51.3630571Z"
},
"properties": {
- "fileSystemId": "4226bef8-e4f7-fe61-1cea-3e079b3ae20e",
+ "fileSystemId": "90d6b852-fff0-c7cf-21bd-f51e2d7be235",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-8a942668",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1139,11 +1771,11 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_f1828831",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_9f07673f",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
+ "networkSiblingSetId": "ab7763c0-0463-d6df-f940-dc2eb81d55f3",
+ "storageToNetworkProximity": "T2",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
"securityStyle": "Unix",
@@ -1154,9 +1786,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "4226bef8-e4f7-fe61-1cea-3e079b3ae20e",
- "fileSystemId": "4226bef8-e4f7-fe61-1cea-3e079b3ae20e",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "90d6b852-fff0-c7cf-21bd-f51e2d7be235",
+ "fileSystemId": "90d6b852-fff0-c7cf-21bd-f51e2d7be235",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1168,69 +1800,60 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
- "encrypted": true,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T15:18:31.5736089Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:18:31.5736089Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "23",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2"
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8f2ef376-7ca4-4470-828c-f78864914d9d?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3c58a4e5-79c2-4ae5-8e74-23c5a906db17?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "501",
+ "Content-Length": "518",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:22:38 GMT",
+ "Date": "Mon, 25 Jul 2022 17:51:28 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8f2ef376-7ca4-4470-828c-f78864914d9d?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3c58a4e5-79c2-4ae5-8e74-23c5a906db17?api-version=2022-03-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": "04a97da4-4ee2-41a9-9391-41965c40aee5",
- "x-ms-ratelimit-remaining-subscription-writes": "1196",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152238Z:04a97da4-4ee2-41a9-9391-41965c40aee5",
+ "x-ms-correlation-request-id": "67aef776-4cc1-4340-b671-8b6aa62ffd8a",
+ "x-ms-ratelimit-remaining-subscription-writes": "1194",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175128Z:67aef776-4cc1-4340-b671-8b6aa62ffd8a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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",
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"provisioningState": "Creating"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8f2ef376-7ca4-4470-828c-f78864914d9d?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3c58a4e5-79c2-4ae5-8e74-23c5a906db17?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1238,7 +1861,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:23:08 GMT",
+ "Date": "Mon, 25 Jul 2022 17:51:57 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1246,70 +1869,70 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "af4c1be2-fb6f-4c09-8aff-cfae381f0b70",
- "x-ms-ratelimit-remaining-subscription-reads": "11985",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152308Z:af4c1be2-fb6f-4c09-8aff-cfae381f0b70",
+ "x-ms-correlation-request-id": "996fb723-ebd0-4754-8cb2-4791cf208583",
+ "x-ms-ratelimit-remaining-subscription-reads": "11971",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175158Z:996fb723-ebd0-4754-8cb2-4791cf208583",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8f2ef376-7ca4-4470-828c-f78864914d9d",
- "name": "8f2ef376-7ca4-4470-828c-f78864914d9d",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3c58a4e5-79c2-4ae5-8e74-23c5a906db17",
+ "name": "3c58a4e5-79c2-4ae5-8e74-23c5a906db17",
"status": "Succeeded",
- "startTime": "2022-05-23T15:22:38.3682643Z",
- "endTime": "2022-05-23T15:22:54.0454668Z",
+ "startTime": "2022-07-25T17:51:28.3496438Z",
+ "endTime": "2022-07-25T17:51:30.5445953Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/8f2ef376-7ca4-4470-828c-f78864914d9d?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3c58a4e5-79c2-4ae5-8e74-23c5a906db17?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 201,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "617",
+ "Content-Length": "634",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:23:08 GMT",
+ "Date": "Mon, 25 Jul 2022 17:51: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": "affd8940-4260-4983-9004-4ef6cb7a765d",
- "x-ms-ratelimit-remaining-subscription-reads": "11984",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152308Z:affd8940-4260-4983-9004-4ef6cb7a765d",
+ "x-ms-correlation-request-id": "304afce6-0250-4af9-b41c-bc99973356bf",
+ "x-ms-ratelimit-remaining-subscription-reads": "11970",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175159Z:304afce6-0250-4af9-b41c-bc99973356bf",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "5/23/2022 3:22:54 PM",
- "location": "southcentralusstage",
+ "etag": "7/25/2022 5:51:30 PM",
+ "location": "westus2",
"properties": {
"provisioningState": "Succeeded",
- "snapshotId": "de66bd6b-51ac-bd8c-954a-87da47ce0fcb",
- "created": "2022-05-23T15:22:40Z"
+ "snapshotId": "321fd9c6-94d3-56c3-18bb-9ad8ce366de4",
+ "created": "2022-07-25T17:51:28Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1317,8 +1940,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:23:08 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A22%3A36.1103618Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 17:51:58 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T17%3A50%3A59.1369793Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1326,24 +1949,24 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "02022027-4e9f-407f-ab0c-1f87dc3687de",
- "x-ms-ratelimit-remaining-subscription-reads": "11983",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152309Z:02022027-4e9f-407f-ab0c-1f87dc3687de",
+ "x-ms-correlation-request-id": "5b6d2a0e-dbf2-4336-aef7-6c3f09ae6d98",
+ "x-ms-ratelimit-remaining-subscription-reads": "11969",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175159Z:5b6d2a0e-dbf2-4336-aef7-6c3f09ae6d98",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A22%3A36.1103618Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A50%3A59.1369793Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:18:30.3543599Z"
+ "CreatedOnDate": "2022-07-25T17:46:51.3630571Z"
},
"properties": {
- "fileSystemId": "4226bef8-e4f7-fe61-1cea-3e079b3ae20e",
+ "fileSystemId": "90d6b852-fff0-c7cf-21bd-f51e2d7be235",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-8a942668",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1369,11 +1992,11 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_f1828831",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_9f07673f",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
+ "networkSiblingSetId": "ab7763c0-0463-d6df-f940-dc2eb81d55f3",
+ "storageToNetworkProximity": "T2",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
"securityStyle": "Unix",
@@ -1384,9 +2007,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "4226bef8-e4f7-fe61-1cea-3e079b3ae20e",
- "fileSystemId": "4226bef8-e4f7-fe61-1cea-3e079b3ae20e",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "90d6b852-fff0-c7cf-21bd-f51e2d7be235",
+ "fileSystemId": "90d6b852-fff0-c7cf-21bd-f51e2d7be235",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1398,69 +2021,60 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
- "encrypted": true,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T15:18:31.5736089Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:18:31.5736089Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "23",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2"
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c84a6fbd-5fa8-4e39-8c1d-9aa115d360ad?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25e3efe5-1c03-40da-a204-325908d94105?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "501",
+ "Content-Length": "518",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:23:09 GMT",
+ "Date": "Mon, 25 Jul 2022 17:51:59 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c84a6fbd-5fa8-4e39-8c1d-9aa115d360ad?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25e3efe5-1c03-40da-a204-325908d94105?api-version=2022-03-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": "7098f6bf-c826-49c5-948e-9ea38a01ad7b",
- "x-ms-ratelimit-remaining-subscription-writes": "1195",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152309Z:7098f6bf-c826-49c5-948e-9ea38a01ad7b",
+ "x-ms-correlation-request-id": "dd128d81-09d3-4dea-b28d-d2cc03fc8a83",
+ "x-ms-ratelimit-remaining-subscription-writes": "1193",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175200Z:dd128d81-09d3-4dea-b28d-d2cc03fc8a83",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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",
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"provisioningState": "Creating"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c84a6fbd-5fa8-4e39-8c1d-9aa115d360ad?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25e3efe5-1c03-40da-a204-325908d94105?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1468,7 +2082,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:23:39 GMT",
+ "Date": "Mon, 25 Jul 2022 17:52:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1476,70 +2090,70 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "cc0107b9-aef6-4385-83d1-dbaf86e0dc12",
- "x-ms-ratelimit-remaining-subscription-reads": "11982",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152339Z:cc0107b9-aef6-4385-83d1-dbaf86e0dc12",
+ "x-ms-correlation-request-id": "62849fc4-2924-4ef6-89e7-633063be60a6",
+ "x-ms-ratelimit-remaining-subscription-reads": "11968",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175230Z:62849fc4-2924-4ef6-89e7-633063be60a6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c84a6fbd-5fa8-4e39-8c1d-9aa115d360ad",
- "name": "c84a6fbd-5fa8-4e39-8c1d-9aa115d360ad",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25e3efe5-1c03-40da-a204-325908d94105",
+ "name": "25e3efe5-1c03-40da-a204-325908d94105",
"status": "Succeeded",
- "startTime": "2022-05-23T15:23:09.6733319Z",
- "endTime": "2022-05-23T15:23:28.0242855Z",
+ "startTime": "2022-07-25T17:51:59.8858931Z",
+ "endTime": "2022-07-25T17:52:02.2923628Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-2"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/c84a6fbd-5fa8-4e39-8c1d-9aa115d360ad?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25e3efe5-1c03-40da-a204-325908d94105?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 201,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "617",
+ "Content-Length": "634",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:23:39 GMT",
+ "Date": "Mon, 25 Jul 2022 17:52: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": "13c8fca7-40cd-4fd7-8c45-72997b796f09",
- "x-ms-ratelimit-remaining-subscription-reads": "11981",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152340Z:13c8fca7-40cd-4fd7-8c45-72997b796f09",
+ "x-ms-correlation-request-id": "8520ea38-3ae4-4f17-b967-592a9c4258ee",
+ "x-ms-ratelimit-remaining-subscription-reads": "11967",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175230Z:8520ea38-3ae4-4f17-b967-592a9c4258ee",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "5/23/2022 3:23:28 PM",
- "location": "southcentralusstage",
+ "etag": "7/25/2022 5:52:02 PM",
+ "location": "westus2",
"properties": {
"provisioningState": "Succeeded",
- "snapshotId": "5593f765-1096-2f2d-48ba-8a12ec636566",
- "created": "2022-05-23T15:23:11Z"
+ "snapshotId": "552a53a9-f152-72eb-717d-a493b9923a12",
+ "created": "2022-07-25T17:52:00Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668/snapshots?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1547,7 +2161,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:23:40 GMT",
+ "Date": "Mon, 25 Jul 2022 17:52:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1555,76 +2169,76 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6f0d5088-bb53-449c-bb14-e462c788a14b",
- "x-ms-ratelimit-remaining-subscription-reads": "11980",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152341Z:6f0d5088-bb53-449c-bb14-e462c788a14b",
+ "x-ms-correlation-request-id": "a20b3b4e-10e4-49b0-921a-876801e2d80f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11966",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175231Z:a20b3b4e-10e4-49b0-921a-876801e2d80f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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",
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"provisioningState": "Succeeded",
- "snapshotId": "de66bd6b-51ac-bd8c-954a-87da47ce0fcb",
- "created": "2022-05-23T15:22:40Z"
+ "snapshotId": "321fd9c6-94d3-56c3-18bb-9ad8ce366de4",
+ "created": "2022-07-25T17:51:28Z"
}
},
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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",
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"provisioningState": "Succeeded",
- "snapshotId": "5593f765-1096-2f2d-48ba-8a12ec636566",
- "created": "2022-05-23T15:23:11Z"
+ "snapshotId": "552a53a9-f152-72eb-717d-a493b9923a12",
+ "created": "2022-07-25T17:52:00Z"
}
}
]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/8bddd2df-31da-4118-a465-3e8c69197cad?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4dcec929-e353-4361-88d2-29761d9cabca?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 15:23:41 GMT",
+ "Date": "Mon, 25 Jul 2022 17:52:31 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8bddd2df-31da-4118-a465-3e8c69197cad?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4dcec929-e353-4361-88d2-29761d9cabca?api-version=2022-03-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": "b9a7c018-e9aa-4036-b479-e69e3b91a3eb",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152342Z:b9a7c018-e9aa-4036-b479-e69e3b91a3eb",
+ "x-ms-correlation-request-id": "371921a3-43c0-49a2-9a3f-c3e47bacf599",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175231Z:371921a3-43c0-49a2-9a3f-c3e47bacf599",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8bddd2df-31da-4118-a465-3e8c69197cad?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4dcec929-e353-4361-88d2-29761d9cabca?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1632,7 +2246,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:24:12 GMT",
+ "Date": "Mon, 25 Jul 2022 17:53:01 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1640,31 +2254,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "502a5607-967e-436b-9b05-6f767d422b4f",
- "x-ms-ratelimit-remaining-subscription-reads": "11979",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152412Z:502a5607-967e-436b-9b05-6f767d422b4f",
+ "x-ms-correlation-request-id": "904b0e1d-96ec-44dd-9187-09c1ea515875",
+ "x-ms-ratelimit-remaining-subscription-reads": "11965",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175301Z:904b0e1d-96ec-44dd-9187-09c1ea515875",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8bddd2df-31da-4118-a465-3e8c69197cad",
- "name": "8bddd2df-31da-4118-a465-3e8c69197cad",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4dcec929-e353-4361-88d2-29761d9cabca",
+ "name": "4dcec929-e353-4361-88d2-29761d9cabca",
"status": "Succeeded",
- "startTime": "2022-05-23T15:23:42.1555623Z",
- "endTime": "2022-05-23T15:23:51.7927359Z",
+ "startTime": "2022-07-25T17:52:31.4703337Z",
+ "endTime": "2022-07-25T17:52:33.5798557Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/8bddd2df-31da-4118-a465-3e8c69197cad?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4dcec929-e353-4361-88d2-29761d9cabca?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1672,7 +2286,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:24:12 GMT",
+ "Date": "Mon, 25 Jul 2022 17:53:01 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1680,89 +2294,89 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "044051c1-2c02-4697-817a-b6cd580b865c",
- "x-ms-ratelimit-remaining-subscription-reads": "11978",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152412Z:044051c1-2c02-4697-817a-b6cd580b865c",
+ "x-ms-correlation-request-id": "ae5312b2-c3b3-4a0d-8932-a59e3ccdae91",
+ "x-ms-ratelimit-remaining-subscription-reads": "11964",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175302Z:ae5312b2-c3b3-4a0d-8932-a59e3ccdae91",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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",
- "location": "southcentralusstage"
+ "location": "westus2"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "311",
+ "Content-Length": "326",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:24:34 GMT",
+ "Date": "Mon, 25 Jul 2022 17:53: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": "4b2e95ea-35f1-4b25-a7fe-b0168ab9c59a",
- "x-ms-ratelimit-remaining-subscription-reads": "11977",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152434Z:4b2e95ea-35f1-4b25-a7fe-b0168ab9c59a",
+ "x-ms-correlation-request-id": "edd7edb4-eef0-4edc-afc8-d3391c6fb7f0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11963",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175322Z:edd7edb4-eef0-4edc-afc8-d3391c6fb7f0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"error": {
"code": "NotFound",
- "message": "The requested snapshot \u0027sdk-py-tests-snapshot-1\u0027 was not found on the volume \u0027sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1\u0027. Please check the requested snapshot. Please note: The snapshot may no longer be available based on configured snapshot policies."
+ "message": "The requested snapshot \u0027sdk-py-tests-snapshot-1\u0027 was not found on the volume \u0027sdk-py-tests-acc-1-8a942668/sdk-py-tests-pool-1/sdk-py-tests-vol-3-8a942668\u0027. Please check the requested snapshot. Please note: The snapshot may no longer be available based on configured snapshot policies."
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/cfab397d-9cf9-4bb5-a422-0b4b5d8274d6?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a7172cee-3fbe-4856-bbdf-b196f8b9f272?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 15:24:34 GMT",
+ "Date": "Mon, 25 Jul 2022 17:53:22 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cfab397d-9cf9-4bb5-a422-0b4b5d8274d6?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a7172cee-3fbe-4856-bbdf-b196f8b9f272?api-version=2022-03-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": "51e95706-b084-463a-b430-9bfa0e669832",
- "x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152435Z:51e95706-b084-463a-b430-9bfa0e669832",
+ "x-ms-correlation-request-id": "0e3fb55a-644e-4099-b976-75aba8c4b08e",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175323Z:0e3fb55a-644e-4099-b976-75aba8c4b08e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cfab397d-9cf9-4bb5-a422-0b4b5d8274d6?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a7172cee-3fbe-4856-bbdf-b196f8b9f272?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1770,7 +2384,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:25:04 GMT",
+ "Date": "Mon, 25 Jul 2022 17:53:53 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1778,31 +2392,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c148d4fc-020e-4365-88a4-1fff486dd08e",
- "x-ms-ratelimit-remaining-subscription-reads": "11976",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152505Z:c148d4fc-020e-4365-88a4-1fff486dd08e",
+ "x-ms-correlation-request-id": "83fce6da-a3fd-4ffa-935d-c2d52e6399f1",
+ "x-ms-ratelimit-remaining-subscription-reads": "11962",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175353Z:83fce6da-a3fd-4ffa-935d-c2d52e6399f1",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cfab397d-9cf9-4bb5-a422-0b4b5d8274d6",
- "name": "cfab397d-9cf9-4bb5-a422-0b4b5d8274d6",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a7172cee-3fbe-4856-bbdf-b196f8b9f272",
+ "name": "a7172cee-3fbe-4856-bbdf-b196f8b9f272",
"status": "Succeeded",
- "startTime": "2022-05-23T15:24:34.9577486Z",
- "endTime": "2022-05-23T15:24:48.66157Z",
+ "startTime": "2022-07-25T17:53:23.1383156Z",
+ "endTime": "2022-07-25T17:53:25.6289552Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-2"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/cfab397d-9cf9-4bb5-a422-0b4b5d8274d6?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a7172cee-3fbe-4856-bbdf-b196f8b9f272?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1810,7 +2424,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:25:05 GMT",
+ "Date": "Mon, 25 Jul 2022 17:53:53 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1818,129 +2432,89 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "94f7b163-9213-4e11-8f83-24ddae48e584",
- "x-ms-ratelimit-remaining-subscription-reads": "11975",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152505Z:94f7b163-9213-4e11-8f83-24ddae48e584",
+ "x-ms-correlation-request-id": "c98d7c89-5c16-4c03-943e-64c3be6fc4a6",
+ "x-ms-ratelimit-remaining-subscription-reads": "11961",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175353Z:c98d7c89-5c16-4c03-943e-64c3be6fc4a6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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",
- "location": "southcentralusstage"
+ "location": "westus2"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "311",
+ "Content-Length": "326",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:25:25 GMT",
+ "Date": "Mon, 25 Jul 2022 17:54: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": "563c4d67-b232-4087-a772-468f622c08d2",
- "x-ms-ratelimit-remaining-subscription-reads": "11974",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152526Z:563c4d67-b232-4087-a772-468f622c08d2",
+ "x-ms-correlation-request-id": "9714a102-d2e3-4a66-8043-63403b4f5cca",
+ "x-ms-ratelimit-remaining-subscription-reads": "11960",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175414Z:9714a102-d2e3-4a66-8043-63403b4f5cca",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"error": {
"code": "NotFound",
- "message": "The requested snapshot \u0027sdk-py-tests-snapshot-2\u0027 was not found on the volume \u0027sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1\u0027. Please check the requested snapshot. Please note: The snapshot may no longer be available based on configured snapshot policies."
+ "message": "The requested snapshot \u0027sdk-py-tests-snapshot-2\u0027 was not found on the volume \u0027sdk-py-tests-acc-1-8a942668/sdk-py-tests-pool-1/sdk-py-tests-vol-3-8a942668\u0027. Please check the requested snapshot. Please note: The snapshot may no longer be available based on configured snapshot policies."
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/3c60fa45-42ee-42af-97c1-1b5ff32d956d?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cd1a73f-7b72-46bf-80b3-f9470482a678?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 15:25:26 GMT",
+ "Date": "Mon, 25 Jul 2022 17:54:14 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3c60fa45-42ee-42af-97c1-1b5ff32d956d?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cd1a73f-7b72-46bf-80b3-f9470482a678?api-version=2022-03-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": "5c002090-02aa-475b-bb14-c75ddd950868",
- "x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152527Z:5c002090-02aa-475b-bb14-c75ddd950868",
+ "x-ms-correlation-request-id": "46437ba0-f996-4f70-840a-67909f3497d7",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175415Z:46437ba0-f996-4f70-840a-67909f3497d7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3c60fa45-42ee-42af-97c1-1b5ff32d956d?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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, 23 May 2022 15:25: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": "b380d079-73a9-4454-9610-df5ab9dd7eb0",
- "x-ms-ratelimit-remaining-subscription-reads": "11973",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152557Z:b380d079-73a9-4454-9610-df5ab9dd7eb0",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3c60fa45-42ee-42af-97c1-1b5ff32d956d",
- "name": "3c60fa45-42ee-42af-97c1-1b5ff32d956d",
- "status": "Deleting",
- "startTime": "2022-05-23T15:25:27.1239844Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3c60fa45-42ee-42af-97c1-1b5ff32d956d?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cd1a73f-7b72-46bf-80b3-f9470482a678?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1948,7 +2522,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:26:27 GMT",
+ "Date": "Mon, 25 Jul 2022 17:54:44 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1956,31 +2530,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7fdb8a11-ac20-43c4-ae86-918631ee3984",
- "x-ms-ratelimit-remaining-subscription-reads": "11972",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152627Z:7fdb8a11-ac20-43c4-ae86-918631ee3984",
+ "x-ms-correlation-request-id": "69ead4f2-e49e-4916-ac5a-3ee1f49e5d82",
+ "x-ms-ratelimit-remaining-subscription-reads": "11959",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175445Z:69ead4f2-e49e-4916-ac5a-3ee1f49e5d82",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3c60fa45-42ee-42af-97c1-1b5ff32d956d",
- "name": "3c60fa45-42ee-42af-97c1-1b5ff32d956d",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cd1a73f-7b72-46bf-80b3-f9470482a678",
+ "name": "7cd1a73f-7b72-46bf-80b3-f9470482a678",
"status": "Deleting",
- "startTime": "2022-05-23T15:25:27.1239844Z",
+ "startTime": "2022-07-25T17:54:15.0912611Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/3c60fa45-42ee-42af-97c1-1b5ff32d956d?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cd1a73f-7b72-46bf-80b3-f9470482a678?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1988,7 +2562,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:26:57 GMT",
+ "Date": "Mon, 25 Jul 2022 17:55:15 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1996,31 +2570,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e8d49741-db4f-488e-907b-a700a08a2006",
- "x-ms-ratelimit-remaining-subscription-reads": "11971",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152657Z:e8d49741-db4f-488e-907b-a700a08a2006",
+ "x-ms-correlation-request-id": "a85f60d8-6989-495a-9421-435c142832b0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11958",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175515Z:a85f60d8-6989-495a-9421-435c142832b0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3c60fa45-42ee-42af-97c1-1b5ff32d956d",
- "name": "3c60fa45-42ee-42af-97c1-1b5ff32d956d",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cd1a73f-7b72-46bf-80b3-f9470482a678",
+ "name": "7cd1a73f-7b72-46bf-80b3-f9470482a678",
"status": "Deleting",
- "startTime": "2022-05-23T15:25:27.1239844Z",
+ "startTime": "2022-07-25T17:54:15.0912611Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/3c60fa45-42ee-42af-97c1-1b5ff32d956d?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cd1a73f-7b72-46bf-80b3-f9470482a678?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2028,7 +2602,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:27:27 GMT",
+ "Date": "Mon, 25 Jul 2022 17:55:45 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2036,31 +2610,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1dde286b-0a52-44aa-84ad-b2c10de3f937",
- "x-ms-ratelimit-remaining-subscription-reads": "11970",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152728Z:1dde286b-0a52-44aa-84ad-b2c10de3f937",
+ "x-ms-correlation-request-id": "711d19fa-0dfb-4416-a636-4933c23a9459",
+ "x-ms-ratelimit-remaining-subscription-reads": "11957",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175546Z:711d19fa-0dfb-4416-a636-4933c23a9459",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3c60fa45-42ee-42af-97c1-1b5ff32d956d",
- "name": "3c60fa45-42ee-42af-97c1-1b5ff32d956d",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cd1a73f-7b72-46bf-80b3-f9470482a678",
+ "name": "7cd1a73f-7b72-46bf-80b3-f9470482a678",
"status": "Succeeded",
- "startTime": "2022-05-23T15:25:27.1239844Z",
- "endTime": "2022-05-23T15:26:59.4297128Z",
+ "startTime": "2022-07-25T17:54:15.0912611Z",
+ "endTime": "2022-07-25T17:55:16.565585Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/3c60fa45-42ee-42af-97c1-1b5ff32d956d?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cd1a73f-7b72-46bf-80b3-f9470482a678?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2068,7 +2642,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:27:28 GMT",
+ "Date": "Mon, 25 Jul 2022 17:55:46 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2076,25 +2650,25 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "93cc52e5-24c3-441d-9608-b703b7b4cd35",
- "x-ms-ratelimit-remaining-subscription-reads": "11969",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T152728Z:93cc52e5-24c3-441d-9608-b703b7b4cd35",
+ "x-ms-correlation-request-id": "06847e4b-29bd-4e08-80d3-1b60c1024f31",
+ "x-ms-ratelimit-remaining-subscription-reads": "11956",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175547Z:06847e4b-29bd-4e08-80d3-1b60c1024f31",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A26%3A50.1345487Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A54%3A15.0877675Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:18:30.3543599Z"
+ "CreatedOnDate": "2022-07-25T17:46:51.3630571Z"
},
"properties": {
- "fileSystemId": "4226bef8-e4f7-fe61-1cea-3e079b3ae20e",
+ "fileSystemId": "90d6b852-fff0-c7cf-21bd-f51e2d7be235",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
+ "creationToken": "sdk-py-tests-vol-3-8a942668",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -2122,25 +2696,25 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "DELETED_baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_f1828831",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_9f07673f",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
- "storageToNetworkProximity": "Default",
+ "networkSiblingSetId": "ab7763c0-0463-d6df-f940-dc2eb81d55f3",
+ "storageToNetworkProximity": "T2",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "53cb36ec-fd37-b7a4-fd5b-72a3ce489051",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668",
+ "poolId": "c0e739c5-2bed-a651-8803-09c522cd859b",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "4226bef8-e4f7-fe61-1cea-3e079b3ae20e",
- "fileSystemId": "4226bef8-e4f7-fe61-1cea-3e079b3ae20e",
+ "mountTargetId": "90d6b852-fff0-c7cf-21bd-f51e2d7be235",
+ "fileSystemId": "90d6b852-fff0-c7cf-21bd-f51e2d7be235",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -2159,89 +2733,79 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"encrypted": true,
- "smbAccessBasedEnumeration": "Disabled",
- "smbNonBrowsable": "Disabled",
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T15:18:31.5736089Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:18:31.5736089Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "306",
+ "Content-Length": "320",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:30:49 GMT",
+ "Date": "Mon, 25 Jul 2022 17:59:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "481ec6c8-142b-4691-9245-c82364c024f5",
+ "x-ms-correlation-request-id": "a3099e6e-78d1-458c-aaae-b00d8eb96d21",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153050Z:481ec6c8-142b-4691-9245-c82364c024f5"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175908Z:a3099e6e-78d1-458c-aaae-b00d8eb96d21"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/b14c3b67-47fd-471d-9364-d5084b3732de?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8ffb5756-ce7d-4ab2-a82d-3c3437726a97?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 15:31:02 GMT",
+ "Date": "Mon, 25 Jul 2022 17:59:19 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b14c3b67-47fd-471d-9364-d5084b3732de?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8ffb5756-ce7d-4ab2-a82d-3c3437726a97?api-version=2022-03-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": "3bd379d7-e67b-46dc-995a-8b0daedb3039",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153102Z:3bd379d7-e67b-46dc-995a-8b0daedb3039",
+ "x-ms-correlation-request-id": "0e356635-5b60-4af6-8ea3-3d3590f014fb",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175920Z:0e356635-5b60-4af6-8ea3-3d3590f014fb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b14c3b67-47fd-471d-9364-d5084b3732de?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8ffb5756-ce7d-4ab2-a82d-3c3437726a97?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2249,7 +2813,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:31:32 GMT",
+ "Date": "Mon, 25 Jul 2022 17:59:49 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2257,31 +2821,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9a614364-4c06-4a98-b675-a09652edb73e",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153133Z:9a614364-4c06-4a98-b675-a09652edb73e",
+ "x-ms-correlation-request-id": "8367be36-4aa8-41a6-a357-17ba68d9cf57",
+ "x-ms-ratelimit-remaining-subscription-reads": "11954",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175950Z:8367be36-4aa8-41a6-a357-17ba68d9cf57",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b14c3b67-47fd-471d-9364-d5084b3732de",
- "name": "b14c3b67-47fd-471d-9364-d5084b3732de",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8ffb5756-ce7d-4ab2-a82d-3c3437726a97",
+ "name": "8ffb5756-ce7d-4ab2-a82d-3c3437726a97",
"status": "Succeeded",
- "startTime": "2022-05-23T15:31:02.5861708Z",
- "endTime": "2022-05-23T15:31:07.2771056Z",
+ "startTime": "2022-07-25T17:59:19.9691963Z",
+ "endTime": "2022-07-25T17:59:20.2504596Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/b14c3b67-47fd-471d-9364-d5084b3732de?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8ffb5756-ce7d-4ab2-a82d-3c3437726a97?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2289,7 +2853,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:31:32 GMT",
+ "Date": "Mon, 25 Jul 2022 17:59:50 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2297,211 +2861,203 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c2449058-3484-417b-b2bf-7a1d02713e7e",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153133Z:c2449058-3484-417b-b2bf-7a1d02713e7e",
+ "x-ms-correlation-request-id": "80efbf32-53e1-46cd-bd7d-67bb585e0f58",
+ "x-ms-ratelimit-remaining-subscription-reads": "11953",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T175950Z:80efbf32-53e1-46cd-bd7d-67bb585e0f58",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A31%3A02.5856648Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A59%3A19.9369495Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:17:56.7803573Z"
+ "CreatedOnDate": "2022-07-25T17:46:17.6468071Z"
},
"properties": {
- "poolId": "53cb36ec-fd37-b7a4-fd5b-72a3ce489051",
+ "poolId": "c0e739c5-2bed-a651-8803-09c522cd859b",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1",
"qosType": "Auto",
"totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T15:17:57.9042525Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:17:57.9042525Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 15:31:43 GMT",
+ "Date": "Mon, 25 Jul 2022 18: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": "8b9dc978-e2d3-4aed-b3ff-1562425eae15",
- "x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153143Z:8b9dc978-e2d3-4aed-b3ff-1562425eae15"
+ "x-ms-correlation-request-id": "f2b5fe78-aadd-40a3-b913-1f057f2e1cad",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180001Z:f2b5fe78-aadd-40a3-b913-1f057f2e1cad"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 15:31:53 GMT",
+ "Date": "Mon, 25 Jul 2022 18: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": "f286d0ae-64c8-4bfb-80d3-9a52e5a3e7f9",
- "x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153154Z:f286d0ae-64c8-4bfb-80d3-9a52e5a3e7f9"
+ "x-ms-correlation-request-id": "349b315e-699c-4b1d-a990-bafdd2bb292a",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180011Z:349b315e-699c-4b1d-a990-bafdd2bb292a"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 15:32:03 GMT",
+ "Date": "Mon, 25 Jul 2022 18: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": "19b41561-6ac0-48d8-8aba-b70d9e2f51ed",
- "x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153204Z:19b41561-6ac0-48d8-8aba-b70d9e2f51ed"
+ "x-ms-correlation-request-id": "47e64df8-c0b5-4fff-8222-a3c7aab8bcb0",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180021Z:47e64df8-c0b5-4fff-8222-a3c7aab8bcb0"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 15:32:13 GMT",
+ "Date": "Mon, 25 Jul 2022 18: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": "a8e78614-a0ed-4e3a-a1ef-09f161e32e85",
- "x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153214Z:a8e78614-a0ed-4e3a-a1ef-09f161e32e85"
+ "x-ms-correlation-request-id": "41018a57-138a-4d07-af05-b290669046fb",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180031Z:41018a57-138a-4d07-af05-b290669046fb"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:32:24 GMT",
+ "Date": "Mon, 25 Jul 2022 18: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": "7a0d6eaf-5284-4273-b097-8515b7309f7f",
+ "x-ms-correlation-request-id": "2b5497dc-1277-4d49-b888-55b4bd3c6ee9",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153224Z:7a0d6eaf-5284-4273-b097-8515b7309f7f"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180042Z:2b5497dc-1277-4d49-b888-55b4bd3c6ee9"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/a799a274-fd7b-4453-b4f7-91ab7282ab95?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/feb0c0b0-172e-4dc4-b182-2654b5785154?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 15:32:25 GMT",
+ "Date": "Mon, 25 Jul 2022 18:00:43 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a799a274-fd7b-4453-b4f7-91ab7282ab95?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/feb0c0b0-172e-4dc4-b182-2654b5785154?api-version=2022-03-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": "7a988bf1-1c13-4924-ae62-2b0989ffe724",
- "x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153225Z:7a988bf1-1c13-4924-ae62-2b0989ffe724",
+ "x-ms-correlation-request-id": "47e2a13e-d236-4052-8d9e-90d9658a3b41",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180043Z:47e2a13e-d236-4052-8d9e-90d9658a3b41",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a799a274-fd7b-4453-b4f7-91ab7282ab95?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/feb0c0b0-172e-4dc4-b182-2654b5785154?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2509,7 +3065,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:32:55 GMT",
+ "Date": "Mon, 25 Jul 2022 18:01:13 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2517,31 +3073,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2e75da3e-df80-4a1b-9f68-3d36fd12f047",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153256Z:2e75da3e-df80-4a1b-9f68-3d36fd12f047",
+ "x-ms-correlation-request-id": "17d3bd7f-b28b-485f-bb08-8878ae0d47de",
+ "x-ms-ratelimit-remaining-subscription-reads": "11951",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180114Z:17d3bd7f-b28b-485f-bb08-8878ae0d47de",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a799a274-fd7b-4453-b4f7-91ab7282ab95",
- "name": "a799a274-fd7b-4453-b4f7-91ab7282ab95",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/feb0c0b0-172e-4dc4-b182-2654b5785154",
+ "name": "feb0c0b0-172e-4dc4-b182-2654b5785154",
"status": "Succeeded",
- "startTime": "2022-05-23T15:32:25.7591336Z",
- "endTime": "2022-05-23T15:32:25.7903611Z",
+ "startTime": "2022-07-25T18:00:43.5710546Z",
+ "endTime": "2022-07-25T18:00:43.6336293Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a799a274-fd7b-4453-b4f7-91ab7282ab95?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/feb0c0b0-172e-4dc4-b182-2654b5785154?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2549,7 +3105,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:32:56 GMT",
+ "Date": "Mon, 25 Jul 2022 18:01:13 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2557,19 +3113,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2342a28a-6227-4869-8db9-b4df9d05ffc3",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153256Z:2342a28a-6227-4869-8db9-b4df9d05ffc3",
+ "x-ms-correlation-request-id": "63c7a407-1747-4194-87d4-a746cfdd8991",
+ "x-ms-ratelimit-remaining-subscription-reads": "11950",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180114Z:63c7a407-1747-4194-87d4-a746cfdd8991",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A32%3A25.7667634Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T18%3A00%3A43.5702406Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:17:19.8230075Z"
+ "CreatedOnDate": "2022-07-25T17:45:43.4464289Z"
},
"properties": {
"encryption": {
@@ -2580,41 +3136,41 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:17:23.9646404Z",
+ "createdAt": "2022-07-25T17:45:45.3575716Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:17:23.9646404Z"
+ "lastModifiedAt": "2022-07-25T17:45:45.3575716Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:32:58 GMT",
+ "Date": "Mon, 25 Jul 2022 18:01:13 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e653f2d3-671c-4695-9d27-c64a356a40aa",
+ "x-ms-correlation-request-id": "78f7e9b9-2127-4569-8e73-dd2733768b48",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T153258Z:e653f2d3-671c-4695-9d27-c64a356a40aa"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T180114Z:78f7e9b9-2127-4569-8e73-dd2733768b48"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
}
}
}
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 440111a2dfb3..18ddd16fa09f 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 23 May 2022 16:11:11 GMT",
+ "Date": "Mon, 25 Jul 2022 16:54: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.12794.4 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 23 May 2022 16:11:11 GMT",
+ "Date": "Mon, 25 Jul 2022 16:54: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.12794.4 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - WEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "91ef269d-261f-4983-9567-663dda452103",
+ "client-request-id": "7a4c8f49-d2dd-4947-ae35-b27029b978fc",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "91ef269d-261f-4983-9567-663dda452103",
+ "client-request-id": "7a4c8f49-d2dd-4947-ae35-b27029b978fc",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:11:11 GMT",
+ "Date": "Mon, 25 Jul 2022 16:54:42 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12794.4 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - NEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,45 +213,585 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "93",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2",
+ "properties": {
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ }
+ }
+ },
+ "StatusCode": 201,
+ "ResponseHeaders": {
+ "Azure-AsyncNotification": "Enabled",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/bfd66752-d5dc-4474-99e1-9efe64aebcd4?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "746",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 16:54:52 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Retry-After": "3",
+ "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": "0823966d-0e77-471f-8459-cfd0fd11199a",
+ "x-ms-correlation-request-id": "767522ba-1ab8-4ce2-b2d9-830049623981",
+ "x-ms-ratelimit-remaining-subscription-writes": "1199",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T165452Z:767522ba-1ab8-4ce2-b2d9-830049623981"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-8676340d",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d",
+ "etag": "W/\u0022836540f4-2736-4280-8bc4-98abcec88510\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-25T16:54:45.2600357Z"
+ },
+ "properties": {
+ "provisioningState": "Updating",
+ "resourceGuid": "19c270ae-ec91-433b-9662-389d7c2a05f7",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/bfd66752-d5dc-4474-99e1-9efe64aebcd4?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 16:54:55 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": "62e53609-de66-4400-a683-8a1457a1c580",
+ "x-ms-correlation-request-id": "231c5342-5321-47bc-924d-4bd0f0cadfd8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11999",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T165455Z:231c5342-5321-47bc-924d-4bd0f0cadfd8"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 16:54:55 GMT",
+ "ETag": "W/\u0022ae0c840f-6e89-41cf-9cbc-3941022e20b1\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": "5340e915-1cdf-4854-a6ef-7afb11aedc44",
+ "x-ms-correlation-request-id": "f51dcbbb-fec3-4a98-b235-f2e13c24a787",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T165456Z:f51dcbbb-fec3-4a98-b235-f2e13c24a787"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-8676340d",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d",
+ "etag": "W/\u0022ae0c840f-6e89-41cf-9cbc-3941022e20b1\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-25T16:54:45.2600357Z"
+ },
+ "properties": {
+ "provisioningState": "Succeeded",
+ "resourceGuid": "19c270ae-ec91-433b-9662-389d7c2a05f7",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "151",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "RequestBody": {
+ "properties": {
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "properties": {
+ "serviceName": "Microsoft.Netapp/volumes"
+ }
+ }
+ ]
+ }
+ },
+ "StatusCode": 201,
+ "ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/dad11d54-ca90-47fe-8cf2-a48df2bcc99c?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "1318",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 16:54:56 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Retry-After": "3",
+ "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": "b033202e-c231-46b0-9cc1-de738f6d9e6b",
+ "x-ms-correlation-request-id": "7de75dd3-1008-4cca-9e3d-133d9a001115",
+ "x-ms-ratelimit-remaining-subscription-writes": "1198",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T165456Z:7de75dd3-1008-4cca-9e3d-133d9a001115"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d/subnets/default",
+ "etag": "W/\u0022ac98fa6c-8551-4464-bfed-d341348ff3f1\u0022",
+ "properties": {
+ "provisioningState": "Updating",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u0022ac98fa6c-8551-4464-bfed-d341348ff3f1\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/dad11d54-ca90-47fe-8cf2-a48df2bcc99c?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 16:54:59 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": "4a0d2a7a-fefc-49c5-923b-7d9da9da8d3d",
+ "x-ms-correlation-request-id": "099a38a4-7845-44f1-a3d2-a7835742e39d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T165459Z:099a38a4-7845-44f1-a3d2-a7835742e39d"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 16:55:00 GMT",
+ "ETag": "W/\u00229aa491aa-a8e8-49a3-b4bf-f402c247bd79\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": "f669704b-953d-4c87-afd6-2bd1bbc6d6f6",
+ "x-ms-correlation-request-id": "ab1c2f79-5155-4272-9efd-7561dc6539af",
+ "x-ms-ratelimit-remaining-subscription-reads": "11996",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T165500Z:ab1c2f79-5155-4272-9efd-7561dc6539af"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d/subnets/default",
+ "etag": "W/\u00229aa491aa-a8e8-49a3-b4bf-f402c247bd79\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u00229aa491aa-a8e8-49a3-b4bf-f402c247bd79\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "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.11.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": "Mon, 25 Jul 2022 16:54: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.13315.8 - NEULR1 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.11.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": "Mon, 25 Jul 2022 16:55:00 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.13315.8 - WEULR2 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": "fa87e9c5-4fbf-485e-9528-07ff1458a03a",
+ "Connection": "keep-alive",
+ "Content-Length": "281",
+ "Content-Type": "application/x-www-form-urlencoded",
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.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.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
+ },
+ "RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "fa87e9c5-4fbf-485e-9528-07ff1458a03a",
+ "Content-Length": "114",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 16:55:00 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.13315.8 - NEULR2 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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d?api-version=2022-03-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "23",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/ee6089d6-d22e-472f-be16-64268d070249?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/772702a6-94f3-4cce-bd38-444d98017d25?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "699",
+ "Content-Length": "702",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:11:21 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T16%3A11%3A20.8051312Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 16:55:05 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T16%3A55%3A04.2367263Z\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": "4d591720-7da5-4e15-adac-f763efacb528",
- "x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161122Z:4d591720-7da5-4e15-adac-f763efacb528",
+ "x-ms-correlation-request-id": "57437309-1058-4f89-b284-546243b6a3fe",
+ "x-ms-ratelimit-remaining-subscription-writes": "1197",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T165505Z:57437309-1058-4f89-b284-546243b6a3fe",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T16%3A11%3A20.8051312Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A55%3A04.2367263Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T16:11:17.0361351Z"
+ "CreatedOnDate": "2022-07-25T16:55:02.0681604Z"
},
"properties": {
"provisioningState": "Creating"
@@ -258,21 +799,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T16:11:20.0578349Z",
+ "createdAt": "2022-07-25T16:55:03.1815937Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T16:11:20.0578349Z"
+ "lastModifiedAt": "2022-07-25T16:55:03.1815937Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ee6089d6-d22e-472f-be16-64268d070249?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/772702a6-94f3-4cce-bd38-444d98017d25?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +821,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:11:51 GMT",
+ "Date": "Mon, 25 Jul 2022 16:55:35 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +829,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e23f7592-f9cd-4cb0-8d54-b515a8b04c37",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161152Z:e23f7592-f9cd-4cb0-8d54-b515a8b04c37",
+ "x-ms-correlation-request-id": "b7ca1143-6310-45da-9782-3d59369456f7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T165535Z:b7ca1143-6310-45da-9782-3d59369456f7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ee6089d6-d22e-472f-be16-64268d070249",
- "name": "ee6089d6-d22e-472f-be16-64268d070249",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/772702a6-94f3-4cce-bd38-444d98017d25",
+ "name": "772702a6-94f3-4cce-bd38-444d98017d25",
"status": "Succeeded",
- "startTime": "2022-05-23T16:11:20.8689296Z",
- "endTime": "2022-05-23T16:11:20.9002115Z",
+ "startTime": "2022-07-25T16:55:04.2478018Z",
+ "endTime": "2022-07-25T16:55:04.3103084Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +861,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:11:52 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T16%3A11%3A20.9040917Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 16:55:35 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T16%3A55%3A04.3025043Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,35 +870,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6228e820-770c-4352-9ff3-f34dc032f4d6",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161152Z:6228e820-770c-4352-9ff3-f34dc032f4d6",
+ "x-ms-correlation-request-id": "30986591-1bf3-41b5-9a46-1a54a6c961de",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T165536Z:30986591-1bf3-41b5-9a46-1a54a6c961de",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T16%3A11%3A20.9040917Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A55%3A04.3025043Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T16:11:17.0361351Z"
+ "CreatedOnDate": "2022-07-25T16:55:02.0681604Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -370,26 +911,26 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T16:11:20.0578349Z",
+ "createdAt": "2022-07-25T16:55:03.1815937Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T16:11:20.0578349Z"
+ "lastModifiedAt": "2022-07-25T16:55:03.1815937Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "150",
+ "Content-Length": "138",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"size": 4398046511104,
"serviceLevel": "Premium",
@@ -399,30 +940,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/60768da9-f2ff-44d0-859a-5ee8dbd6779a?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bdb86555-dad2-42e7-a587-349d1c69398c?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "917",
+ "Content-Length": "918",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:11:55 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T16%3A11%3A54.5197169Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 16:55:39 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T16%3A55%3A38.9910262Z\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": "548e9eec-78c2-4aa8-8300-a9649b9c7d88",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161155Z:548e9eec-78c2-4aa8-8300-a9649b9c7d88",
+ "x-ms-correlation-request-id": "6e241296-9fd9-4f8a-b5cb-a285063b9332",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T165539Z:6e241296-9fd9-4f8a-b5cb-a285063b9332",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T16%3A11%3A54.5197169Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A55%3A38.9910262Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T16:11:52.9444105Z"
+ "CreatedOnDate": "2022-07-25T16:55:36.6298685Z"
},
"properties": {
"serviceLevel": "Premium",
@@ -436,21 +977,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T16:11:54.1206692Z",
+ "createdAt": "2022-07-25T16:55:38.7538505Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T16:11:54.1206692Z"
+ "lastModifiedAt": "2022-07-25T16:55:38.7538505Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/60768da9-f2ff-44d0-859a-5ee8dbd6779a?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bdb86555-dad2-42e7-a587-349d1c69398c?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -458,7 +999,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:12:25 GMT",
+ "Date": "Mon, 25 Jul 2022 16:56:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -466,31 +1007,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f36ee841-988c-4b74-ac1c-d31a5d1ae1d8",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161225Z:f36ee841-988c-4b74-ac1c-d31a5d1ae1d8",
+ "x-ms-correlation-request-id": "879a26f3-100a-4560-9b4c-894808d5512d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T165610Z:879a26f3-100a-4560-9b4c-894808d5512d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/60768da9-f2ff-44d0-859a-5ee8dbd6779a",
- "name": "60768da9-f2ff-44d0-859a-5ee8dbd6779a",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bdb86555-dad2-42e7-a587-349d1c69398c",
+ "name": "bdb86555-dad2-42e7-a587-349d1c69398c",
"status": "Succeeded",
- "startTime": "2022-05-23T16:11:54.5135226Z",
- "endTime": "2022-05-23T16:11:55.2010368Z",
+ "startTime": "2022-07-25T16:55:38.9887549Z",
+ "endTime": "2022-07-25T16:55:39.270079Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -498,8 +1039,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:12:25 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T16%3A11%3A55.1968564Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 16:56:10 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T16%3A55%3A39.2687541Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -507,22 +1048,22 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7d847454-e5ea-4a46-98a8-95bd7f44a003",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161226Z:7d847454-e5ea-4a46-98a8-95bd7f44a003",
+ "x-ms-correlation-request-id": "e6090af9-f663-4265-a19f-11da60964090",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T165610Z:e6090af9-f663-4265-a19f-11da60964090",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T16%3A11%3A55.1968564Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A55%3A39.2687541Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T16:11:52.9444105Z"
+ "CreatedOnDate": "2022-07-25T16:55:36.6298685Z"
},
"properties": {
- "poolId": "7edf144d-23a7-86fe-7609-446e05523d19",
+ "poolId": "e1bc4f96-b757-6887-8658-cba55f0d63d0",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
@@ -531,38 +1072,30 @@
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T16:11:54.1206692Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T16:11:54.1206692Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8676340d?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "800",
+ "Content-Length": "779",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-8676340d",
"serviceLevel": "Premium",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -576,45 +1109,44 @@
"avsDataStore": "Disabled",
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled"
+ "defaultGroupQuotaInKiBs": 0
}
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1c29c4b3-7859-49cb-916f-3464db337ee2?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4d7f5ee4-6c41-4f99-820f-ffe1bed5e406?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "1567",
+ "Content-Length": "1577",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:12:30 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T16%3A12%3A30.1422055Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 16:56:13 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T16%3A56%3A12.6449478Z\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": "bfbe813c-6bdf-4cbb-b059-6c4f8f9d8024",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161230Z:bfbe813c-6bdf-4cbb-b059-6c4f8f9d8024",
+ "x-ms-correlation-request-id": "6e1f83c7-5741-4631-bdf1-a117eb59e7ea",
+ "x-ms-ratelimit-remaining-subscription-writes": "1195",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T165613Z:6e1f83c7-5741-4631-bdf1-a117eb59e7ea",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T16%3A12%3A30.1422055Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A56%3A12.6449478Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T16:12:26.4380220Z"
+ "CreatedOnDate": "2022-07-25T16:56:10.9671731Z"
},
"properties": {
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-8676340d",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -629,28 +1161,27 @@
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
"provisioningState": "Creating"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T16:12:27.8085035Z",
+ "createdAt": "2022-07-25T16:56:12.1747123Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T16:12:27.8085035Z"
+ "lastModifiedAt": "2022-07-25T16:56:12.1747123Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1c29c4b3-7859-49cb-916f-3464db337ee2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4d7f5ee4-6c41-4f99-820f-ffe1bed5e406?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -658,7 +1189,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:13:00 GMT",
+ "Date": "Mon, 25 Jul 2022 16:56:43 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -666,31 +1197,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "105361d9-9b9c-4de9-9851-58a3573bb279",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161301Z:105361d9-9b9c-4de9-9851-58a3573bb279",
+ "x-ms-correlation-request-id": "026c259b-314b-436c-8f3c-dbf22b50f202",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T165643Z:026c259b-314b-436c-8f3c-dbf22b50f202",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1c29c4b3-7859-49cb-916f-3464db337ee2",
- "name": "1c29c4b3-7859-49cb-916f-3464db337ee2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4d7f5ee4-6c41-4f99-820f-ffe1bed5e406",
+ "name": "4d7f5ee4-6c41-4f99-820f-ffe1bed5e406",
"status": "Creating",
- "startTime": "2022-05-23T16:12:30.1426493Z",
+ "startTime": "2022-07-25T16:56:12.6586829Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/1c29c4b3-7859-49cb-916f-3464db337ee2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4d7f5ee4-6c41-4f99-820f-ffe1bed5e406?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -698,7 +1229,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:13:30 GMT",
+ "Date": "Mon, 25 Jul 2022 16:57:13 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -706,31 +1237,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2c158e03-23c5-443b-b11f-8783e20921ab",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161331Z:2c158e03-23c5-443b-b11f-8783e20921ab",
+ "x-ms-correlation-request-id": "488e94eb-7816-4957-a6ee-855d45976241",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T165714Z:488e94eb-7816-4957-a6ee-855d45976241",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1c29c4b3-7859-49cb-916f-3464db337ee2",
- "name": "1c29c4b3-7859-49cb-916f-3464db337ee2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4d7f5ee4-6c41-4f99-820f-ffe1bed5e406",
+ "name": "4d7f5ee4-6c41-4f99-820f-ffe1bed5e406",
"status": "Creating",
- "startTime": "2022-05-23T16:12:30.1426493Z",
+ "startTime": "2022-07-25T16:56:12.6586829Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/1c29c4b3-7859-49cb-916f-3464db337ee2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4d7f5ee4-6c41-4f99-820f-ffe1bed5e406?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -738,7 +1269,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:14:01 GMT",
+ "Date": "Mon, 25 Jul 2022 16:57:43 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -746,31 +1277,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "98790028-11e1-4f97-8047-205645b9ed1f",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161401Z:98790028-11e1-4f97-8047-205645b9ed1f",
+ "x-ms-correlation-request-id": "f9b4baee-851b-4274-99a4-1d16e23f1dcb",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T165744Z:f9b4baee-851b-4274-99a4-1d16e23f1dcb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1c29c4b3-7859-49cb-916f-3464db337ee2",
- "name": "1c29c4b3-7859-49cb-916f-3464db337ee2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4d7f5ee4-6c41-4f99-820f-ffe1bed5e406",
+ "name": "4d7f5ee4-6c41-4f99-820f-ffe1bed5e406",
"status": "Creating",
- "startTime": "2022-05-23T16:12:30.1426493Z",
+ "startTime": "2022-07-25T16:56:12.6586829Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/1c29c4b3-7859-49cb-916f-3464db337ee2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4d7f5ee4-6c41-4f99-820f-ffe1bed5e406?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -778,7 +1309,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:14:31 GMT",
+ "Date": "Mon, 25 Jul 2022 16:58:14 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -786,31 +1317,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d712a58b-bd63-4c2e-9e6d-f630dfccd8ef",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161431Z:d712a58b-bd63-4c2e-9e6d-f630dfccd8ef",
+ "x-ms-correlation-request-id": "38e8fe24-6381-4b48-8b1c-12da71863f30",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T165814Z:38e8fe24-6381-4b48-8b1c-12da71863f30",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1c29c4b3-7859-49cb-916f-3464db337ee2",
- "name": "1c29c4b3-7859-49cb-916f-3464db337ee2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4d7f5ee4-6c41-4f99-820f-ffe1bed5e406",
+ "name": "4d7f5ee4-6c41-4f99-820f-ffe1bed5e406",
"status": "Creating",
- "startTime": "2022-05-23T16:12:30.1426493Z",
+ "startTime": "2022-07-25T16:56:12.6586829Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/1c29c4b3-7859-49cb-916f-3464db337ee2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4d7f5ee4-6c41-4f99-820f-ffe1bed5e406?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -818,7 +1349,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:15:01 GMT",
+ "Date": "Mon, 25 Jul 2022 16:58:44 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -826,31 +1357,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8128a71a-138f-4b06-98b2-183b693fb81f",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161502Z:8128a71a-138f-4b06-98b2-183b693fb81f",
+ "x-ms-correlation-request-id": "e80e3790-acb1-4c20-a212-d7be93511ae2",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T165845Z:e80e3790-acb1-4c20-a212-d7be93511ae2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1c29c4b3-7859-49cb-916f-3464db337ee2",
- "name": "1c29c4b3-7859-49cb-916f-3464db337ee2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4d7f5ee4-6c41-4f99-820f-ffe1bed5e406",
+ "name": "4d7f5ee4-6c41-4f99-820f-ffe1bed5e406",
"status": "Creating",
- "startTime": "2022-05-23T16:12:30.1426493Z",
+ "startTime": "2022-07-25T16:56:12.6586829Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/1c29c4b3-7859-49cb-916f-3464db337ee2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4d7f5ee4-6c41-4f99-820f-ffe1bed5e406?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -858,7 +1389,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:15:31 GMT",
+ "Date": "Mon, 25 Jul 2022 16:59:14 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -866,31 +1397,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8a8bc7c2-448c-4882-924d-61b31281db14",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161532Z:8a8bc7c2-448c-4882-924d-61b31281db14",
+ "x-ms-correlation-request-id": "02d76a8e-4ce5-4d7e-9802-3e2b6b274005",
+ "x-ms-ratelimit-remaining-subscription-reads": "11986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T165915Z:02d76a8e-4ce5-4d7e-9802-3e2b6b274005",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1c29c4b3-7859-49cb-916f-3464db337ee2",
- "name": "1c29c4b3-7859-49cb-916f-3464db337ee2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4d7f5ee4-6c41-4f99-820f-ffe1bed5e406",
+ "name": "4d7f5ee4-6c41-4f99-820f-ffe1bed5e406",
"status": "Creating",
- "startTime": "2022-05-23T16:12:30.1426493Z",
+ "startTime": "2022-07-25T16:56:12.6586829Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/1c29c4b3-7859-49cb-916f-3464db337ee2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4d7f5ee4-6c41-4f99-820f-ffe1bed5e406?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -898,7 +1429,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:16:01 GMT",
+ "Date": "Mon, 25 Jul 2022 16:59:45 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -906,31 +1437,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d7dd8695-6f92-4837-a7fa-0421994d8c4b",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161602Z:d7dd8695-6f92-4837-a7fa-0421994d8c4b",
+ "x-ms-correlation-request-id": "3da3901b-57eb-40bf-93c1-ac3c9b5f5e83",
+ "x-ms-ratelimit-remaining-subscription-reads": "11985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T165945Z:3da3901b-57eb-40bf-93c1-ac3c9b5f5e83",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1c29c4b3-7859-49cb-916f-3464db337ee2",
- "name": "1c29c4b3-7859-49cb-916f-3464db337ee2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4d7f5ee4-6c41-4f99-820f-ffe1bed5e406",
+ "name": "4d7f5ee4-6c41-4f99-820f-ffe1bed5e406",
"status": "Creating",
- "startTime": "2022-05-23T16:12:30.1426493Z",
+ "startTime": "2022-07-25T16:56:12.6586829Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/1c29c4b3-7859-49cb-916f-3464db337ee2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4d7f5ee4-6c41-4f99-820f-ffe1bed5e406?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -938,7 +1469,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:16:32 GMT",
+ "Date": "Mon, 25 Jul 2022 17:00:15 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -946,31 +1477,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "73ba2663-6356-47c5-b1e8-3108aecb34b6",
- "x-ms-ratelimit-remaining-subscription-reads": "11988",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161632Z:73ba2663-6356-47c5-b1e8-3108aecb34b6",
+ "x-ms-correlation-request-id": "4ff58935-1eb0-4a21-9ba7-e45092fdf079",
+ "x-ms-ratelimit-remaining-subscription-reads": "11984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170016Z:4ff58935-1eb0-4a21-9ba7-e45092fdf079",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1c29c4b3-7859-49cb-916f-3464db337ee2",
- "name": "1c29c4b3-7859-49cb-916f-3464db337ee2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4d7f5ee4-6c41-4f99-820f-ffe1bed5e406",
+ "name": "4d7f5ee4-6c41-4f99-820f-ffe1bed5e406",
"status": "Creating",
- "startTime": "2022-05-23T16:12:30.1426493Z",
+ "startTime": "2022-07-25T16:56:12.6586829Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/1c29c4b3-7859-49cb-916f-3464db337ee2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4d7f5ee4-6c41-4f99-820f-ffe1bed5e406?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -978,7 +1509,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:17:02 GMT",
+ "Date": "Mon, 25 Jul 2022 17:00:45 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -986,31 +1517,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1ef9d4b7-27f1-4f0e-9b5e-0e5633ed7d2b",
- "x-ms-ratelimit-remaining-subscription-reads": "11987",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161702Z:1ef9d4b7-27f1-4f0e-9b5e-0e5633ed7d2b",
+ "x-ms-correlation-request-id": "557534d4-5cbc-4e42-a31e-21dae47d8b02",
+ "x-ms-ratelimit-remaining-subscription-reads": "11983",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170046Z:557534d4-5cbc-4e42-a31e-21dae47d8b02",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1c29c4b3-7859-49cb-916f-3464db337ee2",
- "name": "1c29c4b3-7859-49cb-916f-3464db337ee2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4d7f5ee4-6c41-4f99-820f-ffe1bed5e406",
+ "name": "4d7f5ee4-6c41-4f99-820f-ffe1bed5e406",
"status": "Succeeded",
- "startTime": "2022-05-23T16:12:30.1426493Z",
- "endTime": "2022-05-23T16:16:36.8245821Z",
+ "startTime": "2022-07-25T16:56:12.6586829Z",
+ "endTime": "2022-07-25T17:00:18.1285883Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8676340d?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1018,8 +1549,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:17:03 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T16%3A16%3A36.8155434Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 17:00:45 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T17%3A00%3A18.1204147Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1027,24 +1558,24 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d4cb8d05-1356-4a43-ae17-df8b510acf3d",
- "x-ms-ratelimit-remaining-subscription-reads": "11986",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161703Z:d4cb8d05-1356-4a43-ae17-df8b510acf3d",
+ "x-ms-correlation-request-id": "1694c938-c95f-4011-bc9f-3d3f50bddd98",
+ "x-ms-ratelimit-remaining-subscription-reads": "11982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170046Z:1694c938-c95f-4011-bc9f-3d3f50bddd98",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T16%3A16%3A36.8155434Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A00%3A18.1204147Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T16:12:26.4380220Z"
+ "CreatedOnDate": "2022-07-25T16:56:10.9671731Z"
},
"properties": {
- "fileSystemId": "f1f1e238-809b-27bf-f0a6-4e9865cd085d",
+ "fileSystemId": "8e92aa39-af7d-c8b4-4bb9-9decbb9bdd92",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-8676340d",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1070,10 +1601,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_0f068169",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_7f37f0f1",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1085,9 +1616,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "f1f1e238-809b-27bf-f0a6-4e9865cd085d",
- "fileSystemId": "f1f1e238-809b-27bf-f0a6-4e9865cd085d",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "8e92aa39-af7d-c8b4-4bb9-9decbb9bdd92",
+ "fileSystemId": "8e92aa39-af7d-c8b4-4bb9-9decbb9bdd92",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1099,41 +1630,32 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
- "encrypted": true,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T16:12:27.8085035Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T16:12:27.8085035Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "23",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2"
},
"StatusCode": 200,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3e3d600e-09cf-4d00-9670-cc564015566b?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7204eed9-aaae-41e0-afcb-ad7677567e6a?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:17:04 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T16%3A17%3A03.7705237Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 17:00:48 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T17%3A00%3A47.2191616Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1141,36 +1663,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c2096fa1-cb55-4352-96ec-d812cede806e",
- "x-ms-ratelimit-remaining-subscription-writes": "1196",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161705Z:c2096fa1-cb55-4352-96ec-d812cede806e",
+ "x-ms-correlation-request-id": "be74b360-2214-4b1c-9ac2-b3b22d0ac108",
+ "x-ms-ratelimit-remaining-subscription-writes": "1194",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170048Z:be74b360-2214-4b1c-9ac2-b3b22d0ac108",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T16%3A17%3A03.7705237Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A00%3A47.2191616Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T16:11:17.0361351Z"
+ "CreatedOnDate": "2022-07-25T16:55:02.0681604Z"
},
"properties": {
"provisioningState": "Updating",
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -1182,21 +1704,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T16:11:20.0578349Z",
+ "createdAt": "2022-07-25T16:55:03.1815937Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T16:11:20.0578349Z"
+ "lastModifiedAt": "2022-07-25T16:55:03.1815937Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3e3d600e-09cf-4d00-9670-cc564015566b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7204eed9-aaae-41e0-afcb-ad7677567e6a?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1204,7 +1726,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:17:34 GMT",
+ "Date": "Mon, 25 Jul 2022 17:01:19 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1212,31 +1734,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "15ae5eab-f4c0-4a77-9fd7-ac59fe4e8e00",
- "x-ms-ratelimit-remaining-subscription-reads": "11985",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161735Z:15ae5eab-f4c0-4a77-9fd7-ac59fe4e8e00",
+ "x-ms-correlation-request-id": "985a86e4-cd16-40ad-85a8-eaae4dc0223f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11981",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170119Z:985a86e4-cd16-40ad-85a8-eaae4dc0223f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3e3d600e-09cf-4d00-9670-cc564015566b",
- "name": "3e3d600e-09cf-4d00-9670-cc564015566b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7204eed9-aaae-41e0-afcb-ad7677567e6a",
+ "name": "7204eed9-aaae-41e0-afcb-ad7677567e6a",
"status": "Succeeded",
- "startTime": "2022-05-23T16:17:03.7645856Z",
- "endTime": "2022-05-23T16:17:08.2276777Z",
+ "startTime": "2022-07-25T17:00:47.2151344Z",
+ "endTime": "2022-07-25T17:00:47.6213937Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1244,8 +1766,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:17:35 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T16%3A17%3A08.2367637Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 17:01:20 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T17%3A00%3A47.6239218Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1253,36 +1775,36 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "14f696b1-2bb6-403a-b814-187d9ad52e49",
- "x-ms-ratelimit-remaining-subscription-reads": "11984",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161736Z:14f696b1-2bb6-403a-b814-187d9ad52e49",
+ "x-ms-correlation-request-id": "3226e898-8dc4-4514-9cb7-10c9ec5e7d34",
+ "x-ms-ratelimit-remaining-subscription-reads": "11980",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170120Z:3226e898-8dc4-4514-9cb7-10c9ec5e7d34",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T16%3A17%3A08.2367637Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A00%3A47.6239218Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T16:17:03.4641289Z"
+ "CreatedOnDate": "2022-07-25T17:00:46.9306221Z"
},
"properties": {
"provisioningState": "Succeeded",
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -1294,26 +1816,26 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T16:11:20.0578349Z",
+ "createdAt": "2022-07-25T16:55:03.1815937Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T16:17:03.6716213Z"
+ "lastModifiedAt": "2022-07-25T17:00:47.0923366Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "191",
+ "Content-Length": "179",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"hourlySchedule": {
"snapshotsToKeep": 1,
@@ -1327,30 +1849,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/40e44183-ea74-4dac-8b7a-b732c417dd55?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32ae1da1-c148-4df7-8891-4bfe77d7e6b3?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "922",
+ "Content-Length": "925",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:17:38 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T16%3A17%3A37.8713822Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 17:01:23 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T17%3A01%3A22.1966563Z\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": "377ffc84-f8e3-481c-a27c-9c221d1b858f",
- "x-ms-ratelimit-remaining-subscription-writes": "1195",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161738Z:377ffc84-f8e3-481c-a27c-9c221d1b858f",
+ "x-ms-correlation-request-id": "3326e708-60ad-4fb5-9b09-1c0f3ccafbbf",
+ "x-ms-ratelimit-remaining-subscription-writes": "1193",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170123Z:3326e708-60ad-4fb5-9b09-1c0f3ccafbbf",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-snapshot-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T16%3A17%3A37.8713822Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A01%3A22.1966563Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T16:17:36.5349830Z"
+ "CreatedOnDate": "2022-07-25T17:01:20.8779990Z"
},
"properties": {
"enabled": false,
@@ -1366,23 +1888,23 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T16:17:37.7031372Z",
+ "createdAt": "2022-07-25T17:01:21.9909036Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T16:17:37.7031372Z"
+ "lastModifiedAt": "2022-07-25T17:01:21.9909036Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8676340d?api-version=2022-03-01",
"RequestMethod": "PATCH",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "421",
+ "Content-Length": "428",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
"properties": {
@@ -1390,7 +1912,7 @@
"usageThreshold": 107374182400,
"dataProtection": {
"snapshot": {
- "snapshotPolicyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1"
+ "snapshotPolicyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/snapshotPolicies/sdk-py-tests-snapshot-policy-1"
}
},
"isDefaultQuotaEnabled": false,
@@ -1400,37 +1922,37 @@
},
"StatusCode": 202,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b213b796-66e4-498c-baeb-b8e08a4368cb?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8a424a88-dc47-4875-94c1-a213d6b3f77d?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "2386",
+ "Content-Length": "2131",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:17:38 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T16%3A17%3A39.1634887Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 17:01:23 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T17%3A01%3A23.8834011Z\u0027\u0022",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b213b796-66e4-498c-baeb-b8e08a4368cb?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8a424a88-dc47-4875-94c1-a213d6b3f77d?api-version=2022-03-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": "5aaf78e0-5925-44ca-86e6-f013b09062ae",
- "x-ms-ratelimit-remaining-subscription-writes": "1194",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161739Z:5aaf78e0-5925-44ca-86e6-f013b09062ae",
+ "x-ms-correlation-request-id": "9f74d4bb-8ec2-4794-a7ed-bdbed727b8d3",
+ "x-ms-ratelimit-remaining-subscription-writes": "1192",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170124Z:9f74d4bb-8ec2-4794-a7ed-bdbed727b8d3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T16%3A17%3A39.1634887Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A01%3A23.8834011Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T16:12:26.4380220Z"
+ "CreatedOnDate": "2022-07-25T16:56:10.9671731Z"
},
"properties": {
"provisioningState": "Patching",
- "fileSystemId": "f1f1e238-809b-27bf-f0a6-4e9865cd085d",
+ "fileSystemId": "8e92aa39-af7d-c8b4-4bb9-9decbb9bdd92",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-8676340d",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1456,10 +1978,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_0f068169",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_7f37f0f1",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1471,9 +1993,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "f1f1e238-809b-27bf-f0a6-4e9865cd085d",
- "fileSystemId": "f1f1e238-809b-27bf-f0a6-4e9865cd085d",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "8e92aa39-af7d-c8b4-4bb9-9decbb9bdd92",
+ "fileSystemId": "8e92aa39-af7d-c8b4-4bb9-9decbb9bdd92",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1484,67 +2006,18 @@
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T16:12:27.8085035Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T16:12:27.8085035Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b213b796-66e4-498c-baeb-b8e08a4368cb?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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, 23 May 2022 16:18: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": "f72e8d8a-729b-422f-8263-e9f28b6f0538",
- "x-ms-ratelimit-remaining-subscription-reads": "11983",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161809Z:f72e8d8a-729b-422f-8263-e9f28b6f0538",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b213b796-66e4-498c-baeb-b8e08a4368cb",
- "name": "b213b796-66e4-498c-baeb-b8e08a4368cb",
- "status": "Patching",
- "startTime": "2022-05-23T16:17:39.1583403Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "maximumNumberOfFiles": 100000000
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b213b796-66e4-498c-baeb-b8e08a4368cb?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8a424a88-dc47-4875-94c1-a213d6b3f77d?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1552,7 +2025,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:18:38 GMT",
+ "Date": "Mon, 25 Jul 2022 17:01:53 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1560,31 +2033,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0566b1ed-7b8b-420a-b1f7-5d50227da554",
- "x-ms-ratelimit-remaining-subscription-reads": "11982",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161839Z:0566b1ed-7b8b-420a-b1f7-5d50227da554",
+ "x-ms-correlation-request-id": "f394f97b-049d-4bfb-843d-18e45af2d9eb",
+ "x-ms-ratelimit-remaining-subscription-reads": "11979",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170154Z:f394f97b-049d-4bfb-843d-18e45af2d9eb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b213b796-66e4-498c-baeb-b8e08a4368cb",
- "name": "b213b796-66e4-498c-baeb-b8e08a4368cb",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8a424a88-dc47-4875-94c1-a213d6b3f77d",
+ "name": "8a424a88-dc47-4875-94c1-a213d6b3f77d",
"status": "Succeeded",
- "startTime": "2022-05-23T16:17:39.1583403Z",
- "endTime": "2022-05-23T16:18:16.4340896Z",
+ "startTime": "2022-07-25T17:01:23.8840995Z",
+ "endTime": "2022-07-25T17:01:26.8376258Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/b213b796-66e4-498c-baeb-b8e08a4368cb?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8a424a88-dc47-4875-94c1-a213d6b3f77d?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1592,7 +2065,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:18:39 GMT",
+ "Date": "Mon, 25 Jul 2022 17:01:53 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1600,30 +2073,30 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ebdc8cfa-94ed-470f-a675-cefc05cc13b1",
- "x-ms-ratelimit-remaining-subscription-reads": "11981",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161839Z:ebdc8cfa-94ed-470f-a675-cefc05cc13b1",
+ "x-ms-correlation-request-id": "091824f9-2607-400b-b7fd-a32f884b1f2d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11978",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170154Z:091824f9-2607-400b-b7fd-a32f884b1f2d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T16%3A18%3A16.4385315Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A01%3A26.8326515Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T16:17:38.8975241Z"
+ "CreatedOnDate": "2022-07-25T17:01:23.5591055Z"
},
"properties": {
"dataProtection": {
"snapshot": {
- "snapshotPolicyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1"
+ "snapshotPolicyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/snapshotPolicies/sdk-py-tests-snapshot-policy-1"
}
},
- "fileSystemId": "f1f1e238-809b-27bf-f0a6-4e9865cd085d",
+ "fileSystemId": "8e92aa39-af7d-c8b4-4bb9-9decbb9bdd92",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
+ "creationToken": "sdk-py-tests-vol-3-8676340d",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -1651,25 +2124,25 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_0f068169",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_7f37f0f1",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "7edf144d-23a7-86fe-7609-446e05523d19",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8676340d",
+ "poolId": "e1bc4f96-b757-6887-8658-cba55f0d63d0",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "f1f1e238-809b-27bf-f0a6-4e9865cd085d",
- "fileSystemId": "f1f1e238-809b-27bf-f0a6-4e9865cd085d",
+ "mountTargetId": "8e92aa39-af7d-c8b4-4bb9-9decbb9bdd92",
+ "fileSystemId": "8e92aa39-af7d-c8b4-4bb9-9decbb9bdd92",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1688,58 +2161,53 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"encrypted": true,
- "smbAccessBasedEnumeration": "Disabled",
- "smbNonBrowsable": "Disabled",
"provisioningState": "Succeeded"
},
"systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T16:12:27.8085035Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T16:17:39.0625262Z"
+ "lastModifiedAt": "2022-07-25T17:01:23.7442235Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8676340d?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/72ce52bc-a353-4e0e-97fe-b08b4a2ec350?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bf6f2071-f4bf-46f8-bd0d-919d5bb45d5d?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 16:18:39 GMT",
+ "Date": "Mon, 25 Jul 2022 17:01:54 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/72ce52bc-a353-4e0e-97fe-b08b4a2ec350?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bf6f2071-f4bf-46f8-bd0d-919d5bb45d5d?api-version=2022-03-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": "836bddb6-104c-4635-aa11-1c8037a27d31",
+ "x-ms-correlation-request-id": "7587524c-0a23-490d-bddd-ba2006ec7402",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161840Z:836bddb6-104c-4635-aa11-1c8037a27d31",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170155Z:7587524c-0a23-490d-bddd-ba2006ec7402",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/72ce52bc-a353-4e0e-97fe-b08b4a2ec350?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bf6f2071-f4bf-46f8-bd0d-919d5bb45d5d?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1747,7 +2215,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:19:10 GMT",
+ "Date": "Mon, 25 Jul 2022 17:02:25 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1755,31 +2223,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d323c942-9459-4767-91a2-d0c1658f7c00",
- "x-ms-ratelimit-remaining-subscription-reads": "11980",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161910Z:d323c942-9459-4767-91a2-d0c1658f7c00",
+ "x-ms-correlation-request-id": "596ef90a-c114-48ed-b7e1-d0d7807efacb",
+ "x-ms-ratelimit-remaining-subscription-reads": "11977",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170225Z:596ef90a-c114-48ed-b7e1-d0d7807efacb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/72ce52bc-a353-4e0e-97fe-b08b4a2ec350",
- "name": "72ce52bc-a353-4e0e-97fe-b08b4a2ec350",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bf6f2071-f4bf-46f8-bd0d-919d5bb45d5d",
+ "name": "bf6f2071-f4bf-46f8-bd0d-919d5bb45d5d",
"status": "Deleting",
- "startTime": "2022-05-23T16:18:40.3755391Z",
+ "startTime": "2022-07-25T17:01:55.1930733Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/72ce52bc-a353-4e0e-97fe-b08b4a2ec350?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bf6f2071-f4bf-46f8-bd0d-919d5bb45d5d?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1787,7 +2255,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:19:40 GMT",
+ "Date": "Mon, 25 Jul 2022 17:02:55 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1795,31 +2263,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "55894e15-780f-4aa4-989e-b117369d9704",
- "x-ms-ratelimit-remaining-subscription-reads": "11979",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T161940Z:55894e15-780f-4aa4-989e-b117369d9704",
+ "x-ms-correlation-request-id": "2609b263-3073-4f77-8d55-b8bd3860039d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11976",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170255Z:2609b263-3073-4f77-8d55-b8bd3860039d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/72ce52bc-a353-4e0e-97fe-b08b4a2ec350",
- "name": "72ce52bc-a353-4e0e-97fe-b08b4a2ec350",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bf6f2071-f4bf-46f8-bd0d-919d5bb45d5d",
+ "name": "bf6f2071-f4bf-46f8-bd0d-919d5bb45d5d",
"status": "Deleting",
- "startTime": "2022-05-23T16:18:40.3755391Z",
+ "startTime": "2022-07-25T17:01:55.1930733Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/72ce52bc-a353-4e0e-97fe-b08b4a2ec350?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bf6f2071-f4bf-46f8-bd0d-919d5bb45d5d?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1827,7 +2295,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:20:10 GMT",
+ "Date": "Mon, 25 Jul 2022 17:03:25 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1835,31 +2303,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d07a7b2b-d799-4ba2-ba5c-af7b2d166bb1",
- "x-ms-ratelimit-remaining-subscription-reads": "11978",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T162011Z:d07a7b2b-d799-4ba2-ba5c-af7b2d166bb1",
+ "x-ms-correlation-request-id": "6f62d71f-c0c4-432f-8d76-8bb8cbe230b7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11975",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170326Z:6f62d71f-c0c4-432f-8d76-8bb8cbe230b7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/72ce52bc-a353-4e0e-97fe-b08b4a2ec350",
- "name": "72ce52bc-a353-4e0e-97fe-b08b4a2ec350",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bf6f2071-f4bf-46f8-bd0d-919d5bb45d5d",
+ "name": "bf6f2071-f4bf-46f8-bd0d-919d5bb45d5d",
"status": "Succeeded",
- "startTime": "2022-05-23T16:18:40.3755391Z",
- "endTime": "2022-05-23T16:19:52.2877444Z",
+ "startTime": "2022-07-25T17:01:55.1930733Z",
+ "endTime": "2022-07-25T17:02:55.9848503Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/72ce52bc-a353-4e0e-97fe-b08b4a2ec350?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bf6f2071-f4bf-46f8-bd0d-919d5bb45d5d?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1867,7 +2335,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:20:10 GMT",
+ "Date": "Mon, 25 Jul 2022 17:03:25 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1875,30 +2343,30 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "34f35fff-1426-46d9-8d94-d26f794e8218",
- "x-ms-ratelimit-remaining-subscription-reads": "11977",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T162011Z:34f35fff-1426-46d9-8d94-d26f794e8218",
+ "x-ms-correlation-request-id": "fb75b91a-f151-4d3f-8185-2e44679ca4ea",
+ "x-ms-ratelimit-remaining-subscription-reads": "11974",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170326Z:fb75b91a-f151-4d3f-8185-2e44679ca4ea",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T16%3A19%3A43.1257922Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A01%3A55.1738346Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T16:17:38.8975241Z"
+ "CreatedOnDate": "2022-07-25T17:01:23.5591055Z"
},
"properties": {
"dataProtection": {
"snapshot": {
- "snapshotPolicyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1"
+ "snapshotPolicyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/snapshotPolicies/sdk-py-tests-snapshot-policy-1"
}
},
- "fileSystemId": "f1f1e238-809b-27bf-f0a6-4e9865cd085d",
+ "fileSystemId": "8e92aa39-af7d-c8b4-4bb9-9decbb9bdd92",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
+ "creationToken": "sdk-py-tests-vol-3-8676340d",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -1926,25 +2394,25 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "DELETED_baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_0f068169",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_7f37f0f1",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "7edf144d-23a7-86fe-7609-446e05523d19",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8676340d",
+ "poolId": "e1bc4f96-b757-6887-8658-cba55f0d63d0",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "f1f1e238-809b-27bf-f0a6-4e9865cd085d",
- "fileSystemId": "f1f1e238-809b-27bf-f0a6-4e9865cd085d",
+ "mountTargetId": "8e92aa39-af7d-c8b4-4bb9-9decbb9bdd92",
+ "fileSystemId": "8e92aa39-af7d-c8b4-4bb9-9decbb9bdd92",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1963,89 +2431,84 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"encrypted": true,
- "smbAccessBasedEnumeration": "Disabled",
- "smbNonBrowsable": "Disabled",
"provisioningState": "Deleting"
},
"systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T16:12:27.8085035Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T16:17:39.0625262Z"
+ "lastModifiedAt": "2022-07-25T17:01:23.7442235Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8676340d?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "306",
+ "Content-Length": "320",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:23:32 GMT",
+ "Date": "Mon, 25 Jul 2022 17: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": "10db6857-8175-4646-b494-cf73ded552eb",
+ "x-ms-correlation-request-id": "c3beaff4-5e72-43a8-ad7f-1b50f36ab605",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T162332Z:10db6857-8175-4646-b494-cf73ded552eb"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170650Z:c3beaff4-5e72-43a8-ad7f-1b50f36ab605"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8676340d\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/1c054f18-1603-4cc5-b15c-d917668902be?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3fd57e82-c691-42a9-af9c-9906996b2c12?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 16:23:34 GMT",
+ "Date": "Mon, 25 Jul 2022 17:06:52 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1c054f18-1603-4cc5-b15c-d917668902be?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3fd57e82-c691-42a9-af9c-9906996b2c12?api-version=2022-03-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": "6c3ee518-9327-4991-89c5-a2814ffccd00",
+ "x-ms-correlation-request-id": "bf1c58c0-542a-4901-b04e-a571140043cd",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T162334Z:6c3ee518-9327-4991-89c5-a2814ffccd00",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170653Z:bf1c58c0-542a-4901-b04e-a571140043cd",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1c054f18-1603-4cc5-b15c-d917668902be?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3fd57e82-c691-42a9-af9c-9906996b2c12?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2053,7 +2516,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:24:04 GMT",
+ "Date": "Mon, 25 Jul 2022 17:07:22 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2061,31 +2524,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a33481c0-9db4-4bf5-a648-29ba1ee5d2c5",
+ "x-ms-correlation-request-id": "66c612cc-db5c-4809-8230-6034e1df8be5",
"x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T162405Z:a33481c0-9db4-4bf5-a648-29ba1ee5d2c5",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170723Z:66c612cc-db5c-4809-8230-6034e1df8be5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1c054f18-1603-4cc5-b15c-d917668902be",
- "name": "1c054f18-1603-4cc5-b15c-d917668902be",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3fd57e82-c691-42a9-af9c-9906996b2c12",
+ "name": "3fd57e82-c691-42a9-af9c-9906996b2c12",
"status": "Succeeded",
- "startTime": "2022-05-23T16:23:34.7293089Z",
- "endTime": "2022-05-23T16:23:34.7448838Z",
+ "startTime": "2022-07-25T17:06:53.176791Z",
+ "endTime": "2022-07-25T17:06:53.2080158Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/snapshotPolicies/sdk-py-tests-snapshot-policy-1"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1c054f18-1603-4cc5-b15c-d917668902be?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3fd57e82-c691-42a9-af9c-9906996b2c12?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2093,7 +2556,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:24:04 GMT",
+ "Date": "Mon, 25 Jul 2022 17:07:23 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2101,19 +2564,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "72c7f588-0ee4-4908-98c3-f45f66366923",
+ "x-ms-correlation-request-id": "3361f896-d1eb-47c1-9a11-368a22f6d0f3",
"x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T162405Z:72c7f588-0ee4-4908-98c3-f45f66366923",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170723Z:3361f896-d1eb-47c1-9a11-368a22f6d0f3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-snapshot-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T16%3A23%3A34.7106601Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A06%3A53.1531751Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T16:17:36.5349830Z"
+ "CreatedOnDate": "2022-07-25T17:01:20.8779990Z"
},
"properties": {
"enabled": false,
@@ -2129,82 +2592,82 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T16:17:37.7031372Z",
+ "createdAt": "2022-07-25T17:01:21.9909036Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T16:17:37.7031372Z"
+ "lastModifiedAt": "2022-07-25T17:01:21.9909036Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "291",
+ "Content-Length": "298",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:24:09 GMT",
+ "Date": "Mon, 25 Jul 2022 17:07:28 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "beeb47c8-2912-4cd1-9c79-4e27558a1449",
+ "x-ms-correlation-request-id": "a41e0e02-587d-4083-b0d0-accf333f1186",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T162410Z:beeb47c8-2912-4cd1-9c79-4e27558a1449"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170729Z:a41e0e02-587d-4083-b0d0-accf333f1186"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "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\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/13969ab5-c297-4b8d-b8d8-799e983fbdb6?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e6c5f0e-f8b0-4b77-bab4-47a18e6daad4?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 16:24:20 GMT",
+ "Date": "Mon, 25 Jul 2022 17:07:39 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/13969ab5-c297-4b8d-b8d8-799e983fbdb6?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e6c5f0e-f8b0-4b77-bab4-47a18e6daad4?api-version=2022-03-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": "1d6c9b14-d4ae-4c1b-85b8-7c8a2571b42a",
+ "x-ms-correlation-request-id": "bd73d7eb-0880-46ea-af4b-46b4abb1d7df",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T162421Z:1d6c9b14-d4ae-4c1b-85b8-7c8a2571b42a",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170739Z:bd73d7eb-0880-46ea-af4b-46b4abb1d7df",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/13969ab5-c297-4b8d-b8d8-799e983fbdb6?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e6c5f0e-f8b0-4b77-bab4-47a18e6daad4?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2212,7 +2675,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:24:51 GMT",
+ "Date": "Mon, 25 Jul 2022 17:08:09 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2220,31 +2683,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a1d5b170-a652-4217-baea-ec20e2b65135",
+ "x-ms-correlation-request-id": "8032a668-e5b9-4ce8-9fea-51ac358459ae",
"x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T162452Z:a1d5b170-a652-4217-baea-ec20e2b65135",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170810Z:8032a668-e5b9-4ce8-9fea-51ac358459ae",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/13969ab5-c297-4b8d-b8d8-799e983fbdb6",
- "name": "13969ab5-c297-4b8d-b8d8-799e983fbdb6",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e6c5f0e-f8b0-4b77-bab4-47a18e6daad4",
+ "name": "1e6c5f0e-f8b0-4b77-bab4-47a18e6daad4",
"status": "Succeeded",
- "startTime": "2022-05-23T16:24:21.7044677Z",
- "endTime": "2022-05-23T16:24:25.1664083Z",
+ "startTime": "2022-07-25T17:07:39.7105161Z",
+ "endTime": "2022-07-25T17:07:40.0385465Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/13969ab5-c297-4b8d-b8d8-799e983fbdb6?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e6c5f0e-f8b0-4b77-bab4-47a18e6daad4?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2252,7 +2715,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:24:52 GMT",
+ "Date": "Mon, 25 Jul 2022 17:08:09 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2260,211 +2723,203 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a2f56af9-a1ac-4046-bc6e-cb276fa1eed3",
+ "x-ms-correlation-request-id": "783afca0-a8ab-48b1-a9fa-98fa92dfb449",
"x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T162452Z:a2f56af9-a1ac-4046-bc6e-cb276fa1eed3",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170810Z:783afca0-a8ab-48b1-a9fa-98fa92dfb449",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T16%3A24%3A21.7042546Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A07%3A39.7025317Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T16:11:52.9444105Z"
+ "CreatedOnDate": "2022-07-25T16:55:36.6298685Z"
},
"properties": {
- "poolId": "7edf144d-23a7-86fe-7609-446e05523d19",
+ "poolId": "e1bc4f96-b757-6887-8658-cba55f0d63d0",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1",
"qosType": "Auto",
"totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-23T16:11:54.1206692Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T16:11:54.1206692Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 16:25:02 GMT",
+ "Date": "Mon, 25 Jul 2022 17:08:19 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "210f89a2-40f6-4731-80d4-86bcf65892bc",
+ "x-ms-correlation-request-id": "8c28a69a-d727-451f-afff-c63d3f1f2cad",
"x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T162502Z:210f89a2-40f6-4731-80d4-86bcf65892bc"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170820Z:8c28a69a-d727-451f-afff-c63d3f1f2cad"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 16:25:12 GMT",
+ "Date": "Mon, 25 Jul 2022 17:08:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3fef1c48-1379-4d43-81b9-08e1e2b29126",
+ "x-ms-correlation-request-id": "74677da5-23d4-4132-9ff7-ebb54cbf7961",
"x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T162512Z:3fef1c48-1379-4d43-81b9-08e1e2b29126"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170831Z:74677da5-23d4-4132-9ff7-ebb54cbf7961"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 16:25:22 GMT",
+ "Date": "Mon, 25 Jul 2022 17:08:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b413dc11-75d7-4575-a3c6-3f6448fcecb0",
+ "x-ms-correlation-request-id": "d9a6c919-b9ea-419e-bbe0-1bd133fe85de",
"x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T162523Z:b413dc11-75d7-4575-a3c6-3f6448fcecb0"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170841Z:d9a6c919-b9ea-419e-bbe0-1bd133fe85de"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 23 May 2022 16:25:32 GMT",
+ "Date": "Mon, 25 Jul 2022 17:08:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1124624b-7eb3-40ac-a282-a2d6d6e22fe3",
+ "x-ms-correlation-request-id": "630543d3-45c3-4efb-bfef-19b0556db2f3",
"x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T162533Z:1124624b-7eb3-40ac-a282-a2d6d6e22fe3"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170851Z:630543d3-45c3-4efb-bfef-19b0556db2f3"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:25:43 GMT",
+ "Date": "Mon, 25 Jul 2022 17:09:01 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8469d464-027c-4ca7-9f57-8ae3664607dc",
+ "x-ms-correlation-request-id": "8c82fbdb-29ff-4671-82c2-0da1162b6909",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T162543Z:8469d464-027c-4ca7-9f57-8ae3664607dc"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170902Z:8c82fbdb-29ff-4671-82c2-0da1162b6909"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/b70ad21b-84e3-4bf2-94a1-594baaa5d964?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/496c8336-1e8f-4926-ac31-f5212360d35b?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 16:25:44 GMT",
+ "Date": "Mon, 25 Jul 2022 17:09:02 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b70ad21b-84e3-4bf2-94a1-594baaa5d964?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/496c8336-1e8f-4926-ac31-f5212360d35b?api-version=2022-03-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": "3d3faad6-88a5-49bb-819f-d2f09568833d",
+ "x-ms-correlation-request-id": "1d3502d4-33b1-4022-94f4-94c2ee4953fb",
"x-ms-ratelimit-remaining-subscription-deletes": "14993",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T162545Z:3d3faad6-88a5-49bb-819f-d2f09568833d",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170903Z:1d3502d4-33b1-4022-94f4-94c2ee4953fb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b70ad21b-84e3-4bf2-94a1-594baaa5d964?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/496c8336-1e8f-4926-ac31-f5212360d35b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2472,7 +2927,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:26:14 GMT",
+ "Date": "Mon, 25 Jul 2022 17:09:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2480,31 +2935,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8479401e-f1f8-4c3d-9d78-9260e19aba20",
+ "x-ms-correlation-request-id": "5ed2e60e-f529-42d5-94bf-396505424e2a",
"x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T162615Z:8479401e-f1f8-4c3d-9d78-9260e19aba20",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170933Z:5ed2e60e-f529-42d5-94bf-396505424e2a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b70ad21b-84e3-4bf2-94a1-594baaa5d964",
- "name": "b70ad21b-84e3-4bf2-94a1-594baaa5d964",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/496c8336-1e8f-4926-ac31-f5212360d35b",
+ "name": "496c8336-1e8f-4926-ac31-f5212360d35b",
"status": "Succeeded",
- "startTime": "2022-05-23T16:25:44.9301437Z",
- "endTime": "2022-05-23T16:25:44.9614175Z",
+ "startTime": "2022-07-25T17:09:03.3965536Z",
+ "endTime": "2022-07-25T17:09:03.4746334Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b70ad21b-84e3-4bf2-94a1-594baaa5d964?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/496c8336-1e8f-4926-ac31-f5212360d35b?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2512,7 +2967,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:26:14 GMT",
+ "Date": "Mon, 25 Jul 2022 17:09:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2520,19 +2975,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8337be40-3f77-4904-b006-364fedf5df1a",
+ "x-ms-correlation-request-id": "c3376862-3cb3-4171-8133-64d95a6eef6e",
"x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T162615Z:8337be40-3f77-4904-b006-364fedf5df1a",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170934Z:c3376862-3cb3-4171-8133-64d95a6eef6e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T16%3A25%3A44.9298205Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T17%3A09%3A03.3788178Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T16:17:03.4641289Z"
+ "CreatedOnDate": "2022-07-25T17:00:46.9306221Z"
},
"properties": {
"encryption": {
@@ -2544,43 +2999,78 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T16:11:20.0578349Z",
+ "createdAt": "2022-07-25T16:55:03.1815937Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T16:17:03.6716213Z"
+ "lastModifiedAt": "2022-07-25T17:00:47.0923366Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:26:16 GMT",
+ "Date": "Mon, 25 Jul 2022 17:09:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ad96259c-2ed0-4c57-a663-719e25bea41f",
+ "x-ms-correlation-request-id": "606a1c23-e952-4c3d-ad31-cd51798bc614",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T162617Z:ad96259c-2ed0-4c57-a663-719e25bea41f"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170934Z:606a1c23-e952-4c3d-ad31-cd51798bc614"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d?api-version=2021-08-01",
+ "RequestMethod": "DELETE",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "0",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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/ce1bb4fc-cb46-451e-aa42-7c6b461ecdee?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "0",
+ "Date": "Mon, 25 Jul 2022 17:09:35 GMT",
+ "Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/ce1bb4fc-cb46-451e-aa42-7c6b461ecdee?api-version=2021-08-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": "25f9ad53-1a7e-4c3f-89e6-86c442016155",
+ "x-ms-correlation-request-id": "d222bf51-3c5b-4abc-b107-3ffcd5f6f09e",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T170936Z:d222bf51-3c5b-4abc-b107-3ffcd5f6f09e"
+ },
+ "ResponseBody": null
}
],
"Variables": {}
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 e9a000811314..2756e5303f79 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 23 May 2022 15:49:04 GMT",
+ "Date": "Mon, 25 Jul 2022 16:18:09 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.12794.4 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 23 May 2022 15:49:04 GMT",
+ "Date": "Mon, 25 Jul 2022 16:18:09 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.12744.11 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13201.7 - WEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "1dc239ac-a6dd-48d4-917d-9ecd8811431d",
+ "client-request-id": "55c18335-4520-4041-ae41-1f3ec0d59a3b",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "1dc239ac-a6dd-48d4-917d-9ecd8811431d",
+ "client-request-id": "55c18335-4520-4041-ae41-1f3ec0d59a3b",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:49:04 GMT",
+ "Date": "Mon, 25 Jul 2022 16:18:10 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12794.4 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - NEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,45 +213,45 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2f73295?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "23",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2"
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/13dca28d-6560-473d-a008-6cf792faea8d?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aca7a567-bcb0-45d8-8a75-74680dfb06f8?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "699",
+ "Content-Length": "702",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:49:15 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A49%3A14.5332048Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 16:18:20 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T16%3A18%3A19.3427172Z\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": "8302fb21-40e4-471f-bf2d-7fd8e5127be3",
+ "x-ms-correlation-request-id": "9920f1bb-206c-4e50-be95-96b391ee113f",
"x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154915Z:8302fb21-40e4-471f-bf2d-7fd8e5127be3",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T161820Z:9920f1bb-206c-4e50-be95-96b391ee113f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A49%3A14.5332048Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A18%3A19.3427172Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:49:10.1616927Z"
+ "CreatedOnDate": "2022-07-25T16:18:14.7258359Z"
},
"properties": {
"provisioningState": "Creating"
@@ -258,21 +259,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:49:13.7418337Z",
+ "createdAt": "2022-07-25T16:18:18.3705395Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:49:13.7418337Z"
+ "lastModifiedAt": "2022-07-25T16:18:18.3705395Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/13dca28d-6560-473d-a008-6cf792faea8d?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aca7a567-bcb0-45d8-8a75-74680dfb06f8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +281,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:49:45 GMT",
+ "Date": "Mon, 25 Jul 2022 16:18:50 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +289,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "74561b16-8b4f-42bd-a964-5e9ee4cb3dc8",
+ "x-ms-correlation-request-id": "ce83a8a7-5ff4-4d94-9a29-be16c52ec5b9",
"x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154946Z:74561b16-8b4f-42bd-a964-5e9ee4cb3dc8",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T161850Z:ce83a8a7-5ff4-4d94-9a29-be16c52ec5b9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/13dca28d-6560-473d-a008-6cf792faea8d",
- "name": "13dca28d-6560-473d-a008-6cf792faea8d",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aca7a567-bcb0-45d8-8a75-74680dfb06f8",
+ "name": "aca7a567-bcb0-45d8-8a75-74680dfb06f8",
"status": "Succeeded",
- "startTime": "2022-05-23T15:49:14.5248993Z",
- "endTime": "2022-05-23T15:49:14.5717382Z",
+ "startTime": "2022-07-25T16:18:19.3473994Z",
+ "endTime": "2022-07-25T16:18:19.3942808Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2f73295"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2f73295?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +321,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:49:45 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A49%3A14.5723809Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 16:18:51 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T16%3A18%3A19.4001571Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,35 +330,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "eab41860-ead4-46f1-a889-3905d8e07267",
+ "x-ms-correlation-request-id": "803d4098-01db-4619-aec7-171a7e34432c",
"x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154946Z:eab41860-ead4-46f1-a889-3905d8e07267",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T161851Z:803d4098-01db-4619-aec7-171a7e34432c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A49%3A14.5723809Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A18%3A19.4001571Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:49:10.1616927Z"
+ "CreatedOnDate": "2022-07-25T16:18:14.7258359Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -370,26 +371,26 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:49:13.7418337Z",
+ "createdAt": "2022-07-25T16:18:18.3705395Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:49:13.7418337Z"
+ "lastModifiedAt": "2022-07-25T16:18:18.3705395Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2f73295/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "191",
+ "Content-Length": "179",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"hourlySchedule": {
"snapshotsToKeep": 1,
@@ -403,30 +404,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/253dda46-689b-4b72-891f-a9ab43437794?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/49eb7d91-9b0a-48ae-a529-da2d25e34a84?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "922",
+ "Content-Length": "925",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:49:48 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A49%3A47.9510155Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 16:18:55 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T16%3A18%3A53.9745745Z\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": "8633f46c-20c4-4be3-9ff9-47bb76c8724d",
+ "x-ms-correlation-request-id": "f5004abb-ad37-408f-afb1-74c459ee32e0",
"x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154949Z:8633f46c-20c4-4be3-9ff9-47bb76c8724d",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T161855Z:f5004abb-ad37-408f-afb1-74c459ee32e0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-snapshot-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A49%3A47.9510155Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A18%3A53.9745745Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:49:46.7004502Z"
+ "CreatedOnDate": "2022-07-25T16:18:51.7780189Z"
},
"properties": {
"enabled": false,
@@ -442,21 +443,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:49:47.7795613Z",
+ "createdAt": "2022-07-25T16:18:53.7704767Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:49:47.7795613Z"
+ "lastModifiedAt": "2022-07-25T16:18:53.7704767Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2f73295/snapshotPolicies?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -464,7 +465,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:49:48 GMT",
+ "Date": "Mon, 25 Jul 2022 16:18:55 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -472,21 +473,21 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d5706e8b-c719-46db-83fa-e96162267643",
+ "x-ms-correlation-request-id": "132c4f80-e37b-472d-9efe-1f5326f90034",
"x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154949Z:d5706e8b-c719-46db-83fa-e96162267643",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T161855Z:132c4f80-e37b-472d-9efe-1f5326f90034",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-snapshot-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A49%3A47.9919754Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A18%3A54.0270446Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:49:46.7004502Z"
+ "CreatedOnDate": "2022-07-25T16:18:51.7780189Z"
},
"properties": {
"enabled": false,
@@ -502,53 +503,53 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:49:47.7795613Z",
+ "createdAt": "2022-07-25T16:18:53.7704767Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:49:47.7795613Z"
+ "lastModifiedAt": "2022-07-25T16:18:53.7704767Z"
}
}
]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2f73295/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/1252dd02-b08d-4071-9191-980e2ee7b169?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c2ffb3f-2d8c-475e-ab59-c77fd0b56b00?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 15:49:49 GMT",
+ "Date": "Mon, 25 Jul 2022 16:18:56 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1252dd02-b08d-4071-9191-980e2ee7b169?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c2ffb3f-2d8c-475e-ab59-c77fd0b56b00?api-version=2022-03-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": "1a060cea-5981-4967-847d-b909459d2553",
+ "x-ms-correlation-request-id": "b69355f9-6cb6-4264-8e45-7826f1500ccc",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T154950Z:1a060cea-5981-4967-847d-b909459d2553",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T161856Z:b69355f9-6cb6-4264-8e45-7826f1500ccc",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1252dd02-b08d-4071-9191-980e2ee7b169?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c2ffb3f-2d8c-475e-ab59-c77fd0b56b00?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -556,7 +557,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:50:20 GMT",
+ "Date": "Mon, 25 Jul 2022 16:19:26 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -564,31 +565,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "aea33671-ba31-46a8-a565-0d697afbb831",
+ "x-ms-correlation-request-id": "1134e5f9-06ff-404e-97d2-79aad347a44e",
"x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155020Z:aea33671-ba31-46a8-a565-0d697afbb831",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T161926Z:1134e5f9-06ff-404e-97d2-79aad347a44e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1252dd02-b08d-4071-9191-980e2ee7b169",
- "name": "1252dd02-b08d-4071-9191-980e2ee7b169",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c2ffb3f-2d8c-475e-ab59-c77fd0b56b00",
+ "name": "7c2ffb3f-2d8c-475e-ab59-c77fd0b56b00",
"status": "Succeeded",
- "startTime": "2022-05-23T15:49:50.0960313Z",
- "endTime": "2022-05-23T15:49:50.1272987Z",
+ "startTime": "2022-07-25T16:18:56.2881006Z",
+ "endTime": "2022-07-25T16:18:56.3193639Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2f73295/snapshotPolicies/sdk-py-tests-snapshot-policy-1"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1252dd02-b08d-4071-9191-980e2ee7b169?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c2ffb3f-2d8c-475e-ab59-c77fd0b56b00?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -596,7 +597,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:50:20 GMT",
+ "Date": "Mon, 25 Jul 2022 16:19:26 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -604,19 +605,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "98d45439-4a07-4d0e-80a1-e1ba17c13fb9",
+ "x-ms-correlation-request-id": "95f82a87-ead9-4132-97b7-b581f29d256a",
"x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155020Z:98d45439-4a07-4d0e-80a1-e1ba17c13fb9",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T161926Z:95f82a87-ead9-4132-97b7-b581f29d256a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-snapshot-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A49%3A50.0338277Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A18%3A56.2568134Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:49:46.7004502Z"
+ "CreatedOnDate": "2022-07-25T16:18:51.7780189Z"
},
"properties": {
"enabled": false,
@@ -632,52 +633,52 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:49:47.7795613Z",
+ "createdAt": "2022-07-25T16:18:53.7704767Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:49:47.7795613Z"
+ "lastModifiedAt": "2022-07-25T16:18:53.7704767Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2f73295/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "291",
+ "Content-Length": "298",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:50:25 GMT",
+ "Date": "Mon, 25 Jul 2022 16:19:31 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ffca3d3b-a4ef-4e92-9d72-547e0d8b2fab",
+ "x-ms-correlation-request-id": "0b4b75e5-f917-493f-8221-8e6092d1dc04",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155026Z:ffca3d3b-a4ef-4e92-9d72-547e0d8b2fab"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T161932Z:0b4b75e5-f917-493f-8221-8e6092d1dc04"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "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\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2f73295/snapshotPolicies?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -685,7 +686,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:50:26 GMT",
+ "Date": "Mon, 25 Jul 2022 16:19:32 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -693,9 +694,9 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "138ca457-0d5d-4faf-9334-17ab3de92c8c",
+ "x-ms-correlation-request-id": "92f5554e-48f7-4ec3-9bd0-50113a39e644",
"x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155026Z:138ca457-0d5d-4faf-9334-17ab3de92c8c",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T161932Z:92f5554e-48f7-4ec3-9bd0-50113a39e644",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -703,43 +704,43 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2f73295?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/f1dcb241-9fcf-44eb-8ea7-c5e5e4465c9c?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69bf79bb-d967-4dcb-8c8b-079de9861796?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 15:50:26 GMT",
+ "Date": "Mon, 25 Jul 2022 16:19:33 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f1dcb241-9fcf-44eb-8ea7-c5e5e4465c9c?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69bf79bb-d967-4dcb-8c8b-079de9861796?api-version=2022-03-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": "9f867471-46d5-4e63-8f3c-892973c063db",
+ "x-ms-correlation-request-id": "c24a2b04-cbff-4883-aa7a-3beaa3d29888",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155027Z:9f867471-46d5-4e63-8f3c-892973c063db",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T161933Z:c24a2b04-cbff-4883-aa7a-3beaa3d29888",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f1dcb241-9fcf-44eb-8ea7-c5e5e4465c9c?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69bf79bb-d967-4dcb-8c8b-079de9861796?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -747,7 +748,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:50:56 GMT",
+ "Date": "Mon, 25 Jul 2022 16:20:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -755,31 +756,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a1954fd8-4689-4bf2-aec4-599dc359552d",
+ "x-ms-correlation-request-id": "5eaf0004-464a-4434-bef7-eb8bf2f40e19",
"x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155057Z:a1954fd8-4689-4bf2-aec4-599dc359552d",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162003Z:5eaf0004-464a-4434-bef7-eb8bf2f40e19",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f1dcb241-9fcf-44eb-8ea7-c5e5e4465c9c",
- "name": "f1dcb241-9fcf-44eb-8ea7-c5e5e4465c9c",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69bf79bb-d967-4dcb-8c8b-079de9861796",
+ "name": "69bf79bb-d967-4dcb-8c8b-079de9861796",
"status": "Succeeded",
- "startTime": "2022-05-23T15:50:27.063598Z",
- "endTime": "2022-05-23T15:50:27.1104909Z",
+ "startTime": "2022-07-25T16:19:33.3300055Z",
+ "endTime": "2022-07-25T16:19:33.3769041Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2f73295"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f1dcb241-9fcf-44eb-8ea7-c5e5e4465c9c?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69bf79bb-d967-4dcb-8c8b-079de9861796?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -787,7 +788,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:50:57 GMT",
+ "Date": "Mon, 25 Jul 2022 16:20:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -795,19 +796,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4317cb6a-ad21-41e8-9ae8-49f149ef287f",
+ "x-ms-correlation-request-id": "c09860d5-fe33-49e6-9403-03c1cbef5326",
"x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155057Z:4317cb6a-ad21-41e8-9ae8-49f149ef287f",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162004Z:c09860d5-fe33-49e6-9403-03c1cbef5326",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A50%3A27.0656674Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A19%3A33.3303486Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:49:10.1616927Z"
+ "CreatedOnDate": "2022-07-25T16:18:14.7258359Z"
},
"properties": {
"encryption": {
@@ -818,41 +819,41 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:49:13.7418337Z",
+ "createdAt": "2022-07-25T16:18:18.3705395Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:49:13.7418337Z"
+ "lastModifiedAt": "2022-07-25T16:18:18.3705395Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2f73295?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:50:59 GMT",
+ "Date": "Mon, 25 Jul 2022 16:20:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "efeecd1b-0a31-44db-866c-8964574fc089",
+ "x-ms-correlation-request-id": "e3ce9379-833d-4ae3-8ac5-99958f6c4ed0",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155100Z:efeecd1b-0a31-44db-866c-8964574fc089"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162004Z:e3ce9379-833d-4ae3-8ac5-99958f6c4ed0"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2f73295\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
}
}
}
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 cbcd6168c480..7477956a134d 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 23 May 2022 15:55:13 GMT",
+ "Date": "Mon, 25 Jul 2022 16:22:31 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.12794.4 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 23 May 2022 15:55:13 GMT",
+ "Date": "Mon, 25 Jul 2022 16:22:31 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.12744.11 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13201.7 - NEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "a34d4266-d23e-4bdc-8e5d-eb1e7734576b",
+ "client-request-id": "618c085a-cdea-4f89-ad82-bdd0d39ab712",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "a34d4266-d23e-4bdc-8e5d-eb1e7734576b",
+ "client-request-id": "618c085a-cdea-4f89-ad82-bdd0d39ab712",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:55:13 GMT",
+ "Date": "Mon, 25 Jul 2022 16:22:32 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12794.4 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - NEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,67 +213,90 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7ffd31c9?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "23",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2"
},
- "StatusCode": 201,
+ "StatusCode": 200,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/46b36dbb-fcfe-4aeb-a5d4-74a9d3fd5784?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/60bcae3e-87a5-44af-be51-bfb212e7da7f?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "699",
+ "Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:55:23 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A55%3A22.0396788Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 16:22:33 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T16%3A22%3A33.1820897Z\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": "b6d2b71e-4f70-418e-953c-f47e62aaa4e7",
- "x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155523Z:b6d2b71e-4f70-418e-953c-f47e62aaa4e7",
+ "x-ms-correlation-request-id": "804c045c-ba9c-4188-8f31-e46ccf4f26bc",
+ "x-ms-ratelimit-remaining-subscription-writes": "1194",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162234Z:804c045c-ba9c-4188-8f31-e46ccf4f26bc",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A55%3A22.0396788Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A22%3A33.1820897Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:55:16.6522469Z"
+ "CreatedOnDate": "2022-07-25T14:01:17.8212802Z"
},
"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": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:55:21.2748982Z",
+ "createdAt": "2022-07-25T14:01:19.8161959Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:55:21.2748982Z"
+ "lastModifiedAt": "2022-07-25T14:01:19.8161959Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/46b36dbb-fcfe-4aeb-a5d4-74a9d3fd5784?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/60bcae3e-87a5-44af-be51-bfb212e7da7f?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +304,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:55:53 GMT",
+ "Date": "Mon, 25 Jul 2022 16:23:04 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +312,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e323e426-de1c-4f0d-bf5b-baf2182f9707",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155553Z:e323e426-de1c-4f0d-bf5b-baf2182f9707",
+ "x-ms-correlation-request-id": "2fa74603-c320-4d51-8f4e-747ef8ed6672",
+ "x-ms-ratelimit-remaining-subscription-reads": "11976",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162305Z:2fa74603-c320-4d51-8f4e-747ef8ed6672",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/46b36dbb-fcfe-4aeb-a5d4-74a9d3fd5784",
- "name": "46b36dbb-fcfe-4aeb-a5d4-74a9d3fd5784",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/60bcae3e-87a5-44af-be51-bfb212e7da7f",
+ "name": "60bcae3e-87a5-44af-be51-bfb212e7da7f",
"status": "Succeeded",
- "startTime": "2022-05-23T15:55:22.0447193Z",
- "endTime": "2022-05-23T15:55:22.0759799Z",
+ "startTime": "2022-07-25T16:22:33.1813287Z",
+ "endTime": "2022-07-25T16:22:33.7437859Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7ffd31c9"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7ffd31c9?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +344,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:55:53 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A55%3A22.0817263Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 16:23:06 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T16%3A22%3A33.7467783Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,67 +353,64 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7c86520b-4f53-45a9-9ac7-c0e728cdd19a",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155554Z:7c86520b-4f53-45a9-9ac7-c0e728cdd19a",
+ "x-ms-correlation-request-id": "e74e0579-f4a3-4b18-8463-240b09174838",
+ "x-ms-ratelimit-remaining-subscription-reads": "11975",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162306Z:e74e0579-f4a3-4b18-8463-240b09174838",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A55%3A22.0817263Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-23T15:55:16.6522469Z"
- },
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A22%3A33.7467783Z\u0027\u0022",
+ "location": "westus2",
"properties": {
+ "provisioningState": "Succeeded",
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
],
"encryption": {
"keySource": "Microsoft.NetApp"
- },
- "provisioningState": "Succeeded"
+ }
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:55:21.2748982Z",
+ "createdAt": "2022-07-25T14:01:19.8161959Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:55:21.2748982Z"
+ "lastModifiedAt": "2022-07-25T16:22:33.053508Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7ffd31c9/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "191",
+ "Content-Length": "179",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"hourlySchedule": {
"snapshotsToKeep": 1,
@@ -403,30 +424,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0eb53cfb-f74c-4e07-b714-9ca49fe95fd1?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6695e7ee-5b87-4e6e-b190-5aa972c12ba9?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "922",
+ "Content-Length": "925",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:55:56 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A55%3A56.2478958Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 16:23:08 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T16%3A23%3A07.9171542Z\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": "c04e0519-2eb8-42a7-b7c6-ba8c95849082",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155557Z:c04e0519-2eb8-42a7-b7c6-ba8c95849082",
+ "x-ms-correlation-request-id": "9b676b07-318b-481c-a8b8-37e062290f19",
+ "x-ms-ratelimit-remaining-subscription-writes": "1193",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162309Z:9b676b07-318b-481c-a8b8-37e062290f19",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-snapshot-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A55%3A56.2478958Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A23%3A07.9171542Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:55:54.3660163Z"
+ "CreatedOnDate": "2022-07-25T16:23:06.5528418Z"
},
"properties": {
"enabled": false,
@@ -442,21 +463,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:55:56.1192762Z",
+ "createdAt": "2022-07-25T16:23:07.7490754Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:55:56.1192762Z"
+ "lastModifiedAt": "2022-07-25T16:23:07.7490754Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7ffd31c9/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -464,8 +485,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:55:57 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A55%3A56.2879324Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 16:23:09 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T16%3A23%3A07.9689156Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -473,19 +494,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "abcffa9a-219a-4c4c-893d-04437a2228b8",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155557Z:abcffa9a-219a-4c4c-893d-04437a2228b8",
+ "x-ms-correlation-request-id": "89158431-085f-455f-95d8-690b90628041",
+ "x-ms-ratelimit-remaining-subscription-reads": "11974",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162309Z:89158431-085f-455f-95d8-690b90628041",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-snapshot-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A55%3A56.2879324Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A23%3A07.9689156Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:55:54.3660163Z"
+ "CreatedOnDate": "2022-07-25T16:23:06.5528418Z"
},
"properties": {
"enabled": false,
@@ -501,51 +522,51 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:55:56.1192762Z",
+ "createdAt": "2022-07-25T16:23:07.7490754Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:55:56.1192762Z"
+ "lastModifiedAt": "2022-07-25T16:23:07.7490754Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7ffd31c9/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/3ee0b2e2-e69f-4881-9e17-28dffc56e161?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c8351912-9a6d-4f23-9908-03fea663da6f?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 15:55:57 GMT",
+ "Date": "Mon, 25 Jul 2022 16:23:10 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3ee0b2e2-e69f-4881-9e17-28dffc56e161?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c8351912-9a6d-4f23-9908-03fea663da6f?api-version=2022-03-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": "ad6ad29f-8997-425c-8df6-f266510aefbd",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155558Z:ad6ad29f-8997-425c-8df6-f266510aefbd",
+ "x-ms-correlation-request-id": "fbad33ed-30fb-4f7a-9417-1891aa8a2eb1",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162310Z:fbad33ed-30fb-4f7a-9417-1891aa8a2eb1",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3ee0b2e2-e69f-4881-9e17-28dffc56e161?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c8351912-9a6d-4f23-9908-03fea663da6f?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -553,7 +574,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:56:27 GMT",
+ "Date": "Mon, 25 Jul 2022 16:23:39 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -561,31 +582,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b33c2158-8db6-488a-b634-dabcd96ec992",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155628Z:b33c2158-8db6-488a-b634-dabcd96ec992",
+ "x-ms-correlation-request-id": "cd6fefc8-8ed6-46b0-8dad-c96d5ffb0e9b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11973",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162340Z:cd6fefc8-8ed6-46b0-8dad-c96d5ffb0e9b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3ee0b2e2-e69f-4881-9e17-28dffc56e161",
- "name": "3ee0b2e2-e69f-4881-9e17-28dffc56e161",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c8351912-9a6d-4f23-9908-03fea663da6f",
+ "name": "c8351912-9a6d-4f23-9908-03fea663da6f",
"status": "Succeeded",
- "startTime": "2022-05-23T15:55:58.4092798Z",
- "endTime": "2022-05-23T15:55:58.4404878Z",
+ "startTime": "2022-07-25T16:23:10.2342771Z",
+ "endTime": "2022-07-25T16:23:10.2811529Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7ffd31c9/snapshotPolicies/sdk-py-tests-snapshot-policy-1"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3ee0b2e2-e69f-4881-9e17-28dffc56e161?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c8351912-9a6d-4f23-9908-03fea663da6f?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -593,7 +614,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:56:28 GMT",
+ "Date": "Mon, 25 Jul 2022 16:23:40 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -601,19 +622,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2cb07b75-d3a4-4531-b6ba-8142325e1a77",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155628Z:2cb07b75-d3a4-4531-b6ba-8142325e1a77",
+ "x-ms-correlation-request-id": "05edfa8e-5ed9-4639-83ad-ba4b6c7fd735",
+ "x-ms-ratelimit-remaining-subscription-reads": "11972",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162340Z:05edfa8e-5ed9-4639-83ad-ba4b6c7fd735",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-snapshot-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A55%3A58.4057422Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A23%3A10.2206742Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:55:54.3660163Z"
+ "CreatedOnDate": "2022-07-25T16:23:06.5528418Z"
},
"properties": {
"enabled": false,
@@ -629,82 +650,82 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:55:56.1192762Z",
+ "createdAt": "2022-07-25T16:23:07.7490754Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:55:56.1192762Z"
+ "lastModifiedAt": "2022-07-25T16:23:07.7490754Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7ffd31c9/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "291",
+ "Content-Length": "298",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:56:33 GMT",
+ "Date": "Mon, 25 Jul 2022 16:23:46 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1590c484-5d40-4649-aa78-f37d287f4169",
+ "x-ms-correlation-request-id": "7b9cedcc-f77b-49fb-9fe1-1ff463970cfe",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155634Z:1590c484-5d40-4649-aa78-f37d287f4169"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162346Z:7b9cedcc-f77b-49fb-9fe1-1ff463970cfe"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "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\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7ffd31c9?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/a347710b-995a-4e4a-97b2-ab5ca7b662fe?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/df838f78-401f-46ab-abc4-cec7fcb81d56?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 15:56:34 GMT",
+ "Date": "Mon, 25 Jul 2022 16:23:46 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a347710b-995a-4e4a-97b2-ab5ca7b662fe?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/df838f78-401f-46ab-abc4-cec7fcb81d56?api-version=2022-03-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": "17b86395-4c88-408f-8837-9435fb513794",
- "x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155634Z:17b86395-4c88-408f-8837-9435fb513794",
+ "x-ms-correlation-request-id": "c4649859-343b-4c8a-a5ab-a505862fdef2",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162346Z:c4649859-343b-4c8a-a5ab-a505862fdef2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a347710b-995a-4e4a-97b2-ab5ca7b662fe?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/df838f78-401f-46ab-abc4-cec7fcb81d56?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -712,7 +733,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:57:05 GMT",
+ "Date": "Mon, 25 Jul 2022 16:24:16 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -720,31 +741,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "558c548e-0420-43d0-b21e-e98c56f5fc42",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155705Z:558c548e-0420-43d0-b21e-e98c56f5fc42",
+ "x-ms-correlation-request-id": "c0a49902-7dfe-4d34-b9e9-0b7f9e68b1a8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11970",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162417Z:c0a49902-7dfe-4d34-b9e9-0b7f9e68b1a8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a347710b-995a-4e4a-97b2-ab5ca7b662fe",
- "name": "a347710b-995a-4e4a-97b2-ab5ca7b662fe",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/df838f78-401f-46ab-abc4-cec7fcb81d56",
+ "name": "df838f78-401f-46ab-abc4-cec7fcb81d56",
"status": "Succeeded",
- "startTime": "2022-05-23T15:56:34.8662063Z",
- "endTime": "2022-05-23T15:56:34.8974859Z",
+ "startTime": "2022-07-25T16:23:46.7684962Z",
+ "endTime": "2022-07-25T16:23:46.8047955Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7ffd31c9"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a347710b-995a-4e4a-97b2-ab5ca7b662fe?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/df838f78-401f-46ab-abc4-cec7fcb81d56?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -752,7 +773,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:57:05 GMT",
+ "Date": "Mon, 25 Jul 2022 16:24:16 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -760,64 +781,62 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5aec616a-5c75-4d1e-8b72-963a47188aa7",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155705Z:5aec616a-5c75-4d1e-8b72-963a47188aa7",
+ "x-ms-correlation-request-id": "50717cef-1f5d-43dd-a8c2-72d0771ff781",
+ "x-ms-ratelimit-remaining-subscription-reads": "11969",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162417Z:50717cef-1f5d-43dd-a8c2-72d0771ff781",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A56%3A34.8598448Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-23T15:55:16.6522469Z"
- },
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A23%3A46.7595288Z\u0027\u0022",
+ "location": "westus2",
"properties": {
"encryption": {
"keySource": "Microsoft.NetApp"
},
+ "activeDirectories": [],
"provisioningState": "Deleting"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:55:21.2748982Z",
+ "createdAt": "2022-07-25T14:01:19.8161959Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:55:21.2748982Z"
+ "lastModifiedAt": "2022-07-25T16:22:33.053508Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7ffd31c9?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:57:05 GMT",
+ "Date": "Mon, 25 Jul 2022 16:24:17 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e13ebebf-3bed-4b3b-af5d-2bfe72e99660",
+ "x-ms-correlation-request-id": "a951ee2a-ffa9-408d-a21c-254f9d17b25d",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155705Z:e13ebebf-3bed-4b3b-af5d-2bfe72e99660"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162417Z:a951ee2a-ffa9-408d-a21c-254f9d17b25d"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7ffd31c9\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
}
}
}
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 491228a97141..e16c2ee11334 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 23 May 2022 15:51:19 GMT",
+ "Date": "Mon, 25 Jul 2022 16:20: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.12794.4 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 23 May 2022 15:51:19 GMT",
+ "Date": "Mon, 25 Jul 2022 16:20: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.12744.11 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13201.7 - NEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "076da828-fb09-4363-87b9-f9f781905dc4",
+ "client-request-id": "62ffdb8e-ea88-45c5-9d49-71ca99843ab1",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "076da828-fb09-4363-87b9-f9f781905dc4",
+ "client-request-id": "62ffdb8e-ea88-45c5-9d49-71ca99843ab1",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:51:19 GMT",
+ "Date": "Mon, 25 Jul 2022 16:20:05 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12794.4 - NEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - WEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,45 +213,45 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "23",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2"
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8ead8284-becb-4633-9df4-697739f593e2?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/869e6b09-8185-4d38-91e8-82299c7a811d?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "699",
+ "Content-Length": "702",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:51:27 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A51%3A26.4422737Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 16:20:09 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T16%3A20%3A08.8030573Z\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": "67cced06-2635-462e-857e-9c7c89e90ab1",
- "x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155127Z:67cced06-2635-462e-857e-9c7c89e90ab1",
+ "x-ms-correlation-request-id": "196fe568-15d9-4caf-947d-7a1f5b1292f3",
+ "x-ms-ratelimit-remaining-subscription-writes": "1197",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162009Z:196fe568-15d9-4caf-947d-7a1f5b1292f3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A51%3A26.4422737Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A20%3A08.8030573Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:51:22.3033155Z"
+ "CreatedOnDate": "2022-07-25T16:20:06.5708167Z"
},
"properties": {
"provisioningState": "Creating"
@@ -258,21 +259,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:51:25.6900005Z",
+ "createdAt": "2022-07-25T16:20:08.6528868Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:51:25.6900005Z"
+ "lastModifiedAt": "2022-07-25T16:20:08.6528868Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8ead8284-becb-4633-9df4-697739f593e2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/869e6b09-8185-4d38-91e8-82299c7a811d?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +281,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:51:57 GMT",
+ "Date": "Mon, 25 Jul 2022 16:20:40 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +289,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "aa7a0e2d-ebe8-4fa2-9020-2b172d952689",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155158Z:aa7a0e2d-ebe8-4fa2-9020-2b172d952689",
+ "x-ms-correlation-request-id": "79314dbf-cc59-4f8e-93b6-e6450edefc9d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162040Z:79314dbf-cc59-4f8e-93b6-e6450edefc9d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8ead8284-becb-4633-9df4-697739f593e2",
- "name": "8ead8284-becb-4633-9df4-697739f593e2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/869e6b09-8185-4d38-91e8-82299c7a811d",
+ "name": "869e6b09-8185-4d38-91e8-82299c7a811d",
"status": "Succeeded",
- "startTime": "2022-05-23T15:51:26.4391433Z",
- "endTime": "2022-05-23T15:51:26.6266075Z",
+ "startTime": "2022-07-25T16:20:08.7964573Z",
+ "endTime": "2022-07-25T16:20:08.8433065Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +321,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:51:57 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A51%3A26.4740248Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 16:20:40 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T16%3A20%3A08.8447421Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,35 +330,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f4f16ac9-e061-4df6-915e-f7ed27a99419",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155158Z:f4f16ac9-e061-4df6-915e-f7ed27a99419",
+ "x-ms-correlation-request-id": "d1a5ae85-e4a6-4f61-9033-805a0857b059",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162040Z:d1a5ae85-e4a6-4f61-9033-805a0857b059",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A51%3A26.4740248Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A20%3A08.8447421Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:51:22.3033155Z"
+ "CreatedOnDate": "2022-07-25T16:20:06.5708167Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -370,26 +371,26 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:51:25.6900005Z",
+ "createdAt": "2022-07-25T16:20:08.6528868Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:51:25.6900005Z"
+ "lastModifiedAt": "2022-07-25T16:20:08.6528868Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "191",
+ "Content-Length": "179",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"hourlySchedule": {
"snapshotsToKeep": 1,
@@ -403,30 +404,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/63c55437-436c-4c5c-ba25-3f6d890166fa?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8698f8ba-6745-4bd7-8dd7-ae6ab015e51b?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "922",
+ "Content-Length": "925",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:52:00 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A52%3A00.5934782Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 16:20:43 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T16%3A20%3A42.2965814Z\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": "34630f8a-26ea-4238-9f2e-5fa40cd766ef",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155201Z:34630f8a-26ea-4238-9f2e-5fa40cd766ef",
+ "x-ms-correlation-request-id": "e9a6ac02-38ca-4afd-8e02-25d03096219e",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162043Z:e9a6ac02-38ca-4afd-8e02-25d03096219e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-snapshot-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A52%3A00.5934782Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A20%3A42.2965814Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:51:58.7978616Z"
+ "CreatedOnDate": "2022-07-25T16:20:40.9494378Z"
},
"properties": {
"enabled": false,
@@ -442,26 +443,26 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:52:00.4560694Z",
+ "createdAt": "2022-07-25T16:20:42.1449932Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:52:00.4560694Z"
+ "lastModifiedAt": "2022-07-25T16:20:42.1449932Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3/snapshotPolicies/sdk-py-tests-snapshot-policy-2?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "191",
+ "Content-Length": "179",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"hourlySchedule": {
"snapshotsToKeep": 1,
@@ -475,30 +476,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c1e4f058-5af0-4706-a292-99695d12ede8?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0df8444f-d341-4360-a24a-73c3c855a7e7?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "922",
+ "Content-Length": "925",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:52:04 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T15%3A52%3A03.4048493Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 16:20:45 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T16%3A20%3A45.0189987Z\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": "8518f914-0e47-407d-b519-11ba27897048",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155204Z:8518f914-0e47-407d-b519-11ba27897048",
+ "x-ms-correlation-request-id": "739f7068-ec1d-4753-a6ba-2f0feadb5d3b",
+ "x-ms-ratelimit-remaining-subscription-writes": "1195",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162045Z:739f7068-ec1d-4753-a6ba-2f0feadb5d3b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-snapshot-policy-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A52%3A03.4048493Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A20%3A45.0189987Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:52:01.8091494Z"
+ "CreatedOnDate": "2022-07-25T16:20:43.7665947Z"
},
"properties": {
"enabled": false,
@@ -514,21 +515,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:52:03.2842296Z",
+ "createdAt": "2022-07-25T16:20:44.8808337Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:52:03.2842296Z"
+ "lastModifiedAt": "2022-07-25T16:20:44.8808337Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3/snapshotPolicies?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -536,7 +537,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:52:05 GMT",
+ "Date": "Mon, 25 Jul 2022 16:20:46 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -544,21 +545,21 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5034230c-cd3d-4f4a-abff-f54af5879857",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155205Z:5034230c-cd3d-4f4a-abff-f54af5879857",
+ "x-ms-correlation-request-id": "7caf8d4f-cba4-4006-88e7-b88a4ccb42bb",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162046Z:7caf8d4f-cba4-4006-88e7-b88a4ccb42bb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-snapshot-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A52%3A00.6434141Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A20%3A42.3332541Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:51:58.7978616Z"
+ "CreatedOnDate": "2022-07-25T16:20:40.9494378Z"
},
"properties": {
"enabled": false,
@@ -574,20 +575,20 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:52:00.4560694Z",
+ "createdAt": "2022-07-25T16:20:42.1449932Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:52:00.4560694Z"
+ "lastModifiedAt": "2022-07-25T16:20:42.1449932Z"
}
},
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-snapshot-policy-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A52%3A03.4388424Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A20%3A45.0687441Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:52:01.8091494Z"
+ "CreatedOnDate": "2022-07-25T16:20:43.7665947Z"
},
"properties": {
"enabled": false,
@@ -603,53 +604,53 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:52:03.2842296Z",
+ "createdAt": "2022-07-25T16:20:44.8808337Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:52:03.2842296Z"
+ "lastModifiedAt": "2022-07-25T16:20:44.8808337Z"
}
}
]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/a948a0f3-1770-4476-92ec-7c62850357b6?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b49c4eab-0832-42d9-a2b8-029b90e94028?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 15:52:05 GMT",
+ "Date": "Mon, 25 Jul 2022 16:20:46 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a948a0f3-1770-4476-92ec-7c62850357b6?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b49c4eab-0832-42d9-a2b8-029b90e94028?api-version=2022-03-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": "b04c4845-aca2-4f07-a9d9-8f4e88fcad1f",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155205Z:b04c4845-aca2-4f07-a9d9-8f4e88fcad1f",
+ "x-ms-correlation-request-id": "cc617541-7ce7-4789-b40e-820cd46ff061",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162046Z:cc617541-7ce7-4789-b40e-820cd46ff061",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a948a0f3-1770-4476-92ec-7c62850357b6?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b49c4eab-0832-42d9-a2b8-029b90e94028?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -657,7 +658,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:52:35 GMT",
+ "Date": "Mon, 25 Jul 2022 16:21:16 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -665,31 +666,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1ba08bd9-5fcc-42aa-9f81-82470f635e4b",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155236Z:1ba08bd9-5fcc-42aa-9f81-82470f635e4b",
+ "x-ms-correlation-request-id": "17f2f204-057c-492c-b95c-bcb95f9c293f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162117Z:17f2f204-057c-492c-b95c-bcb95f9c293f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a948a0f3-1770-4476-92ec-7c62850357b6",
- "name": "a948a0f3-1770-4476-92ec-7c62850357b6",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b49c4eab-0832-42d9-a2b8-029b90e94028",
+ "name": "b49c4eab-0832-42d9-a2b8-029b90e94028",
"status": "Succeeded",
- "startTime": "2022-05-23T15:52:05.6238461Z",
- "endTime": "2022-05-23T15:52:05.6394464Z",
+ "startTime": "2022-07-25T16:20:46.8221457Z",
+ "endTime": "2022-07-25T16:20:46.8534421Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3/snapshotPolicies/sdk-py-tests-snapshot-policy-1"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a948a0f3-1770-4476-92ec-7c62850357b6?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b49c4eab-0832-42d9-a2b8-029b90e94028?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -697,7 +698,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:52:35 GMT",
+ "Date": "Mon, 25 Jul 2022 16:21:16 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -705,19 +706,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e26ca4a0-765c-446a-b591-a830ffc050f9",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155236Z:e26ca4a0-765c-446a-b591-a830ffc050f9",
+ "x-ms-correlation-request-id": "2b359447-1195-4896-b9a3-007905f56822",
+ "x-ms-ratelimit-remaining-subscription-reads": "11985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162117Z:2b359447-1195-4896-b9a3-007905f56822",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-snapshot-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A52%3A05.6036258Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A20%3A46.8057856Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:51:58.7978616Z"
+ "CreatedOnDate": "2022-07-25T16:20:40.9494378Z"
},
"properties": {
"enabled": false,
@@ -733,82 +734,82 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:52:00.4560694Z",
+ "createdAt": "2022-07-25T16:20:42.1449932Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:52:00.4560694Z"
+ "lastModifiedAt": "2022-07-25T16:20:42.1449932Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "291",
+ "Content-Length": "298",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:52:41 GMT",
+ "Date": "Mon, 25 Jul 2022 16:21:22 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2a0fdc2b-4f10-4657-8610-71a274b4e340",
+ "x-ms-correlation-request-id": "78cb209c-2d2b-4ef1-bae0-d333494c23fb",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155241Z:2a0fdc2b-4f10-4657-8610-71a274b4e340"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162122Z:78cb209c-2d2b-4ef1-bae0-d333494c23fb"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "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\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3/snapshotPolicies/sdk-py-tests-snapshot-policy-2?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/622b31c8-7e1d-4fb0-bee4-263399868c13?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cdf70d4f-3126-4a16-b1d9-001f25ef3111?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 15:52:41 GMT",
+ "Date": "Mon, 25 Jul 2022 16:21:22 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/622b31c8-7e1d-4fb0-bee4-263399868c13?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cdf70d4f-3126-4a16-b1d9-001f25ef3111?api-version=2022-03-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": "f9f5709f-05ec-446e-9969-ed94f7d74530",
- "x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155242Z:f9f5709f-05ec-446e-9969-ed94f7d74530",
+ "x-ms-correlation-request-id": "bd35fa84-0964-4791-99e9-0259e5e5f591",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14996",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162123Z:bd35fa84-0964-4791-99e9-0259e5e5f591",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/622b31c8-7e1d-4fb0-bee4-263399868c13?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cdf70d4f-3126-4a16-b1d9-001f25ef3111?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -816,7 +817,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:53:11 GMT",
+ "Date": "Mon, 25 Jul 2022 16:21:53 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -824,31 +825,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fb6a67f6-c324-431e-aebb-e9adc380bebf",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155312Z:fb6a67f6-c324-431e-aebb-e9adc380bebf",
+ "x-ms-correlation-request-id": "5def2ce5-514d-4ae6-a439-95cdce56b716",
+ "x-ms-ratelimit-remaining-subscription-reads": "11983",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162153Z:5def2ce5-514d-4ae6-a439-95cdce56b716",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/622b31c8-7e1d-4fb0-bee4-263399868c13",
- "name": "622b31c8-7e1d-4fb0-bee4-263399868c13",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cdf70d4f-3126-4a16-b1d9-001f25ef3111",
+ "name": "cdf70d4f-3126-4a16-b1d9-001f25ef3111",
"status": "Succeeded",
- "startTime": "2022-05-23T15:52:41.9798874Z",
- "endTime": "2022-05-23T15:52:42.0111493Z",
+ "startTime": "2022-07-25T16:21:23.3558643Z",
+ "endTime": "2022-07-25T16:21:23.4026947Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-2"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3/snapshotPolicies/sdk-py-tests-snapshot-policy-2"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/622b31c8-7e1d-4fb0-bee4-263399868c13?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cdf70d4f-3126-4a16-b1d9-001f25ef3111?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -856,7 +857,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:53:11 GMT",
+ "Date": "Mon, 25 Jul 2022 16:21:53 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -864,19 +865,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d635017e-3fa8-4629-aaff-604a7572de17",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155312Z:d635017e-3fa8-4629-aaff-604a7572de17",
+ "x-ms-correlation-request-id": "410b3b55-2f96-4263-8cd4-a7722eed042d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162154Z:410b3b55-2f96-4263-8cd4-a7722eed042d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-snapshot-policy-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A52%3A41.9721812Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A21%3A23.3376165Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:52:01.8091494Z"
+ "CreatedOnDate": "2022-07-25T16:20:43.7665947Z"
},
"properties": {
"enabled": false,
@@ -892,52 +893,52 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:52:03.2842296Z",
+ "createdAt": "2022-07-25T16:20:44.8808337Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:52:03.2842296Z"
+ "lastModifiedAt": "2022-07-25T16:20:44.8808337Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3/snapshotPolicies/sdk-py-tests-snapshot-policy-2?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "291",
+ "Content-Length": "298",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:53:17 GMT",
+ "Date": "Mon, 25 Jul 2022 16:21:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e7535dc5-db33-45ee-9691-0f6557515728",
+ "x-ms-correlation-request-id": "5dec3883-881b-4752-a846-999e805ca485",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155317Z:e7535dc5-db33-45ee-9691-0f6557515728"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162159Z:5dec3883-881b-4752-a846-999e805ca485"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-2\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "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\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3/snapshotPolicies?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -945,7 +946,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:53:17 GMT",
+ "Date": "Mon, 25 Jul 2022 16:21:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -953,9 +954,9 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c80518c6-f698-4490-bb86-bf62aac7b3ba",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155318Z:c80518c6-f698-4490-bb86-bf62aac7b3ba",
+ "x-ms-correlation-request-id": "4fb610b8-6079-40f5-aeb0-d7cbfee8028c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11980",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162159Z:4fb610b8-6079-40f5-aeb0-d7cbfee8028c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -963,43 +964,43 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/1a10b450-a4da-4942-9a9a-16289f7bfb6c?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dd815b0e-d63e-4531-92aa-a1b7936fcdec?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 15:53:18 GMT",
+ "Date": "Mon, 25 Jul 2022 16:22:00 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1a10b450-a4da-4942-9a9a-16289f7bfb6c?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dd815b0e-d63e-4531-92aa-a1b7936fcdec?api-version=2022-03-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": "7fee68db-5358-48f1-8c4c-e67f962da47f",
- "x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155318Z:7fee68db-5358-48f1-8c4c-e67f962da47f",
+ "x-ms-correlation-request-id": "433387f2-5ecf-40b6-a541-293ab064c49f",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162200Z:433387f2-5ecf-40b6-a541-293ab064c49f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1a10b450-a4da-4942-9a9a-16289f7bfb6c?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dd815b0e-d63e-4531-92aa-a1b7936fcdec?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1007,7 +1008,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:53:49 GMT",
+ "Date": "Mon, 25 Jul 2022 16:22:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1015,31 +1016,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4efae1d3-11fa-49b8-8757-eb4f9e2fd203",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155349Z:4efae1d3-11fa-49b8-8757-eb4f9e2fd203",
+ "x-ms-correlation-request-id": "aa74c694-d7f6-4a96-80dc-f7cef359ffc5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11979",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162230Z:aa74c694-d7f6-4a96-80dc-f7cef359ffc5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1a10b450-a4da-4942-9a9a-16289f7bfb6c",
- "name": "1a10b450-a4da-4942-9a9a-16289f7bfb6c",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dd815b0e-d63e-4531-92aa-a1b7936fcdec",
+ "name": "dd815b0e-d63e-4531-92aa-a1b7936fcdec",
"status": "Succeeded",
- "startTime": "2022-05-23T15:53:18.7647362Z",
- "endTime": "2022-05-23T15:53:18.7960067Z",
+ "startTime": "2022-07-25T16:22:00.3435588Z",
+ "endTime": "2022-07-25T16:22:00.3748282Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1a10b450-a4da-4942-9a9a-16289f7bfb6c?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dd815b0e-d63e-4531-92aa-a1b7936fcdec?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1047,7 +1048,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:53:49 GMT",
+ "Date": "Mon, 25 Jul 2022 16:22:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1055,19 +1056,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e4cafc21-cfe4-4424-bfce-962a50bd097d",
- "x-ms-ratelimit-remaining-subscription-reads": "11988",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155349Z:e4cafc21-cfe4-4424-bfce-962a50bd097d",
+ "x-ms-correlation-request-id": "f2fd9f83-36bb-49aa-aaae-cb096e54bef9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11978",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162231Z:f2fd9f83-36bb-49aa-aaae-cb096e54bef9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T15%3A53%3A18.7667736Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A22%3A00.3202146Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T15:51:22.3033155Z"
+ "CreatedOnDate": "2022-07-25T16:20:06.5708167Z"
},
"properties": {
"encryption": {
@@ -1078,41 +1079,41 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T15:51:25.6900005Z",
+ "createdAt": "2022-07-25T16:20:08.6528868Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T15:51:25.6900005Z"
+ "lastModifiedAt": "2022-07-25T16:20:08.6528868Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 15:53:49 GMT",
+ "Date": "Mon, 25 Jul 2022 16:22:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1aa021be-306f-41c0-9de9-202034762bae",
+ "x-ms-correlation-request-id": "914863e8-bc9e-4875-b681-c0307ee88be2",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T155349Z:1aa021be-306f-41c0-9de9-202034762bae"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162231Z:914863e8-bc9e-4875-b681-c0307ee88be2"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
}
}
}
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 4e2aa83afe5e..f143943f1847 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 23 May 2022 16:03:20 GMT",
+ "Date": "Mon, 25 Jul 2022 16:24:18 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.12794.4 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 23 May 2022 16:03:20 GMT",
+ "Date": "Mon, 25 Jul 2022 16:24:18 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.12744.11 - NEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - WEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "79e13bb7-9a9e-412e-8ee3-b1508090f6c0",
+ "client-request-id": "dd95eccf-62fc-408d-a6f5-e9ef3e5815e6",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "79e13bb7-9a9e-412e-8ee3-b1508090f6c0",
+ "client-request-id": "dd95eccf-62fc-408d-a6f5-e9ef3e5815e6",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:03:20 GMT",
+ "Date": "Mon, 25 Jul 2022 16:24:18 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12794.4 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - WEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,45 +213,45 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "23",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2"
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f2f4570f-d0f8-4c37-a494-69753654295e?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1943cfed-3118-4a59-acc1-cb1e6dbfc146?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "699",
+ "Content-Length": "702",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:03:26 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T16%3A03%3A26.1565936Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 16:24:22 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T16%3A24%3A22.1696277Z\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": "45843df1-366c-4386-a90e-7def9e34e82f",
- "x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T160327Z:45843df1-366c-4386-a90e-7def9e34e82f",
+ "x-ms-correlation-request-id": "9675a34a-36f4-4a6c-b02f-5019c46cd0e0",
+ "x-ms-ratelimit-remaining-subscription-writes": "1192",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162423Z:9675a34a-36f4-4a6c-b02f-5019c46cd0e0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T16%3A03%3A26.1565936Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A24%3A22.1696277Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T16:03:22.0856262Z"
+ "CreatedOnDate": "2022-07-25T16:24:19.9783884Z"
},
"properties": {
"provisioningState": "Creating"
@@ -258,21 +259,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T16:03:25.2564214Z",
+ "createdAt": "2022-07-25T16:24:22.0021375Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T16:03:25.2564214Z"
+ "lastModifiedAt": "2022-07-25T16:24:22.0021375Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f2f4570f-d0f8-4c37-a494-69753654295e?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1943cfed-3118-4a59-acc1-cb1e6dbfc146?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +281,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:03:56 GMT",
+ "Date": "Mon, 25 Jul 2022 16:24:53 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +289,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ba9b1e81-218a-4a18-8417-6d2042a0e1e1",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T160357Z:ba9b1e81-218a-4a18-8417-6d2042a0e1e1",
+ "x-ms-correlation-request-id": "35a604cd-e250-4dda-b24a-266ac094fe3c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11967",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162453Z:35a604cd-e250-4dda-b24a-266ac094fe3c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f2f4570f-d0f8-4c37-a494-69753654295e",
- "name": "f2f4570f-d0f8-4c37-a494-69753654295e",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1943cfed-3118-4a59-acc1-cb1e6dbfc146",
+ "name": "1943cfed-3118-4a59-acc1-cb1e6dbfc146",
"status": "Succeeded",
- "startTime": "2022-05-23T16:03:26.1582845Z",
- "endTime": "2022-05-23T16:03:26.1895699Z",
+ "startTime": "2022-07-25T16:24:22.1720499Z",
+ "endTime": "2022-07-25T16:24:22.2190152Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +321,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:03:57 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T16%3A03%3A26.1939226Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 16:24:53 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T16%3A24%3A22.2219724Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,35 +330,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d1e2dc45-cd1f-4744-9d66-7cfa5eaa539f",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T160358Z:d1e2dc45-cd1f-4744-9d66-7cfa5eaa539f",
+ "x-ms-correlation-request-id": "0dde049a-53fe-4601-9c6b-7bc0f62ce6e1",
+ "x-ms-ratelimit-remaining-subscription-reads": "11966",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162454Z:0dde049a-53fe-4601-9c6b-7bc0f62ce6e1",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T16%3A03%3A26.1939226Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A24%3A22.2219724Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T16:03:22.0856262Z"
+ "CreatedOnDate": "2022-07-25T16:24:19.9783884Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -370,26 +371,26 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T16:03:25.2564214Z",
+ "createdAt": "2022-07-25T16:24:22.0021375Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T16:03:25.2564214Z"
+ "lastModifiedAt": "2022-07-25T16:24:22.0021375Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "191",
+ "Content-Length": "179",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"hourlySchedule": {
"snapshotsToKeep": 1,
@@ -403,30 +404,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/802110bf-4b9d-43a1-b422-1b6eed759a3a?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0b355a7e-17bc-45f4-b17c-44d60b75d1f2?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "922",
+ "Content-Length": "925",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:04:00 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T16%3A04%3A00.3649722Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 16:24:56 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T16%3A24%3A55.8483413Z\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": "95cc67b4-c27f-4e2e-b881-b5fe4418dc81",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T160401Z:95cc67b4-c27f-4e2e-b881-b5fe4418dc81",
+ "x-ms-correlation-request-id": "198a2e83-8cad-4a32-ace0-3e82ffb07242",
+ "x-ms-ratelimit-remaining-subscription-writes": "1191",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162457Z:198a2e83-8cad-4a32-ace0-3e82ffb07242",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-snapshot-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T16%3A04%3A00.3649722Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A24%3A55.8483413Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T16:03:58.3954906Z"
+ "CreatedOnDate": "2022-07-25T16:24:54.4586173Z"
},
"properties": {
"enabled": false,
@@ -442,26 +443,26 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T16:04:00.2411387Z",
+ "createdAt": "2022-07-25T16:24:55.6877334Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T16:04:00.2411387Z"
+ "lastModifiedAt": "2022-07-25T16:24:55.6877334Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-03-01",
"RequestMethod": "PATCH",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "202",
+ "Content-Length": "190",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"hourlySchedule": {},
"dailySchedule": {
@@ -476,31 +477,31 @@
},
"StatusCode": 202,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f86329b4-d55d-4a60-b6ae-dbd0dd25e589?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/099cd9fe-540d-4267-882d-5fcc128599d0?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "922",
+ "Content-Length": "925",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:04:00 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-23T16%3A04%3A01.6470828Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 16:24:57 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T16%3A24%3A57.6514378Z\u0027\u0022",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f86329b4-d55d-4a60-b6ae-dbd0dd25e589?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/099cd9fe-540d-4267-882d-5fcc128599d0?api-version=2022-03-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": "00abe0ba-e879-4ca5-ac28-b2ab42f2785d",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T160401Z:00abe0ba-e879-4ca5-ac28-b2ab42f2785d",
+ "x-ms-correlation-request-id": "d190bdb7-0651-4433-b1f9-06994efb4ce7",
+ "x-ms-ratelimit-remaining-subscription-writes": "1190",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162457Z:d190bdb7-0651-4433-b1f9-06994efb4ce7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-snapshot-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T16%3A04%3A01.6470828Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A24%3A57.6514378Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T16:03:58.3954906Z"
+ "CreatedOnDate": "2022-07-25T16:24:54.4586173Z"
},
"properties": {
"provisioningState": "Patching",
@@ -516,21 +517,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T16:04:00.2411387Z",
+ "createdAt": "2022-07-25T16:24:55.6877334Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T16:04:00.2411387Z"
+ "lastModifiedAt": "2022-07-25T16:24:55.6877334Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f86329b4-d55d-4a60-b6ae-dbd0dd25e589?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/099cd9fe-540d-4267-882d-5fcc128599d0?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -538,7 +539,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:04:32 GMT",
+ "Date": "Mon, 25 Jul 2022 16:25:27 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -546,31 +547,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f291bcbe-96d7-4f9f-9bde-efb80853556b",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T160432Z:f291bcbe-96d7-4f9f-9bde-efb80853556b",
+ "x-ms-correlation-request-id": "488050e8-b333-4c29-a140-9eed12ca34a3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11965",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162528Z:488050e8-b333-4c29-a140-9eed12ca34a3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f86329b4-d55d-4a60-b6ae-dbd0dd25e589",
- "name": "f86329b4-d55d-4a60-b6ae-dbd0dd25e589",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/099cd9fe-540d-4267-882d-5fcc128599d0",
+ "name": "099cd9fe-540d-4267-882d-5fcc128599d0",
"status": "Succeeded",
- "startTime": "2022-05-23T16:04:01.6473977Z",
- "endTime": "2022-05-23T16:04:01.7099309Z",
+ "startTime": "2022-07-25T16:24:57.6669387Z",
+ "endTime": "2022-07-25T16:24:57.7293727Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a/snapshotPolicies/sdk-py-tests-snapshot-policy-1"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f86329b4-d55d-4a60-b6ae-dbd0dd25e589?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/099cd9fe-540d-4267-882d-5fcc128599d0?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -578,7 +579,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:04:32 GMT",
+ "Date": "Mon, 25 Jul 2022 16:25:27 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -586,19 +587,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ac39e194-f633-47cd-b007-72ea9c4ce9ae",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T160432Z:ac39e194-f633-47cd-b007-72ea9c4ce9ae",
+ "x-ms-correlation-request-id": "2a428a0c-c8a0-4497-a9a9-55d5bdc3f797",
+ "x-ms-ratelimit-remaining-subscription-reads": "11964",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162528Z:2a428a0c-c8a0-4497-a9a9-55d5bdc3f797",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-snapshot-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T16%3A04%3A01.7060509Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A24%3A57.7353915Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T16:04:01.3752222Z"
+ "CreatedOnDate": "2022-07-25T16:24:57.3317364Z"
},
"properties": {
"enabled": false,
@@ -618,51 +619,51 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T16:04:00.2411387Z",
+ "createdAt": "2022-07-25T16:24:55.6877334Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T16:04:01.5380282Z"
+ "lastModifiedAt": "2022-07-25T16:24:57.5173613Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/68bb935d-af62-4e39-b50b-008d3f8f1493?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5816a527-3140-48ac-8208-2585bba56e06?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 16:04:32 GMT",
+ "Date": "Mon, 25 Jul 2022 16:25:28 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/68bb935d-af62-4e39-b50b-008d3f8f1493?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5816a527-3140-48ac-8208-2585bba56e06?api-version=2022-03-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": "5506ab3e-3844-404f-8834-58f48fb5fd58",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T160433Z:5506ab3e-3844-404f-8834-58f48fb5fd58",
+ "x-ms-correlation-request-id": "ee2aca19-05bd-49ab-b82f-45157ed9d7d1",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162529Z:ee2aca19-05bd-49ab-b82f-45157ed9d7d1",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/68bb935d-af62-4e39-b50b-008d3f8f1493?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5816a527-3140-48ac-8208-2585bba56e06?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -670,7 +671,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:05:03 GMT",
+ "Date": "Mon, 25 Jul 2022 16:25:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -678,31 +679,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "283009d0-e731-42fb-aced-d8d2d0e73a0a",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T160503Z:283009d0-e731-42fb-aced-d8d2d0e73a0a",
+ "x-ms-correlation-request-id": "d678e420-0969-4f7c-9027-0970119a4055",
+ "x-ms-ratelimit-remaining-subscription-reads": "11963",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162559Z:d678e420-0969-4f7c-9027-0970119a4055",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/68bb935d-af62-4e39-b50b-008d3f8f1493",
- "name": "68bb935d-af62-4e39-b50b-008d3f8f1493",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5816a527-3140-48ac-8208-2585bba56e06",
+ "name": "5816a527-3140-48ac-8208-2585bba56e06",
"status": "Succeeded",
- "startTime": "2022-05-23T16:04:32.8186814Z",
- "endTime": "2022-05-23T16:04:32.8499548Z",
+ "startTime": "2022-07-25T16:25:28.958362Z",
+ "endTime": "2022-07-25T16:25:28.9896296Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a/snapshotPolicies/sdk-py-tests-snapshot-policy-1"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/68bb935d-af62-4e39-b50b-008d3f8f1493?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5816a527-3140-48ac-8208-2585bba56e06?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -710,7 +711,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:05:03 GMT",
+ "Date": "Mon, 25 Jul 2022 16:25:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -718,19 +719,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "95cee9c1-b016-4b5c-b4f2-7ff41ae343d0",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T160503Z:95cee9c1-b016-4b5c-b4f2-7ff41ae343d0",
+ "x-ms-correlation-request-id": "d32b0b33-1ce6-4a45-9bea-3adda6569b27",
+ "x-ms-ratelimit-remaining-subscription-reads": "11962",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162559Z:d32b0b33-1ce6-4a45-9bea-3adda6569b27",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-snapshot-policy-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T16%3A04%3A32.8115637Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A25%3A28.9412122Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T16:04:01.3752222Z"
+ "CreatedOnDate": "2022-07-25T16:24:57.3317364Z"
},
"properties": {
"enabled": false,
@@ -750,82 +751,82 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T16:04:00.2411387Z",
+ "createdAt": "2022-07-25T16:24:55.6877334Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T16:04:01.5380282Z"
+ "lastModifiedAt": "2022-07-25T16:24:57.5173613Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a/snapshotPolicies/sdk-py-tests-snapshot-policy-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "291",
+ "Content-Length": "298",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:05:08 GMT",
+ "Date": "Mon, 25 Jul 2022 16:26:04 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fcbf2b25-9163-45e8-aa26-4fbc28ef585f",
+ "x-ms-correlation-request-id": "4ed35c8a-fe21-41e3-aa81-2191e81d1179",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T160509Z:fcbf2b25-9163-45e8-aa26-4fbc28ef585f"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162604Z:4ed35c8a-fe21-41e3-aa81-2191e81d1179"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/snapshotPolicies/sdk-py-tests-snapshot-policy-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "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\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/696844b8-b2c6-436f-b773-64297f8ff052?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/95f7bd5a-a8b4-4f0a-ae23-7cf12d0d54f6?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 23 May 2022 16:05:09 GMT",
+ "Date": "Mon, 25 Jul 2022 16:26:05 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/696844b8-b2c6-436f-b773-64297f8ff052?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/95f7bd5a-a8b4-4f0a-ae23-7cf12d0d54f6?api-version=2022-03-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": "59e3d42f-d9ca-4c96-b16c-7e512e104788",
- "x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T160509Z:59e3d42f-d9ca-4c96-b16c-7e512e104788",
+ "x-ms-correlation-request-id": "8587a054-81a1-46be-a64c-fc305b8f6612",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162605Z:8587a054-81a1-46be-a64c-fc305b8f6612",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/696844b8-b2c6-436f-b773-64297f8ff052?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/95f7bd5a-a8b4-4f0a-ae23-7cf12d0d54f6?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -833,7 +834,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:05:39 GMT",
+ "Date": "Mon, 25 Jul 2022 16:26:35 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -841,31 +842,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "843e46f7-2455-4a89-bd34-53adabe079b0",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T160539Z:843e46f7-2455-4a89-bd34-53adabe079b0",
+ "x-ms-correlation-request-id": "35bf7c05-2619-4df9-b759-07aaee3d5ea1",
+ "x-ms-ratelimit-remaining-subscription-reads": "11960",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162635Z:35bf7c05-2619-4df9-b759-07aaee3d5ea1",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/696844b8-b2c6-436f-b773-64297f8ff052",
- "name": "696844b8-b2c6-436f-b773-64297f8ff052",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/95f7bd5a-a8b4-4f0a-ae23-7cf12d0d54f6",
+ "name": "95f7bd5a-a8b4-4f0a-ae23-7cf12d0d54f6",
"status": "Succeeded",
- "startTime": "2022-05-23T16:05:09.5793802Z",
- "endTime": "2022-05-23T16:05:09.6106477Z",
+ "startTime": "2022-07-25T16:26:05.5162764Z",
+ "endTime": "2022-07-25T16:26:05.578779Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/696844b8-b2c6-436f-b773-64297f8ff052?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/95f7bd5a-a8b4-4f0a-ae23-7cf12d0d54f6?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -873,7 +874,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:05:39 GMT",
+ "Date": "Mon, 25 Jul 2022 16:26:35 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -881,19 +882,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7ad38dcd-1d61-4e47-9bb0-c1e96f6bb54b",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T160540Z:7ad38dcd-1d61-4e47-9bb0-c1e96f6bb54b",
+ "x-ms-correlation-request-id": "5d0515b0-a6a3-435a-af77-cc24191fbb32",
+ "x-ms-ratelimit-remaining-subscription-reads": "11959",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162636Z:5d0515b0-a6a3-435a-af77-cc24191fbb32",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-23T16%3A05%3A09.5861225Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T16%3A26%3A05.5170789Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-23T16:03:22.0856262Z"
+ "CreatedOnDate": "2022-07-25T16:24:19.9783884Z"
},
"properties": {
"encryption": {
@@ -904,41 +905,41 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-23T16:03:25.2564214Z",
+ "createdAt": "2022-07-25T16:24:22.0021375Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-23T16:03:25.2564214Z"
+ "lastModifiedAt": "2022-07-25T16:24:22.0021375Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 23 May 2022 16:05:39 GMT",
+ "Date": "Mon, 25 Jul 2022 16:26:36 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6cc9d033-2469-4e35-9ba6-433b330302c7",
+ "x-ms-correlation-request-id": "330295f8-d700-4789-bdc6-35265b386309",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220523T160540Z:6cc9d033-2469-4e35-9ba6-433b330302c7"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T162636Z:330295f8-d700-4789-bdc6-35265b386309"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
}
}
}
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 f971f6aeb2aa..af8d4fb5c2d2 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 30 May 2022 14:46:50 GMT",
+ "Date": "Mon, 25 Jul 2022 13:04:32 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.12821.9 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 30 May 2022 14:46:50 GMT",
+ "Date": "Mon, 25 Jul 2022 13:04:32 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.12794.7 - NEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13201.7 - WEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "977bd0b2-f306-4dbc-8a26-df75a3602f5b",
+ "client-request-id": "48883795-35cc-47fe-81bd-812c5a4c6c50",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "977bd0b2-f306-4dbc-8a26-df75a3602f5b",
+ "client-request-id": "48883795-35cc-47fe-81bd-812c5a4c6c50",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:46:50 GMT",
+ "Date": "Mon, 25 Jul 2022 13:04:33 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12821.9 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - WEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,45 +213,585 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "93",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2",
+ "properties": {
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ }
+ }
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d81370d4-1dc0-4fcf-9aaa-40826be573c3?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/589474be-540d-48dd-8a5f-911eaedf888e?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Length": "697",
+ "Content-Length": "744",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:47:00 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-30T14%3A46%3A59.8401423Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 13:04:42 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Retry-After": "3",
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a93ffcc7-671e-4e97-8dde-ef9bcee4fcad",
+ "x-ms-arm-service-request-id": "3ffc79e6-42a7-4e01-a564-f2e5eecd1240",
+ "x-ms-correlation-request-id": "021ac8f5-3588-4985-b516-d5584393a6da",
"x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T144700Z:a93ffcc7-671e-4e97-8dde-ef9bcee4fcad",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T130442Z:021ac8f5-3588-4985-b516-d5584393a6da"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-6b727b0",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0",
+ "etag": "W/\u0022751dcfd9-f7e9-4201-91f5-f81e007d2a03\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-25T13:04:36.6711785Z"
+ },
+ "properties": {
+ "provisioningState": "Updating",
+ "resourceGuid": "02614d18-26ab-4ed1-96cb-1740a245b2cd",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/589474be-540d-48dd-8a5f-911eaedf888e?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 13:04:45 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": "deefa899-d6e7-419e-b7d8-8537bf704526",
+ "x-ms-correlation-request-id": "feb9098a-c347-4a76-bde6-2d2f71cfb790",
+ "x-ms-ratelimit-remaining-subscription-reads": "11999",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T130446Z:feb9098a-c347-4a76-bde6-2d2f71cfb790"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 13:04:45 GMT",
+ "ETag": "W/\u00222d8c7174-5184-46cd-9093-abf10a3c57be\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": "8c883697-08fc-416f-a6b3-522264d575d0",
+ "x-ms-correlation-request-id": "bb83bdf5-43f3-4bf6-ad6e-f7f580ac5ee8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T130446Z:bb83bdf5-43f3-4bf6-ad6e-f7f580ac5ee8"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-6b727b0",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0",
+ "etag": "W/\u00222d8c7174-5184-46cd-9093-abf10a3c57be\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-25T13:04:36.6711785Z"
+ },
+ "properties": {
+ "provisioningState": "Succeeded",
+ "resourceGuid": "02614d18-26ab-4ed1-96cb-1740a245b2cd",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "151",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "RequestBody": {
+ "properties": {
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "properties": {
+ "serviceName": "Microsoft.Netapp/volumes"
+ }
+ }
+ ]
+ }
+ },
+ "StatusCode": 201,
+ "ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/046929c7-eeec-4e61-95a0-039f10afa381?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "1316",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 13:04:46 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Retry-After": "3",
+ "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": "80cada55-fdb8-4f7a-b1d4-e6259cce5b90",
+ "x-ms-correlation-request-id": "129b6ae1-583b-4f58-9d27-3da8cdde9f65",
+ "x-ms-ratelimit-remaining-subscription-writes": "1198",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T130447Z:129b6ae1-583b-4f58-9d27-3da8cdde9f65"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0/subnets/default",
+ "etag": "W/\u00228f70af20-3e7c-4e22-87c9-bcc256c531db\u0022",
+ "properties": {
+ "provisioningState": "Updating",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u00228f70af20-3e7c-4e22-87c9-bcc256c531db\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/046929c7-eeec-4e61-95a0-039f10afa381?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 13:04:49 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": "1a901a94-b439-40c1-9294-7afd216d6d3c",
+ "x-ms-correlation-request-id": "ee54f049-2b39-45cb-a9a4-69d86c63cb43",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T130450Z:ee54f049-2b39-45cb-a9a4-69d86c63cb43"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 13:04:50 GMT",
+ "ETag": "W/\u00226ec2c6df-909c-474b-91f9-003660b87ef2\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": "463a3717-70c8-4f3a-9d03-e9f84bfa25ab",
+ "x-ms-correlation-request-id": "4b032de6-6f27-4d88-9c3a-dea31b285b81",
+ "x-ms-ratelimit-remaining-subscription-reads": "11996",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T130450Z:4b032de6-6f27-4d88-9c3a-dea31b285b81"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0/subnets/default",
+ "etag": "W/\u00226ec2c6df-909c-474b-91f9-003660b87ef2\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u00226ec2c6df-909c-474b-91f9-003660b87ef2\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "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.11.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": "Mon, 25 Jul 2022 13:04: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.13315.8 - WEULR2 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.11.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": "Mon, 25 Jul 2022 13:04: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.13315.8 - WEULR1 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": "d54a0bae-e343-4582-9ecf-8b9e24bd02cc",
+ "Connection": "keep-alive",
+ "Content-Length": "281",
+ "Content-Type": "application/x-www-form-urlencoded",
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.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.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
+ },
+ "RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "d54a0bae-e343-4582-9ecf-8b9e24bd02cc",
+ "Content-Length": "114",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 13:04:51 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.13315.8 - WEULR2 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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0?api-version=2022-03-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "23",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/8dba12a8-fba7-460d-a9b5-db1453907388?api-version=2022-03-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "698",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 13:04:54 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T13%3A04%3A54.3247691Z\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": "9af78f5f-788d-45df-ab0b-a02649d28d18",
+ "x-ms-ratelimit-remaining-subscription-writes": "1197",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T130455Z:9af78f5f-788d-45df-ab0b-a02649d28d18",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-30T14%3A46%3A59.8401423Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A04%3A54.3247691Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-30T14:46:54.9010921Z"
+ "CreatedOnDate": "2022-07-25T13:04:52.2212760Z"
},
"properties": {
"provisioningState": "Creating"
@@ -258,21 +799,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-30T14:46:59.025781Z",
+ "createdAt": "2022-07-25T13:04:53.309446Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-30T14:46:59.025781Z"
+ "lastModifiedAt": "2022-07-25T13:04:53.309446Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d81370d4-1dc0-4fcf-9aaa-40826be573c3?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8dba12a8-fba7-460d-a9b5-db1453907388?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +821,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:47:30 GMT",
+ "Date": "Mon, 25 Jul 2022 13:05:25 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +829,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "53ca591d-eca6-4752-9a1d-8485d1aa979d",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T144731Z:53ca591d-eca6-4752-9a1d-8485d1aa979d",
+ "x-ms-correlation-request-id": "29962fce-b853-48cf-9138-a47cc4249427",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T130525Z:29962fce-b853-48cf-9138-a47cc4249427",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d81370d4-1dc0-4fcf-9aaa-40826be573c3",
- "name": "d81370d4-1dc0-4fcf-9aaa-40826be573c3",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8dba12a8-fba7-460d-a9b5-db1453907388",
+ "name": "8dba12a8-fba7-460d-a9b5-db1453907388",
"status": "Succeeded",
- "startTime": "2022-05-30T14:46:59.8352919Z",
- "endTime": "2022-05-30T14:46:59.8665697Z",
+ "startTime": "2022-07-25T13:04:54.327268Z",
+ "endTime": "2022-07-25T13:04:54.3741422Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +861,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:47:30 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-30T14%3A46%3A59.8705876Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 13:05:26 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T13%3A04%3A54.3779858Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,35 +870,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7a330cef-df7d-4d5d-af25-69e2917a4f92",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T144731Z:7a330cef-df7d-4d5d-af25-69e2917a4f92",
+ "x-ms-correlation-request-id": "29ff1a4e-3618-44a9-bd45-b983cd02d97d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T130526Z:29ff1a4e-3618-44a9-bd45-b983cd02d97d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-30T14%3A46%3A59.8705876Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A04%3A54.3779858Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-30T14:46:54.9010921Z"
+ "CreatedOnDate": "2022-07-25T13:04:52.2212760Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -370,26 +911,26 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-30T14:46:59.025781Z",
+ "createdAt": "2022-07-25T13:04:53.309446Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-30T14:46:59.025781Z"
+ "lastModifiedAt": "2022-07-25T13:04:53.309446Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "150",
+ "Content-Length": "138",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"size": 4398046511104,
"serviceLevel": "Premium",
@@ -399,30 +940,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5a2a3237-d54e-4492-812f-d07870d58799?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e379b6a5-71e1-4acc-9b88-d68b211a95d7?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "917",
+ "Content-Length": "916",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:47:35 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-30T14%3A47%3A34.1529695Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 13:05:29 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T13%3A05%3A28.7277357Z\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": "d3edb3fe-48cd-48e4-9dd1-126baec24690",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T144735Z:d3edb3fe-48cd-48e4-9dd1-126baec24690",
+ "x-ms-correlation-request-id": "97126d3b-e8dc-4371-964d-627fdd95ef9d",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T130529Z:97126d3b-e8dc-4371-964d-627fdd95ef9d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-30T14%3A47%3A34.1529695Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A05%3A28.7277357Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-30T14:47:31.8841301Z"
+ "CreatedOnDate": "2022-07-25T13:05:26.8269450Z"
},
"properties": {
"serviceLevel": "Premium",
@@ -436,21 +977,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-30T14:47:33.7433749Z",
+ "createdAt": "2022-07-25T13:05:28.5194566Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-30T14:47:33.7433749Z"
+ "lastModifiedAt": "2022-07-25T13:05:28.5194566Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5a2a3237-d54e-4492-812f-d07870d58799?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e379b6a5-71e1-4acc-9b88-d68b211a95d7?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -458,7 +999,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:48:05 GMT",
+ "Date": "Mon, 25 Jul 2022 13:05:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -466,31 +1007,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a85e7867-5ffa-420d-804e-43cc5fc92374",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T144805Z:a85e7867-5ffa-420d-804e-43cc5fc92374",
+ "x-ms-correlation-request-id": "c0e6efde-a7e6-4209-9c58-86f1ba71f17e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T130600Z:c0e6efde-a7e6-4209-9c58-86f1ba71f17e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5a2a3237-d54e-4492-812f-d07870d58799",
- "name": "5a2a3237-d54e-4492-812f-d07870d58799",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e379b6a5-71e1-4acc-9b88-d68b211a95d7",
+ "name": "e379b6a5-71e1-4acc-9b88-d68b211a95d7",
"status": "Succeeded",
- "startTime": "2022-05-30T14:47:34.1547562Z",
- "endTime": "2022-05-30T14:47:34.7016749Z",
+ "startTime": "2022-07-25T13:05:28.7273535Z",
+ "endTime": "2022-07-25T13:05:28.9617457Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -498,8 +1039,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:48:05 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-30T14%3A47%3A34.7015386Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 13:05:59 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T13%3A05%3A28.9609182Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -507,22 +1048,22 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "627fb307-69c6-45a9-a76d-8777aa3387e9",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T144806Z:627fb307-69c6-45a9-a76d-8777aa3387e9",
+ "x-ms-correlation-request-id": "f4b14102-fece-4224-a1a3-5f190c4b5ccb",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T130600Z:f4b14102-fece-4224-a1a3-5f190c4b5ccb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-30T14%3A47%3A34.7015386Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A05%3A28.9609182Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-30T14:47:31.8841301Z"
+ "CreatedOnDate": "2022-07-25T13:05:26.8269450Z"
},
"properties": {
- "poolId": "1b915326-557b-ee8a-5eb0-b4ef8f84a771",
+ "poolId": "f8aae0ae-3ac3-e689-77a0-701d1c5a73ec",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
@@ -531,38 +1072,30 @@
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-30T14:47:33.7433749Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-30T14:47:33.7433749Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-6b727b0?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "799",
+ "Content-Length": "808",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-6b727b0",
"serviceLevel": "Premium",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -582,39 +1115,39 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f746f69-e14a-4e23-8bcd-3847c961c200?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "1566",
+ "Content-Length": "1600",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:48:10 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-30T14%3A48%3A10.0468671Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 13:06:02 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T13%3A06%3A02.4940773Z\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": "8c97f030-a8c1-41af-b3e2-e7f6ef386f0c",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T144810Z:8c97f030-a8c1-41af-b3e2-e7f6ef386f0c",
+ "x-ms-correlation-request-id": "dfb64a50-5f02-4ede-ac0c-628090fa9cd2",
+ "x-ms-ratelimit-remaining-subscription-writes": "1195",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T130603Z:dfb64a50-5f02-4ede-ac0c-628090fa9cd2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-30T14%3A48%3A10.0468671Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A06%3A02.4940773Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-30T14:48:06.3739878Z"
+ "CreatedOnDate": "2022-07-25T13:06:00.8224934Z"
},
"properties": {
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-6b727b0",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -636,21 +1169,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-30T14:48:07.6527868Z",
+ "createdAt": "2022-07-25T13:06:02.1682272Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-30T14:48:07.6527868Z"
+ "lastModifiedAt": "2022-07-25T13:06:02.1682272Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f746f69-e14a-4e23-8bcd-3847c961c200?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -658,7 +1191,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:48:40 GMT",
+ "Date": "Mon, 25 Jul 2022 13:06:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -666,31 +1199,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "097b250e-649f-4dbb-92b2-33eeba6d3d12",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T144841Z:097b250e-649f-4dbb-92b2-33eeba6d3d12",
+ "x-ms-correlation-request-id": "f34b7633-c380-4edb-b102-bd33c5fea5fc",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T130633Z:f34b7633-c380-4edb-b102-bd33c5fea5fc",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f",
- "name": "2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f746f69-e14a-4e23-8bcd-3847c961c200",
+ "name": "8f746f69-e14a-4e23-8bcd-3847c961c200",
"status": "Creating",
- "startTime": "2022-05-30T14:48:10.0431385Z",
+ "startTime": "2022-07-25T13:06:02.496504Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f746f69-e14a-4e23-8bcd-3847c961c200?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -698,7 +1231,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:49:10 GMT",
+ "Date": "Mon, 25 Jul 2022 13:07:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -706,31 +1239,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "db8080e3-c9eb-4d57-a017-05162317a36d",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T144911Z:db8080e3-c9eb-4d57-a017-05162317a36d",
+ "x-ms-correlation-request-id": "d102c7c0-b087-43a1-93dc-17906a013210",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T130704Z:d102c7c0-b087-43a1-93dc-17906a013210",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f",
- "name": "2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f746f69-e14a-4e23-8bcd-3847c961c200",
+ "name": "8f746f69-e14a-4e23-8bcd-3847c961c200",
"status": "Creating",
- "startTime": "2022-05-30T14:48:10.0431385Z",
+ "startTime": "2022-07-25T13:06:02.496504Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f746f69-e14a-4e23-8bcd-3847c961c200?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -738,7 +1271,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:49:40 GMT",
+ "Date": "Mon, 25 Jul 2022 13:07:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -746,31 +1279,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a29142ad-700c-4ff7-a055-8419c06250fb",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T144941Z:a29142ad-700c-4ff7-a055-8419c06250fb",
+ "x-ms-correlation-request-id": "729bbbda-cd6e-497c-80d6-fbb981f3a0d3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T130734Z:729bbbda-cd6e-497c-80d6-fbb981f3a0d3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f",
- "name": "2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f746f69-e14a-4e23-8bcd-3847c961c200",
+ "name": "8f746f69-e14a-4e23-8bcd-3847c961c200",
"status": "Creating",
- "startTime": "2022-05-30T14:48:10.0431385Z",
+ "startTime": "2022-07-25T13:06:02.496504Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f746f69-e14a-4e23-8bcd-3847c961c200?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -778,7 +1311,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:50:11 GMT",
+ "Date": "Mon, 25 Jul 2022 13:08:04 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -786,31 +1319,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5eae8dfe-8201-4bdc-93d3-4148035a3c4c",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T145011Z:5eae8dfe-8201-4bdc-93d3-4148035a3c4c",
+ "x-ms-correlation-request-id": "780ec375-bfe1-439a-a1b1-81a539ca4b8d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T130804Z:780ec375-bfe1-439a-a1b1-81a539ca4b8d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f",
- "name": "2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f746f69-e14a-4e23-8bcd-3847c961c200",
+ "name": "8f746f69-e14a-4e23-8bcd-3847c961c200",
"status": "Creating",
- "startTime": "2022-05-30T14:48:10.0431385Z",
+ "startTime": "2022-07-25T13:06:02.496504Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f746f69-e14a-4e23-8bcd-3847c961c200?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -818,7 +1351,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:50:41 GMT",
+ "Date": "Mon, 25 Jul 2022 13:08:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -826,31 +1359,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a10d8120-0a13-4cb3-ac57-bfcb4ab8fb77",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T145042Z:a10d8120-0a13-4cb3-ac57-bfcb4ab8fb77",
+ "x-ms-correlation-request-id": "0afd2cc4-694b-40ec-a139-7107e6d211b0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T130835Z:0afd2cc4-694b-40ec-a139-7107e6d211b0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f",
- "name": "2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f746f69-e14a-4e23-8bcd-3847c961c200",
+ "name": "8f746f69-e14a-4e23-8bcd-3847c961c200",
"status": "Creating",
- "startTime": "2022-05-30T14:48:10.0431385Z",
+ "startTime": "2022-07-25T13:06:02.496504Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f746f69-e14a-4e23-8bcd-3847c961c200?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -858,7 +1391,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:51:11 GMT",
+ "Date": "Mon, 25 Jul 2022 13:09:04 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -866,31 +1399,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "26a02fbe-5208-4b1f-86ae-92820ed098ea",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T145112Z:26a02fbe-5208-4b1f-86ae-92820ed098ea",
+ "x-ms-correlation-request-id": "b3a12578-481c-48ed-b9a2-6eda5dea105d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T130905Z:b3a12578-481c-48ed-b9a2-6eda5dea105d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f",
- "name": "2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f746f69-e14a-4e23-8bcd-3847c961c200",
+ "name": "8f746f69-e14a-4e23-8bcd-3847c961c200",
"status": "Creating",
- "startTime": "2022-05-30T14:48:10.0431385Z",
+ "startTime": "2022-07-25T13:06:02.496504Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f746f69-e14a-4e23-8bcd-3847c961c200?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -898,7 +1431,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:51:41 GMT",
+ "Date": "Mon, 25 Jul 2022 13:09:35 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -906,31 +1439,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1a4441e5-7bcf-4244-97b4-453583c7c79e",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T145142Z:1a4441e5-7bcf-4244-97b4-453583c7c79e",
+ "x-ms-correlation-request-id": "ec755bbb-057d-4f02-9e26-0b101c93a9f8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T130935Z:ec755bbb-057d-4f02-9e26-0b101c93a9f8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f",
- "name": "2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f746f69-e14a-4e23-8bcd-3847c961c200",
+ "name": "8f746f69-e14a-4e23-8bcd-3847c961c200",
"status": "Creating",
- "startTime": "2022-05-30T14:48:10.0431385Z",
+ "startTime": "2022-07-25T13:06:02.496504Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f746f69-e14a-4e23-8bcd-3847c961c200?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -938,7 +1471,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:52:13 GMT",
+ "Date": "Mon, 25 Jul 2022 13:10:06 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -946,31 +1479,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "30badbad-3953-46a9-a968-28d788e885e4",
- "x-ms-ratelimit-remaining-subscription-reads": "11988",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T145213Z:30badbad-3953-46a9-a968-28d788e885e4",
+ "x-ms-correlation-request-id": "b12f02b0-9711-4020-871b-8f3056db8db6",
+ "x-ms-ratelimit-remaining-subscription-reads": "11984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131006Z:b12f02b0-9711-4020-871b-8f3056db8db6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f",
- "name": "2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f746f69-e14a-4e23-8bcd-3847c961c200",
+ "name": "8f746f69-e14a-4e23-8bcd-3847c961c200",
"status": "Creating",
- "startTime": "2022-05-30T14:48:10.0431385Z",
+ "startTime": "2022-07-25T13:06:02.496504Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f746f69-e14a-4e23-8bcd-3847c961c200?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -978,7 +1511,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:52:43 GMT",
+ "Date": "Mon, 25 Jul 2022 13:10:36 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -986,31 +1519,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6d89b6de-b7c0-4151-9d5f-f3f89aef3109",
- "x-ms-ratelimit-remaining-subscription-reads": "11987",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T145243Z:6d89b6de-b7c0-4151-9d5f-f3f89aef3109",
+ "x-ms-correlation-request-id": "fdb36829-8101-48ae-bc18-2c62de6fc995",
+ "x-ms-ratelimit-remaining-subscription-reads": "11983",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131036Z:fdb36829-8101-48ae-bc18-2c62de6fc995",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f",
- "name": "2e19ce5f-1a0d-46d7-9c19-7bb793e85a1f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f746f69-e14a-4e23-8bcd-3847c961c200",
+ "name": "8f746f69-e14a-4e23-8bcd-3847c961c200",
"status": "Succeeded",
- "startTime": "2022-05-30T14:48:10.0431385Z",
- "endTime": "2022-05-30T14:52:16.5652655Z",
+ "startTime": "2022-07-25T13:06:02.496504Z",
+ "endTime": "2022-07-25T13:10:06.9893446Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-6b727b0?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1018,8 +1551,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:52:43 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-30T14%3A52%3A16.5562318Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 13:10:36 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T13%3A10%3A06.9805262Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1027,24 +1560,24 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ccc7b7a8-fd10-4555-a568-0ea395f668c6",
- "x-ms-ratelimit-remaining-subscription-reads": "11986",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T145243Z:ccc7b7a8-fd10-4555-a568-0ea395f668c6",
+ "x-ms-correlation-request-id": "b2fbf67f-e846-4152-96fe-0e06412369b2",
+ "x-ms-ratelimit-remaining-subscription-reads": "11982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131037Z:b2fbf67f-e846-4152-96fe-0e06412369b2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-30T14%3A52%3A16.5562318Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A10%3A06.9805262Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-30T14:48:06.3739878Z"
+ "CreatedOnDate": "2022-07-25T13:06:00.8224934Z"
},
"properties": {
- "fileSystemId": "fbcaa819-05bc-a54f-1486-f9db29ba2715",
+ "fileSystemId": "eecc28ba-8d73-76f6-2812-9850f5ca1342",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-6b727b0",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1070,10 +1603,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_e93911a3",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_96216a52",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1085,9 +1618,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "fbcaa819-05bc-a54f-1486-f9db29ba2715",
- "fileSystemId": "fbcaa819-05bc-a54f-1486-f9db29ba2715",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "eecc28ba-8d73-76f6-2812-9850f5ca1342",
+ "fileSystemId": "eecc28ba-8d73-76f6-2812-9850f5ca1342",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1099,21 +1632,12 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Enabled",
"maximumNumberOfFiles": 100000000,
- "encrypted": true,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-30T14:48:07.6527868Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-30T14:48:07.6527868Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
@@ -1121,7 +1645,7 @@
"Connection": "keep-alive",
"Content-Length": "59",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
"properties": {
@@ -1131,25 +1655,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3d309f5f-dfd0-4f79-ae7d-3a5dac47c4c5?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69b98a15-4232-4820-83be-8d9923654e06?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "511",
+ "Content-Length": "536",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:52:43 GMT",
+ "Date": "Mon, 25 Jul 2022 13:10:37 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3d309f5f-dfd0-4f79-ae7d-3a5dac47c4c5?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69b98a15-4232-4820-83be-8d9923654e06?api-version=2022-03-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": "1fafd307-77dd-4e7b-8e92-e241492f2fcf",
- "x-ms-ratelimit-remaining-subscription-writes": "1196",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T145244Z:1fafd307-77dd-4e7b-8e92-e241492f2fcf",
+ "x-ms-correlation-request-id": "e5ff3922-e00d-4b95-899f-52c4dd198528",
+ "x-ms-ratelimit-remaining-subscription-writes": "1194",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131038Z:e5ff3922-e00d-4b95-899f-52c4dd198528",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-subvolume-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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",
+ "name": "sdk-py-tests-acc-1-6b727b0/sdk-py-tests-pool-1/sdk-py-tests-vol-3-6b727b0/sdk-py-tests-subvolume-1",
"type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes",
"properties": {
"path": "/sub_vol_1.txt",
@@ -1159,13 +1683,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3d309f5f-dfd0-4f79-ae7d-3a5dac47c4c5?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69b98a15-4232-4820-83be-8d9923654e06?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1173,7 +1697,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:53:14 GMT",
+ "Date": "Mon, 25 Jul 2022 13:11:08 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1181,31 +1705,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5c5d9199-4f5d-44eb-b864-c1b600e4f3b6",
- "x-ms-ratelimit-remaining-subscription-reads": "11985",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T145314Z:5c5d9199-4f5d-44eb-b864-c1b600e4f3b6",
+ "x-ms-correlation-request-id": "1a9cddde-39f6-4148-8d13-fe411a1ef19c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11981",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131108Z:1a9cddde-39f6-4148-8d13-fe411a1ef19c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3d309f5f-dfd0-4f79-ae7d-3a5dac47c4c5",
- "name": "3d309f5f-dfd0-4f79-ae7d-3a5dac47c4c5",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69b98a15-4232-4820-83be-8d9923654e06",
+ "name": "69b98a15-4232-4820-83be-8d9923654e06",
"status": "Succeeded",
- "startTime": "2022-05-30T14:52:44.0647636Z",
- "endTime": "2022-05-30T14:52:58.9080858Z",
+ "startTime": "2022-07-25T13:10:38.1042078Z",
+ "endTime": "2022-07-25T13:10:39.151102Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1213,7 +1737,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:53:14 GMT",
+ "Date": "Mon, 25 Jul 2022 13:11:09 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1221,14 +1745,14 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "18002dd9-bf1f-48d4-911f-6a7ff4a39297",
- "x-ms-ratelimit-remaining-subscription-reads": "11984",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T145315Z:18002dd9-bf1f-48d4-911f-6a7ff4a39297",
+ "x-ms-correlation-request-id": "18ce079d-b04d-40ce-949d-8b427b6020fe",
+ "x-ms-ratelimit-remaining-subscription-reads": "11980",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131110Z:18ce079d-b04d-40ce-949d-8b427b6020fe",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-subvolume-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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",
+ "name": "sdk-py-tests-acc-1-6b727b0/sdk-py-tests-pool-1/sdk-py-tests-vol-3-6b727b0/sdk-py-tests-subvolume-1",
"type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes",
"properties": {
"path": "/sub_vol_1.txt",
@@ -1237,7 +1761,7 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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?api-version=2022-03-01",
"RequestMethod": "PATCH",
"RequestHeaders": {
"Accept": "application/json",
@@ -1245,7 +1769,7 @@
"Connection": "keep-alive",
"Content-Length": "64",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
"properties": {
@@ -1255,25 +1779,25 @@
},
"StatusCode": 202,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/38d168e2-0780-4e7e-ab5f-46fa1ee986ec?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7fea038c-af8d-45c6-a945-bf7ba63c0e36?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "516",
+ "Content-Length": "541",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:53:15 GMT",
+ "Date": "Mon, 25 Jul 2022 13:11:10 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/38d168e2-0780-4e7e-ab5f-46fa1ee986ec?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7fea038c-af8d-45c6-a945-bf7ba63c0e36?api-version=2022-03-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": "4ad162cf-feed-4281-8620-be16a81503b5",
- "x-ms-ratelimit-remaining-subscription-writes": "1195",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T145315Z:4ad162cf-feed-4281-8620-be16a81503b5",
+ "x-ms-correlation-request-id": "f2e25473-b297-454b-97b5-063fd0f393f0",
+ "x-ms-ratelimit-remaining-subscription-writes": "1193",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131110Z:f2e25473-b297-454b-97b5-063fd0f393f0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-subvolume-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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",
+ "name": "sdk-py-tests-acc-1-6b727b0/sdk-py-tests-pool-1/sdk-py-tests-vol-3-6b727b0/sdk-py-tests-subvolume-1",
"type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes",
"properties": {
"path": "/sub_vol_update.txt",
@@ -1283,13 +1807,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/38d168e2-0780-4e7e-ab5f-46fa1ee986ec?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7fea038c-af8d-45c6-a945-bf7ba63c0e36?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1297,7 +1821,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:53:45 GMT",
+ "Date": "Mon, 25 Jul 2022 13:11:40 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1305,31 +1829,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "56ba5b42-60ea-4e2c-adf2-48e1b92c9ca1",
- "x-ms-ratelimit-remaining-subscription-reads": "11983",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T145346Z:56ba5b42-60ea-4e2c-adf2-48e1b92c9ca1",
+ "x-ms-correlation-request-id": "ea5ea87d-40ef-46db-b2d4-3275a43d88e3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11979",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131141Z:ea5ea87d-40ef-46db-b2d4-3275a43d88e3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/38d168e2-0780-4e7e-ab5f-46fa1ee986ec",
- "name": "38d168e2-0780-4e7e-ab5f-46fa1ee986ec",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7fea038c-af8d-45c6-a945-bf7ba63c0e36",
+ "name": "7fea038c-af8d-45c6-a945-bf7ba63c0e36",
"status": "Succeeded",
- "startTime": "2022-05-30T14:53:15.6666871Z",
- "endTime": "2022-05-30T14:53:30.705885Z",
+ "startTime": "2022-07-25T13:11:10.582621Z",
+ "endTime": "2022-07-25T13:11:11.5358327Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1337,7 +1861,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:53:46 GMT",
+ "Date": "Mon, 25 Jul 2022 13:11:40 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1345,14 +1869,14 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "72f7ea3c-9646-4a7e-9c24-6e6061773196",
- "x-ms-ratelimit-remaining-subscription-reads": "11982",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T145346Z:72f7ea3c-9646-4a7e-9c24-6e6061773196",
+ "x-ms-correlation-request-id": "9bb98ef9-d0bf-4672-9773-3997915a9bd3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11978",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131141Z:9bb98ef9-d0bf-4672-9773-3997915a9bd3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-subvolume-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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",
+ "name": "sdk-py-tests-acc-1-6b727b0/sdk-py-tests-pool-1/sdk-py-tests-vol-3-6b727b0/sdk-py-tests-subvolume-1",
"type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes",
"properties": {
"path": "/sub_vol_update.txt",
@@ -1361,13 +1885,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1375,7 +1899,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:53:47 GMT",
+ "Date": "Mon, 25 Jul 2022 13:11:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1383,14 +1907,14 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2d221b15-e92c-4608-a853-30c04880b080",
- "x-ms-ratelimit-remaining-subscription-reads": "11981",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T145347Z:2d221b15-e92c-4608-a853-30c04880b080",
+ "x-ms-correlation-request-id": "ed4c6d1a-86bd-4e30-9086-a774f1322580",
+ "x-ms-ratelimit-remaining-subscription-reads": "11977",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131142Z:ed4c6d1a-86bd-4e30-9086-a774f1322580",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-subvolume-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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",
+ "name": "sdk-py-tests-acc-1-6b727b0/sdk-py-tests-pool-1/sdk-py-tests-vol-3-6b727b0/sdk-py-tests-subvolume-1",
"type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes",
"properties": {
"path": "/sub_vol_update.txt",
@@ -1399,43 +1923,43 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/49421627-319a-41b0-b7f0-0cb0f73bac26?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ffc9d8cd-2853-40e3-ac24-3b28cb8986b3?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 30 May 2022 14:53:47 GMT",
+ "Date": "Mon, 25 Jul 2022 13:11:41 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/49421627-319a-41b0-b7f0-0cb0f73bac26?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ffc9d8cd-2853-40e3-ac24-3b28cb8986b3?api-version=2022-03-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": "3279d285-a0c3-4c83-8cf6-cfc6d8e4c43f",
+ "x-ms-correlation-request-id": "10411f68-6c9b-4659-a42f-bd286a688500",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T145348Z:3279d285-a0c3-4c83-8cf6-cfc6d8e4c43f",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131142Z:10411f68-6c9b-4659-a42f-bd286a688500",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/49421627-319a-41b0-b7f0-0cb0f73bac26?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ffc9d8cd-2853-40e3-ac24-3b28cb8986b3?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1443,7 +1967,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:54:17 GMT",
+ "Date": "Mon, 25 Jul 2022 13:12:12 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1451,31 +1975,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7465dde1-d8bc-4867-86ce-7a22497385b3",
- "x-ms-ratelimit-remaining-subscription-reads": "11980",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T145418Z:7465dde1-d8bc-4867-86ce-7a22497385b3",
+ "x-ms-correlation-request-id": "3fd3dee6-f5ad-4d2c-a013-c84797320b51",
+ "x-ms-ratelimit-remaining-subscription-reads": "11976",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131213Z:3fd3dee6-f5ad-4d2c-a013-c84797320b51",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/49421627-319a-41b0-b7f0-0cb0f73bac26",
- "name": "49421627-319a-41b0-b7f0-0cb0f73bac26",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ffc9d8cd-2853-40e3-ac24-3b28cb8986b3",
+ "name": "ffc9d8cd-2853-40e3-ac24-3b28cb8986b3",
"status": "Succeeded",
- "startTime": "2022-05-30T14:53:48.135813Z",
- "endTime": "2022-05-30T14:53:58.4909499Z",
+ "startTime": "2022-07-25T13:11:42.7309535Z",
+ "endTime": "2022-07-25T13:11:43.3404362Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-6b727b0/subvolumes?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1483,7 +2007,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:54:18 GMT",
+ "Date": "Mon, 25 Jul 2022 13:12:13 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1491,9 +2015,9 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b25799e1-da84-4206-a238-256189c5366a",
- "x-ms-ratelimit-remaining-subscription-reads": "11979",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T145419Z:b25799e1-da84-4206-a238-256189c5366a",
+ "x-ms-correlation-request-id": "2ef7e31a-750f-4801-9a7d-6ff786482349",
+ "x-ms-ratelimit-remaining-subscription-reads": "11975",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131213Z:2ef7e31a-750f-4801-9a7d-6ff786482349",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -1501,43 +2025,43 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-6b727b0?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/ba2c3d6f-5b01-42fe-a680-9ad447cf11ef?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20b7e08e-142f-44ef-8862-65ac5b3967d8?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 30 May 2022 14:54:19 GMT",
+ "Date": "Mon, 25 Jul 2022 13:12:14 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ba2c3d6f-5b01-42fe-a680-9ad447cf11ef?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20b7e08e-142f-44ef-8862-65ac5b3967d8?api-version=2022-03-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": "2279b3e8-c6ad-48f1-bbb3-ecac3ab84817",
+ "x-ms-correlation-request-id": "6a0c8956-6d27-43a0-a49f-9e379e48ece3",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T145419Z:2279b3e8-c6ad-48f1-bbb3-ecac3ab84817",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131214Z:6a0c8956-6d27-43a0-a49f-9e379e48ece3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ba2c3d6f-5b01-42fe-a680-9ad447cf11ef?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20b7e08e-142f-44ef-8862-65ac5b3967d8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1545,7 +2069,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:54:49 GMT",
+ "Date": "Mon, 25 Jul 2022 13:12:44 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1553,31 +2077,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e154beb6-9374-46ab-92ef-a60b3ec09541",
- "x-ms-ratelimit-remaining-subscription-reads": "11978",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T145450Z:e154beb6-9374-46ab-92ef-a60b3ec09541",
+ "x-ms-correlation-request-id": "1fb657c0-b1ab-4b50-8148-ac43131a0590",
+ "x-ms-ratelimit-remaining-subscription-reads": "11974",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131244Z:1fb657c0-b1ab-4b50-8148-ac43131a0590",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ba2c3d6f-5b01-42fe-a680-9ad447cf11ef",
- "name": "ba2c3d6f-5b01-42fe-a680-9ad447cf11ef",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20b7e08e-142f-44ef-8862-65ac5b3967d8",
+ "name": "20b7e08e-142f-44ef-8862-65ac5b3967d8",
"status": "Deleting",
- "startTime": "2022-05-30T14:54:19.8353738Z",
+ "startTime": "2022-07-25T13:12:14.5125149Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/ba2c3d6f-5b01-42fe-a680-9ad447cf11ef?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20b7e08e-142f-44ef-8862-65ac5b3967d8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1585,7 +2109,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:55:20 GMT",
+ "Date": "Mon, 25 Jul 2022 13:13:14 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1593,31 +2117,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c4b33498-e85f-4248-96ff-190777219fd8",
- "x-ms-ratelimit-remaining-subscription-reads": "11977",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T145520Z:c4b33498-e85f-4248-96ff-190777219fd8",
+ "x-ms-correlation-request-id": "2c135c2d-02cb-44b7-b0e5-199c77e99d31",
+ "x-ms-ratelimit-remaining-subscription-reads": "11973",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131315Z:2c135c2d-02cb-44b7-b0e5-199c77e99d31",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ba2c3d6f-5b01-42fe-a680-9ad447cf11ef",
- "name": "ba2c3d6f-5b01-42fe-a680-9ad447cf11ef",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20b7e08e-142f-44ef-8862-65ac5b3967d8",
+ "name": "20b7e08e-142f-44ef-8862-65ac5b3967d8",
"status": "Deleting",
- "startTime": "2022-05-30T14:54:19.8353738Z",
+ "startTime": "2022-07-25T13:12:14.5125149Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/ba2c3d6f-5b01-42fe-a680-9ad447cf11ef?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20b7e08e-142f-44ef-8862-65ac5b3967d8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1625,7 +2149,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:55:50 GMT",
+ "Date": "Mon, 25 Jul 2022 13:13:44 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1633,31 +2157,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b18bc856-7d60-482b-9535-59893c851640",
- "x-ms-ratelimit-remaining-subscription-reads": "11976",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T145550Z:b18bc856-7d60-482b-9535-59893c851640",
+ "x-ms-correlation-request-id": "443d84f0-dced-440e-bc0c-50261e1e0282",
+ "x-ms-ratelimit-remaining-subscription-reads": "11972",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131345Z:443d84f0-dced-440e-bc0c-50261e1e0282",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ba2c3d6f-5b01-42fe-a680-9ad447cf11ef",
- "name": "ba2c3d6f-5b01-42fe-a680-9ad447cf11ef",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20b7e08e-142f-44ef-8862-65ac5b3967d8",
+ "name": "20b7e08e-142f-44ef-8862-65ac5b3967d8",
"status": "Succeeded",
- "startTime": "2022-05-30T14:54:19.8353738Z",
- "endTime": "2022-05-30T14:55:23.6836124Z",
+ "startTime": "2022-07-25T13:12:14.5125149Z",
+ "endTime": "2022-07-25T13:13:15.9988187Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/ba2c3d6f-5b01-42fe-a680-9ad447cf11ef?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20b7e08e-142f-44ef-8862-65ac5b3967d8?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1665,7 +2189,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:55:50 GMT",
+ "Date": "Mon, 25 Jul 2022 13:13:45 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1673,25 +2197,25 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "71c0a43d-30e6-4e20-9313-d53231d6c1ca",
- "x-ms-ratelimit-remaining-subscription-reads": "11975",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T145550Z:71c0a43d-30e6-4e20-9313-d53231d6c1ca",
+ "x-ms-correlation-request-id": "3f407683-7ffb-4632-8bc8-1649503adfa7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11971",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131346Z:3f407683-7ffb-4632-8bc8-1649503adfa7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-30T14%3A55%3A18.5472422Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A12%3A14.5021193Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-30T14:48:06.3739878Z"
+ "CreatedOnDate": "2022-07-25T13:06:00.8224934Z"
},
"properties": {
- "fileSystemId": "fbcaa819-05bc-a54f-1486-f9db29ba2715",
+ "fileSystemId": "eecc28ba-8d73-76f6-2812-9850f5ca1342",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
+ "creationToken": "sdk-py-tests-vol-3-6b727b0",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -1719,25 +2243,25 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "DELETED_baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_e93911a3",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_96216a52",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "1b915326-557b-ee8a-5eb0-b4ef8f84a771",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-6b727b0",
+ "poolId": "f8aae0ae-3ac3-e689-77a0-701d1c5a73ec",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "fbcaa819-05bc-a54f-1486-f9db29ba2715",
- "fileSystemId": "fbcaa819-05bc-a54f-1486-f9db29ba2715",
+ "mountTargetId": "eecc28ba-8d73-76f6-2812-9850f5ca1342",
+ "fileSystemId": "eecc28ba-8d73-76f6-2812-9850f5ca1342",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1756,89 +2280,79 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Enabled",
"encrypted": true,
- "smbAccessBasedEnumeration": "Disabled",
- "smbNonBrowsable": "Disabled",
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-30T14:48:07.6527868Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-30T14:48:07.6527868Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-6b727b0?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "306",
+ "Content-Length": "318",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:59:13 GMT",
+ "Date": "Mon, 25 Jul 2022 13:17:09 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "183ff038-0686-42d2-be98-77ce0c014a2a",
+ "x-ms-correlation-request-id": "58ba8db6-60ba-4893-8390-2230f8e15f5f",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T145913Z:183ff038-0686-42d2-be98-77ce0c014a2a"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131709Z:58ba8db6-60ba-4893-8390-2230f8e15f5f"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-6b727b0\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/ac091b46-430d-4a9d-baf4-34b0c19230b6?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9a0626db-b0ce-4e94-b9f8-bd645ebea79b?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 30 May 2022 14:59:25 GMT",
+ "Date": "Mon, 25 Jul 2022 13:17:21 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ac091b46-430d-4a9d-baf4-34b0c19230b6?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9a0626db-b0ce-4e94-b9f8-bd645ebea79b?api-version=2022-03-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": "47bb9406-dd73-4b98-b2a4-e3d4ec3b9c26",
+ "x-ms-correlation-request-id": "442cf906-6a9a-4e5d-943e-1dc8a4bc6d3b",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T145925Z:47bb9406-dd73-4b98-b2a4-e3d4ec3b9c26",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131722Z:442cf906-6a9a-4e5d-943e-1dc8a4bc6d3b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ac091b46-430d-4a9d-baf4-34b0c19230b6?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9a0626db-b0ce-4e94-b9f8-bd645ebea79b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1846,7 +2360,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:59:55 GMT",
+ "Date": "Mon, 25 Jul 2022 13:17:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1854,31 +2368,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2320b3c3-fb4a-49be-a44b-a009ca717dbb",
+ "x-ms-correlation-request-id": "1a865317-0271-410d-bc2d-66fb0ab74628",
"x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T145956Z:2320b3c3-fb4a-49be-a44b-a009ca717dbb",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131752Z:1a865317-0271-410d-bc2d-66fb0ab74628",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ac091b46-430d-4a9d-baf4-34b0c19230b6",
- "name": "ac091b46-430d-4a9d-baf4-34b0c19230b6",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9a0626db-b0ce-4e94-b9f8-bd645ebea79b",
+ "name": "9a0626db-b0ce-4e94-b9f8-bd645ebea79b",
"status": "Succeeded",
- "startTime": "2022-05-30T14:59:25.7923096Z",
- "endTime": "2022-05-30T14:59:29.5423521Z",
+ "startTime": "2022-07-25T13:17:22.031626Z",
+ "endTime": "2022-07-25T13:17:22.6433823Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/ac091b46-430d-4a9d-baf4-34b0c19230b6?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9a0626db-b0ce-4e94-b9f8-bd645ebea79b?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1886,7 +2400,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 14:59:56 GMT",
+ "Date": "Mon, 25 Jul 2022 13:17:52 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1894,211 +2408,203 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "938fd3e7-ff53-43bd-83f4-3c6d64650d64",
+ "x-ms-correlation-request-id": "606991a5-bed6-4b86-8ffa-48f92ff22739",
"x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T145956Z:938fd3e7-ff53-43bd-83f4-3c6d64650d64",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131753Z:606991a5-bed6-4b86-8ffa-48f92ff22739",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-30T14%3A59%3A25.7974798Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A17%3A22.009494Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-30T14:47:31.8841301Z"
+ "CreatedOnDate": "2022-07-25T13:05:26.8269450Z"
},
"properties": {
- "poolId": "1b915326-557b-ee8a-5eb0-b4ef8f84a771",
+ "poolId": "f8aae0ae-3ac3-e689-77a0-701d1c5a73ec",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1",
"qosType": "Auto",
"totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-30T14:47:33.7433749Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-30T14:47:33.7433749Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 30 May 2022 15:00:06 GMT",
+ "Date": "Mon, 25 Jul 2022 13:18:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "78a4d74b-d25e-4f81-9744-dc82327ceefc",
+ "x-ms-correlation-request-id": "ba3bc1dd-f186-4f79-bde8-2530b64e92ea",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T150006Z:78a4d74b-d25e-4f81-9744-dc82327ceefc"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131803Z:ba3bc1dd-f186-4f79-bde8-2530b64e92ea"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 30 May 2022 15:00:16 GMT",
+ "Date": "Mon, 25 Jul 2022 13:18:13 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4b5b702c-9b9c-4bc7-98fa-658c5f83888e",
+ "x-ms-correlation-request-id": "66a00341-9a8d-4189-a451-aa68d82aa73a",
"x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T150017Z:4b5b702c-9b9c-4bc7-98fa-658c5f83888e"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131813Z:66a00341-9a8d-4189-a451-aa68d82aa73a"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 30 May 2022 15:00:26 GMT",
+ "Date": "Mon, 25 Jul 2022 13:18:23 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "997f4ed3-1620-42e0-b45b-87e876008bc2",
+ "x-ms-correlation-request-id": "9289be7e-1d61-441a-bf6b-a9dfff8a5f2a",
"x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T150027Z:997f4ed3-1620-42e0-b45b-87e876008bc2"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131824Z:9289be7e-1d61-441a-bf6b-a9dfff8a5f2a"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Mon, 30 May 2022 15:00:36 GMT",
+ "Date": "Mon, 25 Jul 2022 13:18:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5f8bd258-1a91-462f-bc11-93a52509856d",
+ "x-ms-correlation-request-id": "db496bd2-a6dc-4a1f-8566-73c0deec7c80",
"x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T150037Z:5f8bd258-1a91-462f-bc11-93a52509856d"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131834Z:db496bd2-a6dc-4a1f-8566-73c0deec7c80"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "283",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 15:00:47 GMT",
+ "Date": "Mon, 25 Jul 2022 13:18:43 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5657a838-f04a-42f4-9990-de47f9953b0e",
+ "x-ms-correlation-request-id": "1cd52e53-f977-47cc-9fc1-cb9916d7650a",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T150047Z:5657a838-f04a-42f4-9990-de47f9953b0e"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131844Z:1cd52e53-f977-47cc-9fc1-cb9916d7650a"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/e755b75f-fb4d-4e21-88f7-bc7270a6ffd0?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0b01af79-bb39-4f10-9f9e-16d8b683bf15?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Mon, 30 May 2022 15:00:49 GMT",
+ "Date": "Mon, 25 Jul 2022 13:18:45 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e755b75f-fb4d-4e21-88f7-bc7270a6ffd0?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0b01af79-bb39-4f10-9f9e-16d8b683bf15?api-version=2022-03-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": "960a5237-aaca-4bb5-bb80-1505052b1a84",
+ "x-ms-correlation-request-id": "cc25f531-ed6d-4c60-a802-b12c2c690fcd",
"x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T150049Z:960a5237-aaca-4bb5-bb80-1505052b1a84",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131846Z:cc25f531-ed6d-4c60-a802-b12c2c690fcd",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e755b75f-fb4d-4e21-88f7-bc7270a6ffd0?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0b01af79-bb39-4f10-9f9e-16d8b683bf15?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2106,7 +2612,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 15:01:19 GMT",
+ "Date": "Mon, 25 Jul 2022 13:19:16 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2114,31 +2620,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "07a62cdb-060b-48d2-a8c7-5fdd1e8cde03",
+ "x-ms-correlation-request-id": "33628899-6a17-4dc8-b1d9-33fc8b175d31",
"x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T150119Z:07a62cdb-060b-48d2-a8c7-5fdd1e8cde03",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131916Z:33628899-6a17-4dc8-b1d9-33fc8b175d31",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e755b75f-fb4d-4e21-88f7-bc7270a6ffd0",
- "name": "e755b75f-fb4d-4e21-88f7-bc7270a6ffd0",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0b01af79-bb39-4f10-9f9e-16d8b683bf15",
+ "name": "0b01af79-bb39-4f10-9f9e-16d8b683bf15",
"status": "Succeeded",
- "startTime": "2022-05-30T15:00:49.0084094Z",
- "endTime": "2022-05-30T15:00:49.0396541Z",
+ "startTime": "2022-07-25T13:18:46.136467Z",
+ "endTime": "2022-07-25T13:18:46.1832188Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e755b75f-fb4d-4e21-88f7-bc7270a6ffd0?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0b01af79-bb39-4f10-9f9e-16d8b683bf15?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2146,7 +2652,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 15:01:19 GMT",
+ "Date": "Mon, 25 Jul 2022 13:19:16 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2154,19 +2660,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8f7c51b1-d501-414d-a7d8-8638a3bf428f",
+ "x-ms-correlation-request-id": "56f6211a-2b60-484b-80d9-f1c0751a8d0d",
"x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T150119Z:8f7c51b1-d501-414d-a7d8-8638a3bf428f",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131917Z:56f6211a-2b60-484b-80d9-f1c0751a8d0d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-30T15%3A00%3A49.0081424Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A18%3A46.1321797Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-30T14:46:54.9010921Z"
+ "CreatedOnDate": "2022-07-25T13:04:52.2212760Z"
},
"properties": {
"encryption": {
@@ -2177,43 +2683,78 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-30T14:46:59.025781Z",
+ "createdAt": "2022-07-25T13:04:53.309446Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-30T14:46:59.025781Z"
+ "lastModifiedAt": "2022-07-25T13:04:53.309446Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "249",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 30 May 2022 15:01:21 GMT",
+ "Date": "Mon, 25 Jul 2022 13:19:17 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "680eb01d-6518-452f-bf2e-e9d2cdd0ee25",
+ "x-ms-correlation-request-id": "24682fc8-44f4-4033-98b0-8c93c7712749",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220530T150121Z:680eb01d-6518-452f-bf2e-e9d2cdd0ee25"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131917Z:24682fc8-44f4-4033-98b0-8c93c7712749"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0?api-version=2021-08-01",
+ "RequestMethod": "DELETE",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "0",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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/85a98936-abc9-435a-8bf1-1dc296432103?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "0",
+ "Date": "Mon, 25 Jul 2022 13:19:18 GMT",
+ "Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/85a98936-abc9-435a-8bf1-1dc296432103?api-version=2021-08-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": "391cdc39-dcf8-46a6-8902-457dd04b6d11",
+ "x-ms-correlation-request-id": "888f2ee8-922c-43c7-998b-845a97fa201d",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T131918Z:888f2ee8-922c-43c7-998b-845a97fa201d"
+ },
+ "ResponseBody": null
}
],
"Variables": {}
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 39df2ad80c2d..fff7f4f49f28 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
@@ -7,7 +7,7 @@
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 31 May 2022 17:48:42 GMT",
+ "Date": "Mon, 25 Jul 2022 13:41:35 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.12821.9 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 31 May 2022 17:48:42 GMT",
+ "Date": "Mon, 25 Jul 2022 13:41: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.12794.7 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - WEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "05279bd6-c7a9-48b3-97ce-d744dbb920ea",
+ "client-request-id": "86928d81-b8d1-47c5-b752-ee5e6d138153",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "05279bd6-c7a9-48b3-97ce-d744dbb920ea",
+ "client-request-id": "86928d81-b8d1-47c5-b752-ee5e6d138153",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:48:42 GMT",
+ "Date": "Mon, 25 Jul 2022 13:41:36 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12821.9 - NEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - NEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,67 +213,607 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "22",
+ "Content-Length": "93",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "eastus"
+ "location": "westus2",
+ "properties": {
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ }
+ }
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ac2dfe69-85aa-4522-8fb2-358798566508?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/191950e0-62b2-4dd0-bec1-0a79a73fad0d?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Length": "686",
+ "Content-Length": "746",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:48:46 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T17%3A48%3A46.1452652Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 13:41:50 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Retry-After": "3",
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f2ab128a-55f8-4595-b8e2-b110a3c10f50",
+ "x-ms-arm-service-request-id": "71c6750e-f3bb-4bfa-b2d1-1cd576cb02a2",
+ "x-ms-correlation-request-id": "2d5c3616-0695-4a8f-ae80-b2036e20433d",
"x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T174846Z:f2ab128a-55f8-4595-b8e2-b110a3c10f50",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134151Z:2d5c3616-0695-4a8f-ae80-b2036e20433d"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-8b73262e",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e",
+ "etag": "W/\u0022774e2aed-a628-45bc-8782-3c21be5d8f99\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-25T13:41:39.7569534Z"
+ },
+ "properties": {
+ "provisioningState": "Updating",
+ "resourceGuid": "1bea32fd-b6d0-423c-b9fa-355d922e0862",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/191950e0-62b2-4dd0-bec1-0a79a73fad0d?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 13:41:53 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": "93f1cb55-c56b-4f49-bfa1-a46c3136a097",
+ "x-ms-correlation-request-id": "28b806ff-645d-43da-9093-831c46b397b8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11999",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134154Z:28b806ff-645d-43da-9093-831c46b397b8"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 13:41:54 GMT",
+ "ETag": "W/\u00223c49f796-1caa-4284-b4db-1997a4eda497\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": "b3fccf3b-95fe-423b-a938-86cf103b78b3",
+ "x-ms-correlation-request-id": "752eecba-9cf8-42fb-a2bd-a2705ea17109",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134154Z:752eecba-9cf8-42fb-a2bd-a2705ea17109"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-8b73262e",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e",
+ "etag": "W/\u00223c49f796-1caa-4284-b4db-1997a4eda497\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-25T13:41:39.7569534Z"
+ },
+ "properties": {
+ "provisioningState": "Succeeded",
+ "resourceGuid": "1bea32fd-b6d0-423c-b9fa-355d922e0862",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "151",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "RequestBody": {
+ "properties": {
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "properties": {
+ "serviceName": "Microsoft.Netapp/volumes"
+ }
+ }
+ ]
+ }
+ },
+ "StatusCode": 201,
+ "ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f7c64420-e78b-448e-a3f7-d336c860ee4a?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "1318",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 13:41:54 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Retry-After": "3",
+ "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": "6f438931-85e3-440f-b88e-536dd587f744",
+ "x-ms-correlation-request-id": "f49382b2-e1ff-4613-914c-9b7eef6b3ffb",
+ "x-ms-ratelimit-remaining-subscription-writes": "1198",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134155Z:f49382b2-e1ff-4613-914c-9b7eef6b3ffb"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e/subnets/default",
+ "etag": "W/\u0022b7646bd0-4713-4828-b718-10255dec4909\u0022",
+ "properties": {
+ "provisioningState": "Updating",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u0022b7646bd0-4713-4828-b718-10255dec4909\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f7c64420-e78b-448e-a3f7-d336c860ee4a?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 13:41:58 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": "03210c06-171a-4621-8b48-6027ecb97590",
+ "x-ms-correlation-request-id": "4c0a3aac-415b-45ce-9265-6e084b886563",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134158Z:4c0a3aac-415b-45ce-9265-6e084b886563"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 13:41:58 GMT",
+ "ETag": "W/\u002219c097c0-09f6-4433-95fe-d7e711f4594e\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": "4dd90999-f51c-4ffa-80f7-e6481cd4421a",
+ "x-ms-correlation-request-id": "962d26a8-0c46-491c-9430-0b87f82245f5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11996",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134158Z:962d26a8-0c46-491c-9430-0b87f82245f5"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e/subnets/default",
+ "etag": "W/\u002219c097c0-09f6-4433-95fe-d7e711f4594e\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u002219c097c0-09f6-4433-95fe-d7e711f4594e\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "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.11.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": "Mon, 25 Jul 2022 13:41: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.13315.8 - NEULR1 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.11.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": "Mon, 25 Jul 2022 13:41: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.13315.8 - NEULR1 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": "bcf4b1b2-cd63-4f63-ac74-a18a35f1258a",
+ "Connection": "keep-alive",
+ "Content-Length": "281",
+ "Content-Type": "application/x-www-form-urlencoded",
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.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.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
+ },
+ "RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "bcf4b1b2-cd63-4f63-ac74-a18a35f1258a",
+ "Content-Length": "114",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 13:41:58 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.13315.8 - WEULR2 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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e?api-version=2022-03-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "23",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/d11eeb13-b1fb-42ab-ac3a-b44848de05e1?api-version=2022-03-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "698",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 13:42:25 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T13%3A42%3A24.5352484Z\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": "50265d53-4d1d-4fc1-8d9f-e81d5f9d1b7f",
+ "x-ms-ratelimit-remaining-subscription-writes": "1197",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134225Z:50265d53-4d1d-4fc1-8d9f-e81d5f9d1b7f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T17%3A48%3A46.1452652Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A42%3A24.5352484Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T17:48:44.3529663Z"
+ "CreatedOnDate": "2022-07-25T13:42:13.9264653Z"
},
"properties": {
"provisioningState": "Creating"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T17:48:45.5304532Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T13:42:23.61195Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T17:48:45.5304532Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T13:42:23.61195Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ac2dfe69-85aa-4522-8fb2-358798566508?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d11eeb13-b1fb-42ab-ac3a-b44848de05e1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +821,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:49:16 GMT",
+ "Date": "Mon, 25 Jul 2022 13:42:56 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +829,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "063230ce-b5d0-458c-8f07-a1c6d7a75841",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T174917Z:063230ce-b5d0-458c-8f07-a1c6d7a75841",
+ "x-ms-correlation-request-id": "e2526f35-5198-42f1-947b-077552df1b91",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134256Z:e2526f35-5198-42f1-947b-077552df1b91",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ac2dfe69-85aa-4522-8fb2-358798566508",
- "name": "ac2dfe69-85aa-4522-8fb2-358798566508",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d11eeb13-b1fb-42ab-ac3a-b44848de05e1",
+ "name": "d11eeb13-b1fb-42ab-ac3a-b44848de05e1",
"status": "Succeeded",
- "startTime": "2022-05-31T17:48:46.1470424Z",
- "endTime": "2022-05-31T17:48:46.2095532Z",
+ "startTime": "2022-07-25T13:42:24.5298538Z",
+ "endTime": "2022-07-25T13:42:24.5766483Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +861,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:49:16 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T17%3A48%3A46.2138888Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 13:42:56 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T13%3A42%3A24.5798339Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,21 +870,39 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d3cf987a-f11f-43e5-8909-3367a421a674",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T174917Z:d3cf987a-f11f-43e5-8909-3367a421a674",
+ "x-ms-correlation-request-id": "198abbfe-69cb-4837-84a2-7604d2ec1826",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134256Z:198abbfe-69cb-4837-84a2-7604d2ec1826",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T17%3A48%3A46.2138888Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A42%3A24.5798339Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T17:48:44.3529663Z"
+ "CreatedOnDate": "2022-07-25T13:42:13.9264653Z"
},
"properties": {
+ "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"
},
@@ -351,27 +910,27 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T17:48:45.5304532Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T13:42:23.61195Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T17:48:45.5304532Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T13:42:23.61195Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "137",
+ "Content-Length": "138",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "eastus",
+ "location": "westus2",
"properties": {
"size": 4398046511104,
"serviceLevel": "Premium",
@@ -381,30 +940,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/4df6f412-843b-486f-8a06-c515978fc685?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c3b961ec-4137-40b3-bd7e-2d36ff95ede1?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "904",
+ "Content-Length": "916",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:49:19 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T17%3A49%3A18.9594013Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 13:42:58 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T13%3A42%3A57.8398732Z\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": "854d1139-1cfb-495e-b2ac-ca23cf7f9f41",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T174919Z:854d1139-1cfb-495e-b2ac-ca23cf7f9f41",
+ "x-ms-correlation-request-id": "13317767-6424-46be-8970-ad60b646b452",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134258Z:13317767-6424-46be-8970-ad60b646b452",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T17%3A49%3A18.9594013Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A42%3A57.8398732Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T17:49:17.7526196Z"
+ "CreatedOnDate": "2022-07-25T13:42:56.6846208Z"
},
"properties": {
"serviceLevel": "Premium",
@@ -417,22 +976,22 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T17:49:18.6492184Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T13:42:57.649919Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T17:49:18.6492184Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T13:42:57.649919Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/4df6f412-843b-486f-8a06-c515978fc685?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c3b961ec-4137-40b3-bd7e-2d36ff95ede1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -440,7 +999,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:49:49 GMT",
+ "Date": "Mon, 25 Jul 2022 13:43:29 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -448,31 +1007,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "461d27eb-2d96-4247-b49d-c5ad51b1abbe",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T174950Z:461d27eb-2d96-4247-b49d-c5ad51b1abbe",
+ "x-ms-correlation-request-id": "3c0fcdcf-7c43-43f5-bc0f-43003c4bf3bc",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134329Z:3c0fcdcf-7c43-43f5-bc0f-43003c4bf3bc",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/4df6f412-843b-486f-8a06-c515978fc685",
- "name": "4df6f412-843b-486f-8a06-c515978fc685",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c3b961ec-4137-40b3-bd7e-2d36ff95ede1",
+ "name": "c3b961ec-4137-40b3-bd7e-2d36ff95ede1",
"status": "Succeeded",
- "startTime": "2022-05-31T17:49:18.9620449Z",
- "endTime": "2022-05-31T17:49:19.1808314Z",
+ "startTime": "2022-07-25T13:42:57.8407059Z",
+ "endTime": "2022-07-25T13:42:58.0915305Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -480,8 +1039,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:49:50 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T17%3A49%3A19.1762176Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 13:43:29 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T13%3A42%3A58.0903408Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -489,26 +1048,26 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1a0eb4fd-82f1-4f02-91ee-7481eb37d469",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T174950Z:1a0eb4fd-82f1-4f02-91ee-7481eb37d469",
+ "x-ms-correlation-request-id": "c8d6bbaa-f09d-4651-95c4-e25a8f4f1b90",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134329Z:c8d6bbaa-f09d-4651-95c4-e25a8f4f1b90",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T17%3A49%3A19.1762176Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A42%3A58.0903408Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T17:49:17.7526196Z"
+ "CreatedOnDate": "2022-07-25T13:42:56.6846208Z"
},
"properties": {
- "poolId": "f68adfcd-828b-928c-3047-43f2f5c89d60",
+ "poolId": "79a8f5e5-ae63-2d63-1f62-b9ab18fa32e3",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
- "totalThroughputMibps": 262.144,
+ "totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
@@ -517,26 +1076,26 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8b73262e?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "786",
+ "Content-Length": "810",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "eastus",
+ "location": "westus2",
"properties": {
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-8b73262e",
"serviceLevel": "Premium",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -556,39 +1115,39 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/149bc192-6633-4143-829d-b6c8fbab4a8b?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f852401-180f-4fb9-9ae0-a9cf838fce71?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "1551",
+ "Content-Length": "1606",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:49:52 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T17%3A49%3A52.1993004Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 13:43:32 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T13%3A43%3A30.9076371Z\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": "15756008-b9e0-44a8-bc35-ae2cb6917b6e",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T174952Z:15756008-b9e0-44a8-bc35-ae2cb6917b6e",
+ "x-ms-correlation-request-id": "5e3a913e-d4e8-4aee-b7b7-e75b2b62f1f2",
+ "x-ms-ratelimit-remaining-subscription-writes": "1195",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134332Z:5e3a913e-d4e8-4aee-b7b7-e75b2b62f1f2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T17%3A49%3A52.1993004Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A43%3A30.9076371Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T17:49:50.4587554Z"
+ "CreatedOnDate": "2022-07-25T13:43:29.7355719Z"
},
"properties": {
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-8b73262e",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -609,22 +1168,22 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T17:49:51.798055Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T13:43:30.5762423Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T17:49:51.798055Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T13:43:30.5762423Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/149bc192-6633-4143-829d-b6c8fbab4a8b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f852401-180f-4fb9-9ae0-a9cf838fce71?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -632,7 +1191,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:50:22 GMT",
+ "Date": "Mon, 25 Jul 2022 13:44:02 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -640,31 +1199,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "71bae9cc-b426-4b7b-b109-6d0c14c42cea",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T175023Z:71bae9cc-b426-4b7b-b109-6d0c14c42cea",
+ "x-ms-correlation-request-id": "9f03b979-4c21-411a-80f3-92f406c85d17",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134402Z:9f03b979-4c21-411a-80f3-92f406c85d17",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/149bc192-6633-4143-829d-b6c8fbab4a8b",
- "name": "149bc192-6633-4143-829d-b6c8fbab4a8b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f852401-180f-4fb9-9ae0-a9cf838fce71",
+ "name": "1f852401-180f-4fb9-9ae0-a9cf838fce71",
"status": "Creating",
- "startTime": "2022-05-31T17:49:52.2068791Z",
+ "startTime": "2022-07-25T13:43:30.9028693Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/149bc192-6633-4143-829d-b6c8fbab4a8b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f852401-180f-4fb9-9ae0-a9cf838fce71?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -672,7 +1231,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:50:52 GMT",
+ "Date": "Mon, 25 Jul 2022 13:44:31 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -680,31 +1239,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c50a23a9-61e9-4b88-8787-fe7c98d18ac9",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T175053Z:c50a23a9-61e9-4b88-8787-fe7c98d18ac9",
+ "x-ms-correlation-request-id": "00c890ed-eeb8-412f-8190-2240aac11166",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134432Z:00c890ed-eeb8-412f-8190-2240aac11166",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/149bc192-6633-4143-829d-b6c8fbab4a8b",
- "name": "149bc192-6633-4143-829d-b6c8fbab4a8b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f852401-180f-4fb9-9ae0-a9cf838fce71",
+ "name": "1f852401-180f-4fb9-9ae0-a9cf838fce71",
"status": "Creating",
- "startTime": "2022-05-31T17:49:52.2068791Z",
+ "startTime": "2022-07-25T13:43:30.9028693Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/149bc192-6633-4143-829d-b6c8fbab4a8b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f852401-180f-4fb9-9ae0-a9cf838fce71?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -712,7 +1271,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:51:22 GMT",
+ "Date": "Mon, 25 Jul 2022 13:45:02 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -720,31 +1279,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ee8e34af-14ca-4a5f-9d8b-c41b37968152",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T175123Z:ee8e34af-14ca-4a5f-9d8b-c41b37968152",
+ "x-ms-correlation-request-id": "d14cf003-24c4-475d-b326-64cdc30e79dc",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134503Z:d14cf003-24c4-475d-b326-64cdc30e79dc",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/149bc192-6633-4143-829d-b6c8fbab4a8b",
- "name": "149bc192-6633-4143-829d-b6c8fbab4a8b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f852401-180f-4fb9-9ae0-a9cf838fce71",
+ "name": "1f852401-180f-4fb9-9ae0-a9cf838fce71",
"status": "Creating",
- "startTime": "2022-05-31T17:49:52.2068791Z",
+ "startTime": "2022-07-25T13:43:30.9028693Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/149bc192-6633-4143-829d-b6c8fbab4a8b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f852401-180f-4fb9-9ae0-a9cf838fce71?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -752,7 +1311,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:51:52 GMT",
+ "Date": "Mon, 25 Jul 2022 13:45:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -760,31 +1319,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "df4b0f57-b839-4e25-9117-80879a412dcb",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T175153Z:df4b0f57-b839-4e25-9117-80879a412dcb",
+ "x-ms-correlation-request-id": "3252325d-ef82-4c5e-a316-b16e62aff54d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134533Z:3252325d-ef82-4c5e-a316-b16e62aff54d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/149bc192-6633-4143-829d-b6c8fbab4a8b",
- "name": "149bc192-6633-4143-829d-b6c8fbab4a8b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f852401-180f-4fb9-9ae0-a9cf838fce71",
+ "name": "1f852401-180f-4fb9-9ae0-a9cf838fce71",
"status": "Creating",
- "startTime": "2022-05-31T17:49:52.2068791Z",
+ "startTime": "2022-07-25T13:43:30.9028693Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/149bc192-6633-4143-829d-b6c8fbab4a8b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f852401-180f-4fb9-9ae0-a9cf838fce71?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -792,7 +1351,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:52:22 GMT",
+ "Date": "Mon, 25 Jul 2022 13:46:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -800,31 +1359,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7e6adf64-9880-41ff-b225-d876d436b570",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T175223Z:7e6adf64-9880-41ff-b225-d876d436b570",
+ "x-ms-correlation-request-id": "23adbd4d-e77f-4c58-af3a-7c059eff61c5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134603Z:23adbd4d-e77f-4c58-af3a-7c059eff61c5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/149bc192-6633-4143-829d-b6c8fbab4a8b",
- "name": "149bc192-6633-4143-829d-b6c8fbab4a8b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f852401-180f-4fb9-9ae0-a9cf838fce71",
+ "name": "1f852401-180f-4fb9-9ae0-a9cf838fce71",
"status": "Creating",
- "startTime": "2022-05-31T17:49:52.2068791Z",
+ "startTime": "2022-07-25T13:43:30.9028693Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/149bc192-6633-4143-829d-b6c8fbab4a8b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f852401-180f-4fb9-9ae0-a9cf838fce71?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -832,7 +1391,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:52:53 GMT",
+ "Date": "Mon, 25 Jul 2022 13:46:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -840,31 +1399,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8e35e784-3666-4e46-9c4d-b0297d034e71",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T175253Z:8e35e784-3666-4e46-9c4d-b0297d034e71",
+ "x-ms-correlation-request-id": "c5d993ba-dfcc-4f63-863a-7372908f7e3c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134634Z:c5d993ba-dfcc-4f63-863a-7372908f7e3c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/149bc192-6633-4143-829d-b6c8fbab4a8b",
- "name": "149bc192-6633-4143-829d-b6c8fbab4a8b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f852401-180f-4fb9-9ae0-a9cf838fce71",
+ "name": "1f852401-180f-4fb9-9ae0-a9cf838fce71",
"status": "Creating",
- "startTime": "2022-05-31T17:49:52.2068791Z",
+ "startTime": "2022-07-25T13:43:30.9028693Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/149bc192-6633-4143-829d-b6c8fbab4a8b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f852401-180f-4fb9-9ae0-a9cf838fce71?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -872,7 +1431,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:53:23 GMT",
+ "Date": "Mon, 25 Jul 2022 13:47:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -880,31 +1439,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1c3937a9-584b-4024-bcad-fad1ceacdb8d",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T175324Z:1c3937a9-584b-4024-bcad-fad1ceacdb8d",
+ "x-ms-correlation-request-id": "1d9e9748-5bc8-4723-8739-6697d84f1bcf",
+ "x-ms-ratelimit-remaining-subscription-reads": "11985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134704Z:1d9e9748-5bc8-4723-8739-6697d84f1bcf",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/149bc192-6633-4143-829d-b6c8fbab4a8b",
- "name": "149bc192-6633-4143-829d-b6c8fbab4a8b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f852401-180f-4fb9-9ae0-a9cf838fce71",
+ "name": "1f852401-180f-4fb9-9ae0-a9cf838fce71",
"status": "Creating",
- "startTime": "2022-05-31T17:49:52.2068791Z",
+ "startTime": "2022-07-25T13:43:30.9028693Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/149bc192-6633-4143-829d-b6c8fbab4a8b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f852401-180f-4fb9-9ae0-a9cf838fce71?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -912,7 +1471,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:53:53 GMT",
+ "Date": "Mon, 25 Jul 2022 13:47:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -920,31 +1479,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "07cb923b-9031-4831-979e-2a4d699cdd3f",
- "x-ms-ratelimit-remaining-subscription-reads": "11988",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T175354Z:07cb923b-9031-4831-979e-2a4d699cdd3f",
+ "x-ms-correlation-request-id": "24f872e5-3338-42bf-98f3-744ec17cafa5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134734Z:24f872e5-3338-42bf-98f3-744ec17cafa5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/149bc192-6633-4143-829d-b6c8fbab4a8b",
- "name": "149bc192-6633-4143-829d-b6c8fbab4a8b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f852401-180f-4fb9-9ae0-a9cf838fce71",
+ "name": "1f852401-180f-4fb9-9ae0-a9cf838fce71",
"status": "Creating",
- "startTime": "2022-05-31T17:49:52.2068791Z",
+ "startTime": "2022-07-25T13:43:30.9028693Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/149bc192-6633-4143-829d-b6c8fbab4a8b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f852401-180f-4fb9-9ae0-a9cf838fce71?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -952,7 +1511,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:54:23 GMT",
+ "Date": "Mon, 25 Jul 2022 13:48:04 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -960,31 +1519,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "283c9452-b8b3-4a01-b284-9f06df5bd48a",
- "x-ms-ratelimit-remaining-subscription-reads": "11987",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T175424Z:283c9452-b8b3-4a01-b284-9f06df5bd48a",
+ "x-ms-correlation-request-id": "2c4edf11-5e88-432a-8741-2b9524636d4f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11983",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134805Z:2c4edf11-5e88-432a-8741-2b9524636d4f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/149bc192-6633-4143-829d-b6c8fbab4a8b",
- "name": "149bc192-6633-4143-829d-b6c8fbab4a8b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f852401-180f-4fb9-9ae0-a9cf838fce71",
+ "name": "1f852401-180f-4fb9-9ae0-a9cf838fce71",
"status": "Succeeded",
- "startTime": "2022-05-31T17:49:52.2068791Z",
- "endTime": "2022-05-31T17:53:56.0221157Z",
+ "startTime": "2022-07-25T13:43:30.9028693Z",
+ "endTime": "2022-07-25T13:47:38.27955Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8b73262e?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -992,8 +1551,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:54:24 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T17%3A53%3A56.0152577Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 13:48:06 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T13%3A47%3A38.2766498Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1001,24 +1560,24 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "eba80f06-2435-478e-9fcb-2b43b24a9f4c",
- "x-ms-ratelimit-remaining-subscription-reads": "11986",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T175425Z:eba80f06-2435-478e-9fcb-2b43b24a9f4c",
+ "x-ms-correlation-request-id": "176f80cd-2d9f-4011-8fa4-e7b20d241ad6",
+ "x-ms-ratelimit-remaining-subscription-reads": "11982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134806Z:176f80cd-2d9f-4011-8fa4-e7b20d241ad6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T17%3A53%3A56.0152577Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A47%3A38.2766498Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T17:49:50.4587554Z"
+ "CreatedOnDate": "2022-07-25T13:43:29.7355719Z"
},
"properties": {
- "fileSystemId": "1263f995-fa62-b4c2-71a1-24e8287e4997",
+ "fileSystemId": "482e972e-6ce8-8956-2cda-36a16777902d",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-8b73262e",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1044,10 +1603,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_10a58120",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_f382f00e",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1059,12 +1618,12 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "1263f995-fa62-b4c2-71a1-24e8287e4997",
- "fileSystemId": "1263f995-fa62-b4c2-71a1-24e8287e4997",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "482e972e-6ce8-8956-2cda-36a16777902d",
+ "fileSystemId": "482e972e-6ce8-8956-2cda-36a16777902d",
+ "ipAddress": "10.0.0.4"
}
],
- "throughputMibps": 6.4,
+ "throughputMibps": 6.25,
"volumeSpecName": "generic",
"coolAccess": false,
"avsDataStore": "Disabled",
@@ -1078,7 +1637,7 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
@@ -1086,7 +1645,7 @@
"Connection": "keep-alive",
"Content-Length": "55",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
"properties": {
@@ -1096,25 +1655,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/92eb2988-1d78-45d3-8952-793ed84a1b87?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9cda42d9-04d4-40a6-8a6b-2739c9f840a3?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "507",
+ "Content-Length": "536",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:54:24 GMT",
+ "Date": "Mon, 25 Jul 2022 13:48:06 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/92eb2988-1d78-45d3-8952-793ed84a1b87?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9cda42d9-04d4-40a6-8a6b-2739c9f840a3?api-version=2022-03-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": "109535e1-fe9a-401e-9c29-514792606fd6",
- "x-ms-ratelimit-remaining-subscription-writes": "1196",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T175425Z:109535e1-fe9a-401e-9c29-514792606fd6",
+ "x-ms-correlation-request-id": "ce942547-2707-4f63-bf2e-8555f0fe31ad",
+ "x-ms-ratelimit-remaining-subscription-writes": "1194",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134806Z:ce942547-2707-4f63-bf2e-8555f0fe31ad",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-subvolume-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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",
+ "name": "sdk-py-tests-acc-1-8b73262e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-8b73262e/sdk-py-tests-subvolume-1",
"type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes",
"properties": {
"path": "/sub_vol_1.txt",
@@ -1124,13 +1683,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/92eb2988-1d78-45d3-8952-793ed84a1b87?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9cda42d9-04d4-40a6-8a6b-2739c9f840a3?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1138,7 +1697,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:54:55 GMT",
+ "Date": "Mon, 25 Jul 2022 13:48:36 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1146,31 +1705,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "039e08c7-2c3a-4d2f-898e-8b76308ad6db",
- "x-ms-ratelimit-remaining-subscription-reads": "11985",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T175455Z:039e08c7-2c3a-4d2f-898e-8b76308ad6db",
+ "x-ms-correlation-request-id": "4ccb77b6-f4d6-4834-b36e-d08ecdb32154",
+ "x-ms-ratelimit-remaining-subscription-reads": "11981",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134836Z:4ccb77b6-f4d6-4834-b36e-d08ecdb32154",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/92eb2988-1d78-45d3-8952-793ed84a1b87",
- "name": "92eb2988-1d78-45d3-8952-793ed84a1b87",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9cda42d9-04d4-40a6-8a6b-2739c9f840a3",
+ "name": "9cda42d9-04d4-40a6-8a6b-2739c9f840a3",
"status": "Succeeded",
- "startTime": "2022-05-31T17:54:25.3915848Z",
- "endTime": "2022-05-31T17:54:26.0478635Z",
+ "startTime": "2022-07-25T13:48:06.5255014Z",
+ "endTime": "2022-07-25T13:48:07.5724543Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1178,7 +1737,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:54:55 GMT",
+ "Date": "Mon, 25 Jul 2022 13:48:37 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1186,14 +1745,14 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f50d70f8-b227-4b25-8390-f603bf42e2c4",
- "x-ms-ratelimit-remaining-subscription-reads": "11984",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T175456Z:f50d70f8-b227-4b25-8390-f603bf42e2c4",
+ "x-ms-correlation-request-id": "79ed3f29-4404-41df-9d69-4643bedabe2d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11980",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134837Z:79ed3f29-4404-41df-9d69-4643bedabe2d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-subvolume-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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",
+ "name": "sdk-py-tests-acc-1-8b73262e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-8b73262e/sdk-py-tests-subvolume-1",
"type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes",
"properties": {
"path": "/sub_vol_1.txt",
@@ -1202,48 +1761,48 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1/getMetadata?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/getMetadata?api-version=2022-03-01",
"RequestMethod": "POST",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/eastus/operationResults/9bc72d40-cc4e-4dcc-bd81-720a2ccb962f?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/755a5360-54de-4e0d-b7b5-9d13c1658ba7?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "426",
+ "Content-Length": "455",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:54:56 GMT",
+ "Date": "Mon, 25 Jul 2022 13:48:37 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9bc72d40-cc4e-4dcc-bd81-720a2ccb962f?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/755a5360-54de-4e0d-b7b5-9d13c1658ba7?api-version=2022-03-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": "9a40ec92-4887-48a9-815e-72016d8a5b9f",
+ "x-ms-correlation-request-id": "95fe9a02-2be5-49cb-a22f-1bc1e0d1047f",
"x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T175456Z:9a40ec92-4887-48a9-815e-72016d8a5b9f",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134837Z:95fe9a02-2be5-49cb-a22f-1bc1e0d1047f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-subvolume-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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",
+ "name": "sdk-py-tests-acc-1-8b73262e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-8b73262e/sdk-py-tests-subvolume-1",
"type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9bc72d40-cc4e-4dcc-bd81-720a2ccb962f?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/755a5360-54de-4e0d-b7b5-9d13c1658ba7?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1251,7 +1810,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:55:26 GMT",
+ "Date": "Mon, 25 Jul 2022 13:49:08 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1259,69 +1818,69 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "80b77d43-c860-4dd5-a71c-96bf5c1cb72f",
- "x-ms-ratelimit-remaining-subscription-reads": "11983",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T175526Z:80b77d43-c860-4dd5-a71c-96bf5c1cb72f",
+ "x-ms-correlation-request-id": "c1ff9739-7037-485f-a44d-865205c31ab9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11979",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134908Z:c1ff9739-7037-485f-a44d-865205c31ab9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9bc72d40-cc4e-4dcc-bd81-720a2ccb962f",
- "name": "9bc72d40-cc4e-4dcc-bd81-720a2ccb962f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/755a5360-54de-4e0d-b7b5-9d13c1658ba7",
+ "name": "755a5360-54de-4e0d-b7b5-9d13c1658ba7",
"status": "Succeeded",
- "startTime": "2022-05-31T17:54:56.4216241Z",
- "endTime": "2022-05-31T17:54:56.7028825Z",
+ "startTime": "2022-07-25T13:48:37.7118676Z",
+ "endTime": "2022-07-25T13:48:38.1493993Z",
"percentComplete": 100.0,
"properties": {
"path": "/sub_vol_1.txt",
"size": 123,
"bytesUsed": 0,
"permissions": "644",
- "creationTimeStamp": "2022-05-31T17:54:26Z",
- "accessedTimeStamp": "2022-05-31T17:54:25Z",
- "modifiedTimeStamp": "2022-05-31T17:54:26Z",
- "changedTimeStamp": "2022-05-31T17:54:26Z",
+ "creationTimeStamp": "2022-07-25T13:48:07Z",
+ "accessedTimeStamp": "2022-07-25T13:48:07Z",
+ "modifiedTimeStamp": "2022-07-25T13:48:07Z",
+ "changedTimeStamp": "2022-07-25T13:48:07Z",
"provisioningState": "Succeeded"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/eastus/operationResults/fa67d717-1964-4ff4-ae2a-c1b5f7b8e1eb?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be877d63-b6f1-4fae-b5c9-04bcfffd72bf?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 17:55:26 GMT",
+ "Date": "Mon, 25 Jul 2022 13:49:08 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fa67d717-1964-4ff4-ae2a-c1b5f7b8e1eb?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be877d63-b6f1-4fae-b5c9-04bcfffd72bf?api-version=2022-03-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": "df8b920d-5cf6-46af-9a20-e07213135afb",
+ "x-ms-correlation-request-id": "ca750e6c-611d-4c6a-a63d-13d5bf2cf017",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T175527Z:df8b920d-5cf6-46af-9a20-e07213135afb",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134908Z:ca750e6c-611d-4c6a-a63d-13d5bf2cf017",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fa67d717-1964-4ff4-ae2a-c1b5f7b8e1eb?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be877d63-b6f1-4fae-b5c9-04bcfffd72bf?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1329,7 +1888,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:55:56 GMT",
+ "Date": "Mon, 25 Jul 2022 13:49:38 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1337,61 +1896,61 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7a193da5-0d28-4e54-a41f-c6578f31d6fd",
- "x-ms-ratelimit-remaining-subscription-reads": "11982",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T175557Z:7a193da5-0d28-4e54-a41f-c6578f31d6fd",
+ "x-ms-correlation-request-id": "e5a59c5c-8d30-4710-9411-d2b76ee90337",
+ "x-ms-ratelimit-remaining-subscription-reads": "11978",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134938Z:e5a59c5c-8d30-4710-9411-d2b76ee90337",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fa67d717-1964-4ff4-ae2a-c1b5f7b8e1eb",
- "name": "fa67d717-1964-4ff4-ae2a-c1b5f7b8e1eb",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be877d63-b6f1-4fae-b5c9-04bcfffd72bf",
+ "name": "be877d63-b6f1-4fae-b5c9-04bcfffd72bf",
"status": "Succeeded",
- "startTime": "2022-05-31T17:55:27.0556535Z",
- "endTime": "2022-05-31T17:55:34.560174Z",
+ "startTime": "2022-07-25T13:49:08.4393204Z",
+ "endTime": "2022-07-25T13:49:09.1423838Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8b73262e?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/eastus/operationResults/e4fe9686-6dd2-4e87-8ef6-63c98b030e46?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc4b7d19-84c5-4030-93fd-d4a333fdd152?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 17:55:57 GMT",
+ "Date": "Mon, 25 Jul 2022 13:49:38 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e4fe9686-6dd2-4e87-8ef6-63c98b030e46?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc4b7d19-84c5-4030-93fd-d4a333fdd152?api-version=2022-03-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": "f85b8ad4-c5eb-4792-964f-98e0eccafe2e",
+ "x-ms-correlation-request-id": "1ad4d4d6-449c-4960-883c-1121475cce07",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T175557Z:f85b8ad4-c5eb-4792-964f-98e0eccafe2e",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T134939Z:1ad4d4d6-449c-4960-883c-1121475cce07",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e4fe9686-6dd2-4e87-8ef6-63c98b030e46?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc4b7d19-84c5-4030-93fd-d4a333fdd152?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1399,7 +1958,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:56:27 GMT",
+ "Date": "Mon, 25 Jul 2022 13:50:09 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1407,31 +1966,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c2f18102-3f75-432d-a137-2a03833b4d72",
- "x-ms-ratelimit-remaining-subscription-reads": "11981",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T175628Z:c2f18102-3f75-432d-a137-2a03833b4d72",
+ "x-ms-correlation-request-id": "22bd9697-5855-4a37-b369-b9a1eafc38b8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11977",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T135009Z:22bd9697-5855-4a37-b369-b9a1eafc38b8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e4fe9686-6dd2-4e87-8ef6-63c98b030e46",
- "name": "e4fe9686-6dd2-4e87-8ef6-63c98b030e46",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc4b7d19-84c5-4030-93fd-d4a333fdd152",
+ "name": "dc4b7d19-84c5-4030-93fd-d4a333fdd152",
"status": "Deleting",
- "startTime": "2022-05-31T17:55:57.8120918Z",
+ "startTime": "2022-07-25T13:49:39.5171133Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/e4fe9686-6dd2-4e87-8ef6-63c98b030e46?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc4b7d19-84c5-4030-93fd-d4a333fdd152?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1439,7 +1998,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:56:58 GMT",
+ "Date": "Mon, 25 Jul 2022 13:50:39 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1447,71 +2006,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "32e3c124-f9a3-4430-ba3d-6d7b14b3c3e0",
- "x-ms-ratelimit-remaining-subscription-reads": "11980",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T175658Z:32e3c124-f9a3-4430-ba3d-6d7b14b3c3e0",
+ "x-ms-correlation-request-id": "182ec643-514e-44dc-9cbb-ca4b298e6e29",
+ "x-ms-ratelimit-remaining-subscription-reads": "11976",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T135040Z:182ec643-514e-44dc-9cbb-ca4b298e6e29",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e4fe9686-6dd2-4e87-8ef6-63c98b030e46",
- "name": "e4fe9686-6dd2-4e87-8ef6-63c98b030e46",
- "status": "Deleting",
- "startTime": "2022-05-31T17:55:57.8120918Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e4fe9686-6dd2-4e87-8ef6-63c98b030e46?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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, 31 May 2022 17:57: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": "100ff54d-0808-4bc5-b8d1-aff80d6fb54d",
- "x-ms-ratelimit-remaining-subscription-reads": "11979",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T175728Z:100ff54d-0808-4bc5-b8d1-aff80d6fb54d",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e4fe9686-6dd2-4e87-8ef6-63c98b030e46",
- "name": "e4fe9686-6dd2-4e87-8ef6-63c98b030e46",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc4b7d19-84c5-4030-93fd-d4a333fdd152",
+ "name": "dc4b7d19-84c5-4030-93fd-d4a333fdd152",
"status": "Succeeded",
- "startTime": "2022-05-31T17:55:57.8120918Z",
- "endTime": "2022-05-31T17:57:02.8264935Z",
+ "startTime": "2022-07-25T13:49:39.5171133Z",
+ "endTime": "2022-07-25T13:50:20.6544494Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/e4fe9686-6dd2-4e87-8ef6-63c98b030e46?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc4b7d19-84c5-4030-93fd-d4a333fdd152?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1519,7 +2038,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 17:57:28 GMT",
+ "Date": "Mon, 25 Jul 2022 13:50:40 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1527,25 +2046,25 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f74473e8-022a-4995-ba91-c1be12cfd97a",
- "x-ms-ratelimit-remaining-subscription-reads": "11978",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T175728Z:f74473e8-022a-4995-ba91-c1be12cfd97a",
+ "x-ms-correlation-request-id": "c7674b18-a30c-4f0b-be88-52309a62b3f0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11975",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T135040Z:c7674b18-a30c-4f0b-be88-52309a62b3f0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T17%3A55%3A57.8111539Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A49%3A39.4977291Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T17:49:50.4587554Z"
+ "CreatedOnDate": "2022-07-25T13:43:29.7355719Z"
},
"properties": {
- "fileSystemId": "1263f995-fa62-b4c2-71a1-24e8287e4997",
+ "fileSystemId": "482e972e-6ce8-8956-2cda-36a16777902d",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5",
+ "creationToken": "sdk-py-tests-vol-3-8b73262e",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -1573,28 +2092,28 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_10a58120",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_f382f00e",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "f68adfcd-828b-928c-3047-43f2f5c89d60",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8b73262e",
+ "poolId": "79a8f5e5-ae63-2d63-1f62-b9ab18fa32e3",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "1263f995-fa62-b4c2-71a1-24e8287e4997",
- "fileSystemId": "1263f995-fa62-b4c2-71a1-24e8287e4997",
+ "mountTargetId": "482e972e-6ce8-8956-2cda-36a16777902d",
+ "fileSystemId": "482e972e-6ce8-8956-2cda-36a16777902d",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
- "throughputMibps": 6.4,
+ "throughputMibps": 6.25,
"kerberosEnabled": false,
"securityStyle": "Unix",
"smbEncryption": false,
@@ -1609,79 +2128,80 @@
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Enabled",
+ "encrypted": true,
"provisioningState": "Deleting"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8b73262e?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "306",
+ "Content-Length": "320",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 18:00:50 GMT",
+ "Date": "Mon, 25 Jul 2022 13:54:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f8cbd02f-cd4e-4f15-a196-5f913ec90d5e",
+ "x-ms-correlation-request-id": "7d817a33-4562-4e34-ac99-7c49657bb054",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T180050Z:f8cbd02f-cd4e-4f15-a196-5f913ec90d5e"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T135403Z:7d817a33-4562-4e34-ac99-7c49657bb054"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8b73262e\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/eastus/operationResults/9fd9504d-c8b5-4b07-b6dc-e17ba5492102?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0a6bdfbf-2df8-4327-b4b5-856bcdc03407?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 18:01:01 GMT",
+ "Date": "Mon, 25 Jul 2022 13:54:16 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9fd9504d-c8b5-4b07-b6dc-e17ba5492102?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0a6bdfbf-2df8-4327-b4b5-856bcdc03407?api-version=2022-03-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": "854838b8-3754-4246-afe5-3e9c321d4980",
+ "x-ms-correlation-request-id": "08a56d53-1215-47cf-8e0f-aca2efda1c28",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T180102Z:854838b8-3754-4246-afe5-3e9c321d4980",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T135416Z:08a56d53-1215-47cf-8e0f-aca2efda1c28",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9fd9504d-c8b5-4b07-b6dc-e17ba5492102?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0a6bdfbf-2df8-4327-b4b5-856bcdc03407?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1689,7 +2209,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 18:01:31 GMT",
+ "Date": "Mon, 25 Jul 2022 13:54:46 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1697,31 +2217,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d316641a-65b0-41a4-9b14-399b0b91f5d1",
+ "x-ms-correlation-request-id": "3814c6c2-e0e4-4bef-b378-e6bfdd34b032",
"x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T180132Z:d316641a-65b0-41a4-9b14-399b0b91f5d1",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T135446Z:3814c6c2-e0e4-4bef-b378-e6bfdd34b032",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9fd9504d-c8b5-4b07-b6dc-e17ba5492102",
- "name": "9fd9504d-c8b5-4b07-b6dc-e17ba5492102",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0a6bdfbf-2df8-4327-b4b5-856bcdc03407",
+ "name": "0a6bdfbf-2df8-4327-b4b5-856bcdc03407",
"status": "Succeeded",
- "startTime": "2022-05-31T18:01:01.9572794Z",
- "endTime": "2022-05-31T18:01:18.3962357Z",
+ "startTime": "2022-07-25T13:54:16.446214Z",
+ "endTime": "2022-07-25T13:54:16.836846Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/9fd9504d-c8b5-4b07-b6dc-e17ba5492102?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0a6bdfbf-2df8-4327-b4b5-856bcdc03407?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1729,7 +2249,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 18:01:32 GMT",
+ "Date": "Mon, 25 Jul 2022 13:54:46 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1737,27 +2257,28 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f33039a7-4a9a-4390-b053-37f1a60dee60",
+ "x-ms-correlation-request-id": "36b5a581-80f7-470e-9568-ecd8b490547f",
"x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T180132Z:f33039a7-4a9a-4390-b053-37f1a60dee60",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T135447Z:36b5a581-80f7-470e-9568-ecd8b490547f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T18%3A01%3A01.9455447Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A54%3A16.4402328Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T17:49:17.7526196Z"
+ "CreatedOnDate": "2022-07-25T13:42:56.6846208Z"
},
"properties": {
- "poolId": "f68adfcd-828b-928c-3047-43f2f5c89d60",
+ "poolId": "79a8f5e5-ae63-2d63-1f62-b9ab18fa32e3",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1",
"qosType": "Auto",
- "totalThroughputMibps": 262.144,
+ "totalThroughputMibps": 256.0,
+ "utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
@@ -1765,174 +2286,174 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 31 May 2022 18:01:42 GMT",
+ "Date": "Mon, 25 Jul 2022 13:54:56 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "feaf0b70-c050-4fe2-80b0-46f656f863b7",
+ "x-ms-correlation-request-id": "29e2ca26-228f-4966-91b5-542b35ab46ed",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T180142Z:feaf0b70-c050-4fe2-80b0-46f656f863b7"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T135457Z:29e2ca26-228f-4966-91b5-542b35ab46ed"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 31 May 2022 18:01:52 GMT",
+ "Date": "Mon, 25 Jul 2022 13:55:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d36f1064-b363-46f7-aca9-156435d1cb26",
+ "x-ms-correlation-request-id": "35428c8c-1bdc-44c7-8ee8-521208773168",
"x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T180152Z:d36f1064-b363-46f7-aca9-156435d1cb26"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T135507Z:35428c8c-1bdc-44c7-8ee8-521208773168"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 31 May 2022 18:02:02 GMT",
+ "Date": "Mon, 25 Jul 2022 13:55:17 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2d6a2550-8374-4413-adc5-f9c476521fa1",
+ "x-ms-correlation-request-id": "a8c8cd0c-3f22-4a28-8cf8-9657a5cf0e66",
"x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T180203Z:2d6a2550-8374-4413-adc5-f9c476521fa1"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T135518Z:a8c8cd0c-3f22-4a28-8cf8-9657a5cf0e66"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 31 May 2022 18:02:12 GMT",
+ "Date": "Mon, 25 Jul 2022 13:55:27 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ed6b1f45-f714-42a4-8881-4e5a2b923b5c",
+ "x-ms-correlation-request-id": "cbeeab86-06a0-4b9f-95d7-74ab76c7daa8",
"x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T180213Z:ed6b1f45-f714-42a4-8881-4e5a2b923b5c"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T135528Z:cbeeab86-06a0-4b9f-95d7-74ab76c7daa8"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 18:02:22 GMT",
+ "Date": "Mon, 25 Jul 2022 13:55:38 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "821dd23b-5bb2-4d79-9f5c-4656fb93d2e3",
+ "x-ms-correlation-request-id": "4ce8785d-2a62-4d7a-8e71-75478090fe2d",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T180223Z:821dd23b-5bb2-4d79-9f5c-4656fb93d2e3"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T135538Z:4ce8785d-2a62-4d7a-8e71-75478090fe2d"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/eastus/operationResults/28a48d99-80da-4b27-955b-261e05b753c6?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7666031d-1c48-49d4-9325-2f2baabafca9?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 18:02:23 GMT",
+ "Date": "Mon, 25 Jul 2022 13:55:39 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/28a48d99-80da-4b27-955b-261e05b753c6?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7666031d-1c48-49d4-9325-2f2baabafca9?api-version=2022-03-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": "cffb264d-7c24-4dd8-a359-52321bc9697e",
+ "x-ms-correlation-request-id": "37554101-7539-4d35-ac20-cd28781286ec",
"x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T180224Z:cffb264d-7c24-4dd8-a359-52321bc9697e",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T135540Z:37554101-7539-4d35-ac20-cd28781286ec",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/28a48d99-80da-4b27-955b-261e05b753c6?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7666031d-1c48-49d4-9325-2f2baabafca9?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1940,7 +2461,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 18:02:53 GMT",
+ "Date": "Mon, 25 Jul 2022 13:56:09 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1948,31 +2469,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8ce224b4-5f97-4582-b1b1-fea5cd02814a",
+ "x-ms-correlation-request-id": "c31ae9d7-cb2e-47ce-97b7-f00790f524a5",
"x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T180254Z:8ce224b4-5f97-4582-b1b1-fea5cd02814a",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T135610Z:c31ae9d7-cb2e-47ce-97b7-f00790f524a5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/28a48d99-80da-4b27-955b-261e05b753c6",
- "name": "28a48d99-80da-4b27-955b-261e05b753c6",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7666031d-1c48-49d4-9325-2f2baabafca9",
+ "name": "7666031d-1c48-49d4-9325-2f2baabafca9",
"status": "Succeeded",
- "startTime": "2022-05-31T18:02:24.2642336Z",
- "endTime": "2022-05-31T18:02:24.3891929Z",
+ "startTime": "2022-07-25T13:55:40.1271974Z",
+ "endTime": "2022-07-25T13:55:40.2209242Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/28a48d99-80da-4b27-955b-261e05b753c6?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7666031d-1c48-49d4-9325-2f2baabafca9?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1980,7 +2501,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 18:02:53 GMT",
+ "Date": "Mon, 25 Jul 2022 13:56:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1988,19 +2509,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b5bb0e3f-6035-4d47-9f01-b1dc7df3f7bf",
+ "x-ms-correlation-request-id": "7ef1f9a8-2b0f-4f24-9173-f09892882282",
"x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T180254Z:b5bb0e3f-6035-4d47-9f01-b1dc7df3f7bf",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T135610Z:7ef1f9a8-2b0f-4f24-9173-f09892882282",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T18%3A02%3A24.2578316Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A55%3A40.1261341Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T17:48:44.3529663Z"
+ "CreatedOnDate": "2022-07-25T13:42:13.9264653Z"
},
"properties": {
"encryption": {
@@ -2010,44 +2531,79 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T17:48:45.5304532Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T13:42:23.61195Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T17:48:45.5304532Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T13:42:23.61195Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 18:02:56 GMT",
+ "Date": "Mon, 25 Jul 2022 13:56:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "57772ada-2a85-4713-887c-53fe5c24e7de",
+ "x-ms-correlation-request-id": "f50a404f-e777-4b7b-ae9c-d94c8d9ca0f4",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220531T180256Z:57772ada-2a85-4713-887c-53fe5c24e7de"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T135611Z:f50a404f-e777-4b7b-ae9c-d94c8d9ca0f4"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e?api-version=2021-08-01",
+ "RequestMethod": "DELETE",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "0",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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/9ead68f5-84ec-4667-97a8-2f6d2682b003?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "0",
+ "Date": "Mon, 25 Jul 2022 13:56:11 GMT",
+ "Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/9ead68f5-84ec-4667-97a8-2f6d2682b003?api-version=2021-08-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": "a019b0be-0842-4102-be55-11a9dfa67d9b",
+ "x-ms-correlation-request-id": "2ab16308-7e30-49cf-bd9e-8f1e59eeb4a2",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T135612Z:2ab16308-7e30-49cf-bd9e-8f1e59eeb4a2"
+ },
+ "ResponseBody": null
}
],
"Variables": {}
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 357b18c1e556..acd448ba0002 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
@@ -7,7 +7,7 @@
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 31 May 2022 16:39:45 GMT",
+ "Date": "Mon, 25 Jul 2022 13:25: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.12821.9 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 31 May 2022 16:39:45 GMT",
+ "Date": "Mon, 25 Jul 2022 13:25: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.12821.9 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - NEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "9919b16c-007e-4af2-96f0-6f7319c8ab6d",
+ "client-request-id": "960c14f5-2908-41d8-a9ec-4444a79370bd",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "9919b16c-007e-4af2-96f0-6f7319c8ab6d",
+ "client-request-id": "960c14f5-2908-41d8-a9ec-4444a79370bd",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:39:45 GMT",
+ "Date": "Mon, 25 Jul 2022 13:25:39 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12821.9 - NEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - WEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,67 +213,607 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "22",
+ "Content-Length": "93",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2",
+ "properties": {
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ }
+ }
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d06b161f-fa20-4612-82dc-d1c21c2c98c2?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/44226f7b-61ef-4cf9-bdeb-7e34701ab823?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Length": "686",
+ "Content-Length": "746",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:39:50 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T16%3A39%3A50.1804658Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 13:25:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Retry-After": "3",
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "311ded73-cab9-47be-bf8a-63613e404cfd",
+ "x-ms-arm-service-request-id": "35a719de-8a48-4d8e-a3dd-2effec83f0a9",
+ "x-ms-correlation-request-id": "de4e8162-6d3e-458d-9513-334468acb318",
"x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T163950Z:311ded73-cab9-47be-bf8a-63613e404cfd",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T132551Z:de4e8162-6d3e-458d-9513-334468acb318"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-dde5273b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b",
+ "etag": "W/\u0022e0120194-ed33-4dbf-beaa-19f54121b3ea\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-25T13:25:43.9064951Z"
+ },
+ "properties": {
+ "provisioningState": "Updating",
+ "resourceGuid": "5e547300-408d-45b6-add1-755ddd08230f",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/44226f7b-61ef-4cf9-bdeb-7e34701ab823?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 13:25: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": "94cca6e4-44f5-4db3-816d-0c6b4e22ad8a",
+ "x-ms-correlation-request-id": "bc4720d1-20d6-49ca-b84e-e3f768f7e781",
+ "x-ms-ratelimit-remaining-subscription-reads": "11999",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T132555Z:bc4720d1-20d6-49ca-b84e-e3f768f7e781"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 13:25:55 GMT",
+ "ETag": "W/\u0022c8fc009e-68eb-474c-b064-57e59c9e8cc4\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": "a12c2b92-60f5-4e84-aef3-c7f6d8b94f73",
+ "x-ms-correlation-request-id": "558637ae-b119-49ae-bae7-aa4b662f8420",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T132555Z:558637ae-b119-49ae-bae7-aa4b662f8420"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-dde5273b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b",
+ "etag": "W/\u0022c8fc009e-68eb-474c-b064-57e59c9e8cc4\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-25T13:25:43.9064951Z"
+ },
+ "properties": {
+ "provisioningState": "Succeeded",
+ "resourceGuid": "5e547300-408d-45b6-add1-755ddd08230f",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "151",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "RequestBody": {
+ "properties": {
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "properties": {
+ "serviceName": "Microsoft.Netapp/volumes"
+ }
+ }
+ ]
+ }
+ },
+ "StatusCode": 201,
+ "ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/90fb5a3b-2999-4bb5-8431-21818474f7ea?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "1318",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 13:25:55 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Retry-After": "3",
+ "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": "02babee3-737d-4e94-b7e1-e1091eadb90b",
+ "x-ms-correlation-request-id": "4629c830-9835-416d-a242-5e71d82c9c33",
+ "x-ms-ratelimit-remaining-subscription-writes": "1198",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T132556Z:4629c830-9835-416d-a242-5e71d82c9c33"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b/subnets/default",
+ "etag": "W/\u002233971e94-23db-48af-b31e-9180e01ff491\u0022",
+ "properties": {
+ "provisioningState": "Updating",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u002233971e94-23db-48af-b31e-9180e01ff491\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/90fb5a3b-2999-4bb5-8431-21818474f7ea?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 13:25:59 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": "ae8d282d-1824-4cf6-8429-2170786ceb47",
+ "x-ms-correlation-request-id": "37a1fa40-0326-4ddc-bd70-826f579cb961",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T132559Z:37a1fa40-0326-4ddc-bd70-826f579cb961"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 13:25:59 GMT",
+ "ETag": "W/\u00228b42fb70-6845-4c4f-920e-d60a2f983da9\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": "6a6fa898-c0d7-4499-839d-440391a6597d",
+ "x-ms-correlation-request-id": "6f67a818-1312-470f-ada0-7b5779b9604f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11996",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T132600Z:6f67a818-1312-470f-ada0-7b5779b9604f"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b/subnets/default",
+ "etag": "W/\u00228b42fb70-6845-4c4f-920e-d60a2f983da9\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u00228b42fb70-6845-4c4f-920e-d60a2f983da9\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "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.11.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": "Mon, 25 Jul 2022 13:25: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.13315.8 - NEULR1 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.11.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": "Mon, 25 Jul 2022 13:25: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.13315.8 - NEULR1 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": "03da2fb1-ed7c-4c0c-bd0b-c55204d05ce4",
+ "Connection": "keep-alive",
+ "Content-Length": "281",
+ "Content-Type": "application/x-www-form-urlencoded",
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.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.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
+ },
+ "RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "03da2fb1-ed7c-4c0c-bd0b-c55204d05ce4",
+ "Content-Length": "114",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 13:25:59 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.13315.8 - WEULR2 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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b?api-version=2022-03-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "23",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/fa6d974e-f110-4e4c-a72f-1a0df78b285b?api-version=2022-03-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "702",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 13:26:04 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T13%3A26%3A04.1397683Z\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": "276d676d-9787-42e6-aa2e-727998f9a5f6",
+ "x-ms-ratelimit-remaining-subscription-writes": "1197",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T132605Z:276d676d-9787-42e6-aa2e-727998f9a5f6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T16%3A39%3A50.1804658Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A26%3A04.1397683Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T16:39:47.3509191Z"
+ "CreatedOnDate": "2022-07-25T13:26:01.6970206Z"
},
"properties": {
"provisioningState": "Creating"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T16:39:49.6151358Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T13:26:03.1824008Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T16:39:49.6151358Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T13:26:03.1824008Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d06b161f-fa20-4612-82dc-d1c21c2c98c2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fa6d974e-f110-4e4c-a72f-1a0df78b285b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +821,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:40:21 GMT",
+ "Date": "Mon, 25 Jul 2022 13:26:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +829,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "bc0da1fc-bfa7-4dd3-8f57-60ed396eab6b",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164021Z:bc0da1fc-bfa7-4dd3-8f57-60ed396eab6b",
+ "x-ms-correlation-request-id": "03171472-d2ee-4467-b233-9ef87d5b3779",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T132635Z:03171472-d2ee-4467-b233-9ef87d5b3779",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d06b161f-fa20-4612-82dc-d1c21c2c98c2",
- "name": "d06b161f-fa20-4612-82dc-d1c21c2c98c2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fa6d974e-f110-4e4c-a72f-1a0df78b285b",
+ "name": "fa6d974e-f110-4e4c-a72f-1a0df78b285b",
"status": "Succeeded",
- "startTime": "2022-05-31T16:39:50.1859157Z",
- "endTime": "2022-05-31T16:39:50.20148Z",
+ "startTime": "2022-07-25T13:26:04.1453291Z",
+ "endTime": "2022-07-25T13:26:04.1921433Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +861,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:40:21 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T16%3A39%3A50.204307Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 13:26:35 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T13%3A26%3A04.1956479Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,21 +870,39 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f8b02227-08ca-4101-8bfa-cf78e6574d05",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164021Z:f8b02227-08ca-4101-8bfa-cf78e6574d05",
+ "x-ms-correlation-request-id": "ba7d6287-bdfa-4819-99da-b803c1e854aa",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T132636Z:ba7d6287-bdfa-4819-99da-b803c1e854aa",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T16%3A39%3A50.204307Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A26%3A04.1956479Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T16:39:47.3509191Z"
+ "CreatedOnDate": "2022-07-25T13:26:01.6970206Z"
},
"properties": {
+ "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"
},
@@ -351,27 +910,27 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T16:39:49.6151358Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T13:26:03.1824008Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T16:39:49.6151358Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T13:26:03.1824008Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "137",
+ "Content-Length": "138",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"size": 4398046511104,
"serviceLevel": "Premium",
@@ -381,30 +940,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/691dd744-27d7-410b-9b3e-60be4e67f8e9?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a3d047ae-22ce-43fb-8dc8-7c38e2d6227f?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "904",
+ "Content-Length": "918",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:40:23 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T16%3A40%3A23.1486082Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 13:26:38 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T13%3A26%3A37.8584268Z\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": "6735a649-bbbd-433e-9142-f49b5f24534d",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164023Z:6735a649-bbbd-433e-9142-f49b5f24534d",
+ "x-ms-correlation-request-id": "477b91ba-ea90-4a26-8adc-8b682f0c09fb",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T132638Z:477b91ba-ea90-4a26-8adc-8b682f0c09fb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T16%3A40%3A23.1486082Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A26%3A37.8584268Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T16:40:21.6935360Z"
+ "CreatedOnDate": "2022-07-25T13:26:36.5697027Z"
},
"properties": {
"serviceLevel": "Premium",
@@ -417,22 +976,22 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T16:40:22.8548833Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T13:26:37.6723071Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T16:40:22.8548833Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T13:26:37.6723071Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/691dd744-27d7-410b-9b3e-60be4e67f8e9?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a3d047ae-22ce-43fb-8dc8-7c38e2d6227f?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -440,7 +999,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:40:53 GMT",
+ "Date": "Mon, 25 Jul 2022 13:27:09 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -448,31 +1007,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "14a634f7-c9ed-4a8d-b5a6-69cd10161b25",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164054Z:14a634f7-c9ed-4a8d-b5a6-69cd10161b25",
+ "x-ms-correlation-request-id": "483f05a0-803e-42d8-853c-f94784a7c212",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T132709Z:483f05a0-803e-42d8-853c-f94784a7c212",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/691dd744-27d7-410b-9b3e-60be4e67f8e9",
- "name": "691dd744-27d7-410b-9b3e-60be4e67f8e9",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a3d047ae-22ce-43fb-8dc8-7c38e2d6227f",
+ "name": "a3d047ae-22ce-43fb-8dc8-7c38e2d6227f",
"status": "Succeeded",
- "startTime": "2022-05-31T16:40:23.1580119Z",
- "endTime": "2022-05-31T16:40:23.3298866Z",
+ "startTime": "2022-07-25T13:26:37.8575417Z",
+ "endTime": "2022-07-25T13:26:38.1388012Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -480,8 +1039,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:40:53 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T16%3A40%3A23.3305533Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 13:27:09 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T13%3A26%3A38.1419139Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -489,26 +1048,26 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "dc9eac6d-fa21-44ea-a16b-a54134c69169",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164054Z:dc9eac6d-fa21-44ea-a16b-a54134c69169",
+ "x-ms-correlation-request-id": "be709f25-2a4b-4f86-88fe-f273a19c33d5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T132709Z:be709f25-2a4b-4f86-88fe-f273a19c33d5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T16%3A40%3A23.3305533Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A26%3A38.1419139Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T16:40:21.6935360Z"
+ "CreatedOnDate": "2022-07-25T13:26:36.5697027Z"
},
"properties": {
- "poolId": "69be0336-176e-0c27-cf6c-8e8b74d53dbc",
+ "poolId": "5beba864-1748-7d33-1017-4b98e02c259b",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
- "totalThroughputMibps": 262.144,
+ "totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
@@ -517,26 +1076,26 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "786",
+ "Content-Length": "810",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-dde5273b",
"serviceLevel": "Premium",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -556,39 +1115,39 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c77bd708-f14d-4965-9940-6a9a7a73b140?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/40ba97f4-ce01-4a01-9c17-9c98f9b18a7c?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "1553",
+ "Content-Length": "1606",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:40:55 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T16%3A40%3A55.7719479Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 13:27:11 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T13%3A27%3A11.6080677Z\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": "39ddde6d-097d-40ad-a0c6-7fd6daa00b44",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164056Z:39ddde6d-097d-40ad-a0c6-7fd6daa00b44",
+ "x-ms-correlation-request-id": "e178a97d-f004-4b15-8048-05d17f1e4316",
+ "x-ms-ratelimit-remaining-subscription-writes": "1195",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T132712Z:e178a97d-f004-4b15-8048-05d17f1e4316",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T16%3A40%3A55.7719479Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A27%3A11.6080677Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T16:40:54.6380687Z"
+ "CreatedOnDate": "2022-07-25T13:27:10.2500623Z"
},
"properties": {
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-dde5273b",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -609,22 +1168,22 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T16:40:55.3951376Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T13:27:11.3176958Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T16:40:55.3951376Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T13:27:11.3176958Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c77bd708-f14d-4965-9940-6a9a7a73b140?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/40ba97f4-ce01-4a01-9c17-9c98f9b18a7c?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -632,7 +1191,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:41:25 GMT",
+ "Date": "Mon, 25 Jul 2022 13:27:42 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -640,31 +1199,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f1b0cfdf-b6f3-4ba3-ad82-994ea8e5d1f5",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164126Z:f1b0cfdf-b6f3-4ba3-ad82-994ea8e5d1f5",
+ "x-ms-correlation-request-id": "f7203e51-c983-42ed-8e42-81ceb944aa85",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T132742Z:f7203e51-c983-42ed-8e42-81ceb944aa85",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c77bd708-f14d-4965-9940-6a9a7a73b140",
- "name": "c77bd708-f14d-4965-9940-6a9a7a73b140",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/40ba97f4-ce01-4a01-9c17-9c98f9b18a7c",
+ "name": "40ba97f4-ce01-4a01-9c17-9c98f9b18a7c",
"status": "Creating",
- "startTime": "2022-05-31T16:40:55.7672538Z",
+ "startTime": "2022-07-25T13:27:11.6003353Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/c77bd708-f14d-4965-9940-6a9a7a73b140?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/40ba97f4-ce01-4a01-9c17-9c98f9b18a7c?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -672,7 +1231,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:41:55 GMT",
+ "Date": "Mon, 25 Jul 2022 13:28:12 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -680,31 +1239,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "745ac025-c399-458c-8110-3db7af037999",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164156Z:745ac025-c399-458c-8110-3db7af037999",
+ "x-ms-correlation-request-id": "f5441009-1565-41e7-b9cc-5c292d76f49c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T132813Z:f5441009-1565-41e7-b9cc-5c292d76f49c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c77bd708-f14d-4965-9940-6a9a7a73b140",
- "name": "c77bd708-f14d-4965-9940-6a9a7a73b140",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/40ba97f4-ce01-4a01-9c17-9c98f9b18a7c",
+ "name": "40ba97f4-ce01-4a01-9c17-9c98f9b18a7c",
"status": "Creating",
- "startTime": "2022-05-31T16:40:55.7672538Z",
+ "startTime": "2022-07-25T13:27:11.6003353Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/c77bd708-f14d-4965-9940-6a9a7a73b140?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/40ba97f4-ce01-4a01-9c17-9c98f9b18a7c?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -712,7 +1271,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:42:26 GMT",
+ "Date": "Mon, 25 Jul 2022 13:28:43 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -720,31 +1279,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "bd2b25f0-6052-4b81-bd24-02a12a3dd40e",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164226Z:bd2b25f0-6052-4b81-bd24-02a12a3dd40e",
+ "x-ms-correlation-request-id": "8cb8a782-7087-42be-a73a-5f33319a908a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T132843Z:8cb8a782-7087-42be-a73a-5f33319a908a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c77bd708-f14d-4965-9940-6a9a7a73b140",
- "name": "c77bd708-f14d-4965-9940-6a9a7a73b140",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/40ba97f4-ce01-4a01-9c17-9c98f9b18a7c",
+ "name": "40ba97f4-ce01-4a01-9c17-9c98f9b18a7c",
"status": "Creating",
- "startTime": "2022-05-31T16:40:55.7672538Z",
+ "startTime": "2022-07-25T13:27:11.6003353Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/c77bd708-f14d-4965-9940-6a9a7a73b140?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/40ba97f4-ce01-4a01-9c17-9c98f9b18a7c?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -752,7 +1311,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:42:56 GMT",
+ "Date": "Mon, 25 Jul 2022 13:29:13 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -760,31 +1319,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1120da97-d016-4a37-b52a-2d8d311a5da4",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164257Z:1120da97-d016-4a37-b52a-2d8d311a5da4",
+ "x-ms-correlation-request-id": "306a523b-f43b-4a56-ae18-99dda5203b95",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T132913Z:306a523b-f43b-4a56-ae18-99dda5203b95",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c77bd708-f14d-4965-9940-6a9a7a73b140",
- "name": "c77bd708-f14d-4965-9940-6a9a7a73b140",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/40ba97f4-ce01-4a01-9c17-9c98f9b18a7c",
+ "name": "40ba97f4-ce01-4a01-9c17-9c98f9b18a7c",
"status": "Creating",
- "startTime": "2022-05-31T16:40:55.7672538Z",
+ "startTime": "2022-07-25T13:27:11.6003353Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/c77bd708-f14d-4965-9940-6a9a7a73b140?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/40ba97f4-ce01-4a01-9c17-9c98f9b18a7c?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -792,7 +1351,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:43:26 GMT",
+ "Date": "Mon, 25 Jul 2022 13:29:43 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -800,31 +1359,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b351e90e-17a0-4f05-96fe-e6e6122291e5",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164327Z:b351e90e-17a0-4f05-96fe-e6e6122291e5",
+ "x-ms-correlation-request-id": "4b7efd42-fbeb-48fc-b744-9bfd12ffb1ad",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T132944Z:4b7efd42-fbeb-48fc-b744-9bfd12ffb1ad",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c77bd708-f14d-4965-9940-6a9a7a73b140",
- "name": "c77bd708-f14d-4965-9940-6a9a7a73b140",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/40ba97f4-ce01-4a01-9c17-9c98f9b18a7c",
+ "name": "40ba97f4-ce01-4a01-9c17-9c98f9b18a7c",
"status": "Creating",
- "startTime": "2022-05-31T16:40:55.7672538Z",
+ "startTime": "2022-07-25T13:27:11.6003353Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/c77bd708-f14d-4965-9940-6a9a7a73b140?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/40ba97f4-ce01-4a01-9c17-9c98f9b18a7c?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -832,7 +1391,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:43:56 GMT",
+ "Date": "Mon, 25 Jul 2022 13:30:14 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -840,31 +1399,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3d29dd9a-a858-4f3e-baee-4b73df6ea867",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164357Z:3d29dd9a-a858-4f3e-baee-4b73df6ea867",
+ "x-ms-correlation-request-id": "a932f944-e532-4aa6-bf34-9891ef904080",
+ "x-ms-ratelimit-remaining-subscription-reads": "11986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133014Z:a932f944-e532-4aa6-bf34-9891ef904080",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c77bd708-f14d-4965-9940-6a9a7a73b140",
- "name": "c77bd708-f14d-4965-9940-6a9a7a73b140",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/40ba97f4-ce01-4a01-9c17-9c98f9b18a7c",
+ "name": "40ba97f4-ce01-4a01-9c17-9c98f9b18a7c",
"status": "Creating",
- "startTime": "2022-05-31T16:40:55.7672538Z",
+ "startTime": "2022-07-25T13:27:11.6003353Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/c77bd708-f14d-4965-9940-6a9a7a73b140?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/40ba97f4-ce01-4a01-9c17-9c98f9b18a7c?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -872,7 +1431,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:44:26 GMT",
+ "Date": "Mon, 25 Jul 2022 13:30:44 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -880,31 +1439,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "13cd584f-207b-45d8-8b77-8c6664f2799c",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164427Z:13cd584f-207b-45d8-8b77-8c6664f2799c",
+ "x-ms-correlation-request-id": "eb105009-860c-4cff-b8b0-3ef7f537aeef",
+ "x-ms-ratelimit-remaining-subscription-reads": "11985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133044Z:eb105009-860c-4cff-b8b0-3ef7f537aeef",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c77bd708-f14d-4965-9940-6a9a7a73b140",
- "name": "c77bd708-f14d-4965-9940-6a9a7a73b140",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/40ba97f4-ce01-4a01-9c17-9c98f9b18a7c",
+ "name": "40ba97f4-ce01-4a01-9c17-9c98f9b18a7c",
"status": "Creating",
- "startTime": "2022-05-31T16:40:55.7672538Z",
+ "startTime": "2022-07-25T13:27:11.6003353Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/c77bd708-f14d-4965-9940-6a9a7a73b140?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/40ba97f4-ce01-4a01-9c17-9c98f9b18a7c?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -912,7 +1471,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:44:57 GMT",
+ "Date": "Mon, 25 Jul 2022 13:31:14 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -920,31 +1479,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b310a53d-9703-4227-bbd4-32edab19efe3",
- "x-ms-ratelimit-remaining-subscription-reads": "11988",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164457Z:b310a53d-9703-4227-bbd4-32edab19efe3",
+ "x-ms-correlation-request-id": "6dd89fbf-28cd-4efb-92ed-c06c3b543cc6",
+ "x-ms-ratelimit-remaining-subscription-reads": "11984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133114Z:6dd89fbf-28cd-4efb-92ed-c06c3b543cc6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c77bd708-f14d-4965-9940-6a9a7a73b140",
- "name": "c77bd708-f14d-4965-9940-6a9a7a73b140",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/40ba97f4-ce01-4a01-9c17-9c98f9b18a7c",
+ "name": "40ba97f4-ce01-4a01-9c17-9c98f9b18a7c",
"status": "Succeeded",
- "startTime": "2022-05-31T16:40:55.7672538Z",
- "endTime": "2022-05-31T16:44:52.0626541Z",
+ "startTime": "2022-07-25T13:27:11.6003353Z",
+ "endTime": "2022-07-25T13:31:12.6372998Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -952,8 +1511,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:44:57 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-31T16%3A44%3A52.0502529Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 13:31:15 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T13%3A31%3A12.6393814Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -961,24 +1520,24 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e246cf17-9d5c-4d6e-8a05-4a6074493785",
- "x-ms-ratelimit-remaining-subscription-reads": "11987",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164458Z:e246cf17-9d5c-4d6e-8a05-4a6074493785",
+ "x-ms-correlation-request-id": "81f732b9-d0f0-4c07-b159-bdf806d7efcc",
+ "x-ms-ratelimit-remaining-subscription-reads": "11983",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133115Z:81f732b9-d0f0-4c07-b159-bdf806d7efcc",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T16%3A44%3A52.0502529Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A31%3A12.6393814Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T16:40:54.6380687Z"
+ "CreatedOnDate": "2022-07-25T13:27:10.2500623Z"
},
"properties": {
- "fileSystemId": "9dea1318-550f-84e8-f7e2-09d4c31dc83b",
+ "fileSystemId": "cc769d74-e302-608c-bf21-14164ad3eac1",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-dde5273b",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1004,10 +1563,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_07f09647",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d0de01b7",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1019,12 +1578,12 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "9dea1318-550f-84e8-f7e2-09d4c31dc83b",
- "fileSystemId": "9dea1318-550f-84e8-f7e2-09d4c31dc83b",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "cc769d74-e302-608c-bf21-14164ad3eac1",
+ "fileSystemId": "cc769d74-e302-608c-bf21-14164ad3eac1",
+ "ipAddress": "10.0.0.4"
}
],
- "throughputMibps": 6.4,
+ "throughputMibps": 6.25,
"volumeSpecName": "generic",
"coolAccess": false,
"avsDataStore": "Disabled",
@@ -1038,7 +1597,7 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
@@ -1046,7 +1605,7 @@
"Connection": "keep-alive",
"Content-Length": "59",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
"properties": {
@@ -1056,25 +1615,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dd655ff3-2a2a-471a-8eae-dad6017dc78f?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/22ba625f-3c4e-4949-8391-34f29db69946?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "511",
+ "Content-Length": "540",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:44:58 GMT",
+ "Date": "Mon, 25 Jul 2022 13:31:15 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dd655ff3-2a2a-471a-8eae-dad6017dc78f?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/22ba625f-3c4e-4949-8391-34f29db69946?api-version=2022-03-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": "a125bb3e-107d-453c-8352-64845dd3d459",
- "x-ms-ratelimit-remaining-subscription-writes": "1196",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164458Z:a125bb3e-107d-453c-8352-64845dd3d459",
+ "x-ms-correlation-request-id": "9b31d56b-9cf1-48e1-a50b-24f783fa3580",
+ "x-ms-ratelimit-remaining-subscription-writes": "1194",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133115Z:9b31d56b-9cf1-48e1-a50b-24f783fa3580",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-subvolume-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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",
+ "name": "sdk-py-tests-acc-1-dde5273b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-dde5273b/sdk-py-tests-subvolume-1",
"type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes",
"properties": {
"path": "/sub_vol_1.txt",
@@ -1084,13 +1643,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1098,7 +1657,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:45:03 GMT",
+ "Date": "Mon, 25 Jul 2022 13:31:16 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1106,14 +1665,14 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e010b07b-2465-4f4c-aafb-c72119a8e527",
- "x-ms-ratelimit-remaining-subscription-reads": "11986",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164503Z:e010b07b-2465-4f4c-aafb-c72119a8e527",
+ "x-ms-correlation-request-id": "cf02abfb-c762-4f38-aed9-33820cd2f6f9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133116Z:cf02abfb-c762-4f38-aed9-33820cd2f6f9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-subvolume-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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",
+ "name": "sdk-py-tests-acc-1-dde5273b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-dde5273b/sdk-py-tests-subvolume-1",
"type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes",
"properties": {
"path": "/sub_vol_1.txt",
@@ -1122,7 +1681,7 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
@@ -1130,7 +1689,7 @@
"Connection": "keep-alive",
"Content-Length": "59",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
"properties": {
@@ -1140,25 +1699,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0f1c28e9-a193-4f7a-aa93-2d16944b3858?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/46b9622e-8f39-4423-af7c-f7ed823c152d?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "511",
+ "Content-Length": "540",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:45:04 GMT",
+ "Date": "Mon, 25 Jul 2022 13:31:16 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0f1c28e9-a193-4f7a-aa93-2d16944b3858?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/46b9622e-8f39-4423-af7c-f7ed823c152d?api-version=2022-03-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": "acc9206d-f9a5-4231-b94f-5e1148931836",
- "x-ms-ratelimit-remaining-subscription-writes": "1195",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164504Z:acc9206d-f9a5-4231-b94f-5e1148931836",
+ "x-ms-correlation-request-id": "d9adc69a-80fc-41fc-9735-736d27aa322d",
+ "x-ms-ratelimit-remaining-subscription-writes": "1193",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133116Z:d9adc69a-80fc-41fc-9735-736d27aa322d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-subvolume-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": {
"path": "/sub_vol_2.txt",
@@ -1168,13 +1727,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b/subvolumes?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1182,7 +1741,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:45:04 GMT",
+ "Date": "Mon, 25 Jul 2022 13:31:17 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1190,16 +1749,16 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "16a82d29-f36d-40b7-a196-4f354c7e572e",
- "x-ms-ratelimit-remaining-subscription-reads": "11985",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164504Z:16a82d29-f36d-40b7-a196-4f354c7e572e",
+ "x-ms-correlation-request-id": "b23930d6-9ce4-4d23-b4eb-9bfd8a64e2b2",
+ "x-ms-ratelimit-remaining-subscription-reads": "11981",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133117Z:b23930d6-9ce4-4d23-b4eb-9bfd8a64e2b2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-subvolume-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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",
+ "name": "sdk-py-tests-acc-1-dde5273b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-dde5273b/sdk-py-tests-subvolume-1",
"type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes",
"properties": {
"path": "/sub_vol_1.txt",
@@ -1207,8 +1766,8 @@
}
},
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-subvolume-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": {
"path": "/sub_vol_2.txt",
@@ -1219,43 +1778,43 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/50cefc82-aa57-45bc-b5db-212c39034528?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3d17de20-21a5-4669-91bf-f4ed40e36e17?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 16:45:04 GMT",
+ "Date": "Mon, 25 Jul 2022 13:31:17 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/50cefc82-aa57-45bc-b5db-212c39034528?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3d17de20-21a5-4669-91bf-f4ed40e36e17?api-version=2022-03-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": "77600874-a3d8-4ae8-8c93-9eb71f62217b",
+ "x-ms-correlation-request-id": "216f273f-b086-4704-a108-7fdd297df7e7",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164505Z:77600874-a3d8-4ae8-8c93-9eb71f62217b",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133117Z:216f273f-b086-4704-a108-7fdd297df7e7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dd655ff3-2a2a-471a-8eae-dad6017dc78f?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/22ba625f-3c4e-4949-8391-34f29db69946?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1263,7 +1822,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:45:28 GMT",
+ "Date": "Mon, 25 Jul 2022 13:31:45 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1271,31 +1830,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "871b5809-4d28-4c20-9081-2777c78cb4e1",
- "x-ms-ratelimit-remaining-subscription-reads": "11984",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164528Z:871b5809-4d28-4c20-9081-2777c78cb4e1",
+ "x-ms-correlation-request-id": "b8a9eb8a-31ad-41df-9337-f6c1b4aae975",
+ "x-ms-ratelimit-remaining-subscription-reads": "11980",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133146Z:b8a9eb8a-31ad-41df-9337-f6c1b4aae975",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dd655ff3-2a2a-471a-8eae-dad6017dc78f",
- "name": "dd655ff3-2a2a-471a-8eae-dad6017dc78f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/22ba625f-3c4e-4949-8391-34f29db69946",
+ "name": "22ba625f-3c4e-4949-8391-34f29db69946",
"status": "Succeeded",
- "startTime": "2022-05-31T16:44:58.3934454Z",
- "endTime": "2022-05-31T16:44:59.8721107Z",
+ "startTime": "2022-07-25T13:31:15.8250978Z",
+ "endTime": "2022-07-25T13:31:16.7938636Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
@@ -1303,15 +1862,15 @@
"Cache-Control": "no-cache",
"Content-Length": "84",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:45:28 GMT",
+ "Date": "Mon, 25 Jul 2022 13:31: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": "1ee05b6d-b9e8-4f70-aaaa-bc5564c735a7",
- "x-ms-ratelimit-remaining-subscription-reads": "11983",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164529Z:1ee05b6d-b9e8-4f70-aaaa-bc5564c735a7",
+ "x-ms-correlation-request-id": "3f9bf18d-c60b-4af2-b43f-24079cb98e8b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11979",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133146Z:3f9bf18d-c60b-4af2-b43f-24079cb98e8b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -1322,13 +1881,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0f1c28e9-a193-4f7a-aa93-2d16944b3858?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/46b9622e-8f39-4423-af7c-f7ed823c152d?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1336,7 +1895,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:45:33 GMT",
+ "Date": "Mon, 25 Jul 2022 13:31:46 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1344,31 +1903,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "808ac73e-4432-4d21-b063-4e6de133856f",
- "x-ms-ratelimit-remaining-subscription-reads": "11982",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164534Z:808ac73e-4432-4d21-b063-4e6de133856f",
+ "x-ms-correlation-request-id": "7e701744-bfa3-4a3d-a985-2e0e6df28a7e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11978",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133147Z:7e701744-bfa3-4a3d-a985-2e0e6df28a7e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0f1c28e9-a193-4f7a-aa93-2d16944b3858",
- "name": "0f1c28e9-a193-4f7a-aa93-2d16944b3858",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/46b9622e-8f39-4423-af7c-f7ed823c152d",
+ "name": "46b9622e-8f39-4423-af7c-f7ed823c152d",
"status": "Succeeded",
- "startTime": "2022-05-31T16:45:04.1845767Z",
- "endTime": "2022-05-31T16:45:04.8251577Z",
+ "startTime": "2022-07-25T13:31:16.8095404Z",
+ "endTime": "2022-07-25T13:31:17.7470707Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-2"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1376,7 +1935,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:45:34 GMT",
+ "Date": "Mon, 25 Jul 2022 13:31:47 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1384,14 +1943,14 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3cbdc2c7-dbab-4290-b11c-bcbe26d165d3",
- "x-ms-ratelimit-remaining-subscription-reads": "11981",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164534Z:3cbdc2c7-dbab-4290-b11c-bcbe26d165d3",
+ "x-ms-correlation-request-id": "b11b6ae1-ce64-42f8-bf0b-cb1d066fbc09",
+ "x-ms-ratelimit-remaining-subscription-reads": "11977",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133147Z:b11b6ae1-ce64-42f8-bf0b-cb1d066fbc09",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-subvolume-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": {
"path": "/sub_vol_2.txt",
@@ -1400,13 +1959,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/50cefc82-aa57-45bc-b5db-212c39034528?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3d17de20-21a5-4669-91bf-f4ed40e36e17?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1414,7 +1973,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:45:34 GMT",
+ "Date": "Mon, 25 Jul 2022 13:31:47 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1422,31 +1981,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "19e149b4-32b3-40ce-bc21-65263bb4d71a",
- "x-ms-ratelimit-remaining-subscription-reads": "11980",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164535Z:19e149b4-32b3-40ce-bc21-65263bb4d71a",
+ "x-ms-correlation-request-id": "eba5a4db-e56d-4d11-8950-3f09ce6c8634",
+ "x-ms-ratelimit-remaining-subscription-reads": "11976",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133148Z:eba5a4db-e56d-4d11-8950-3f09ce6c8634",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/50cefc82-aa57-45bc-b5db-212c39034528",
- "name": "50cefc82-aa57-45bc-b5db-212c39034528",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3d17de20-21a5-4669-91bf-f4ed40e36e17",
+ "name": "3d17de20-21a5-4669-91bf-f4ed40e36e17",
"status": "Succeeded",
- "startTime": "2022-05-31T16:45:04.9970306Z",
- "endTime": "2022-05-31T16:45:05.3720504Z",
+ "startTime": "2022-07-25T13:31:17.8251958Z",
+ "endTime": "2022-07-25T13:31:18.4046872Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b/subvolumes?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1454,7 +2013,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:45:35 GMT",
+ "Date": "Mon, 25 Jul 2022 13:31:48 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1462,16 +2021,16 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "922928c7-2c5c-4ec8-9178-13c49e2b7d1b",
- "x-ms-ratelimit-remaining-subscription-reads": "11979",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164535Z:922928c7-2c5c-4ec8-9178-13c49e2b7d1b",
+ "x-ms-correlation-request-id": "a4833230-9315-4eda-9c69-b03c36cd4564",
+ "x-ms-ratelimit-remaining-subscription-reads": "11975",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133148Z:a4833230-9315-4eda-9c69-b03c36cd4564",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-subvolume-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": {
"path": "/sub_vol_2.txt",
@@ -1482,43 +2041,43 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/9e778ea0-d48d-4e08-aaf3-edf187eedaa4?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37970318-81e5-4059-9c58-56066d83065a?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 16:45:35 GMT",
+ "Date": "Mon, 25 Jul 2022 13:31:48 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9e778ea0-d48d-4e08-aaf3-edf187eedaa4?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37970318-81e5-4059-9c58-56066d83065a?api-version=2022-03-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": "e7c782c0-875f-48d1-bf31-2291bcae1b65",
+ "x-ms-correlation-request-id": "88743a9d-ef5b-45e5-9f53-2bfa28a8e896",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164536Z:e7c782c0-875f-48d1-bf31-2291bcae1b65",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133149Z:88743a9d-ef5b-45e5-9f53-2bfa28a8e896",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9e778ea0-d48d-4e08-aaf3-edf187eedaa4?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37970318-81e5-4059-9c58-56066d83065a?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1526,7 +2085,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:46:05 GMT",
+ "Date": "Mon, 25 Jul 2022 13:32:18 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1534,31 +2093,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c1e674e3-441d-44bb-9640-973a8e6eda92",
- "x-ms-ratelimit-remaining-subscription-reads": "11978",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164606Z:c1e674e3-441d-44bb-9640-973a8e6eda92",
+ "x-ms-correlation-request-id": "d4f64486-8870-4244-beec-9dfd87e04da0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11974",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133219Z:d4f64486-8870-4244-beec-9dfd87e04da0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9e778ea0-d48d-4e08-aaf3-edf187eedaa4",
- "name": "9e778ea0-d48d-4e08-aaf3-edf187eedaa4",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37970318-81e5-4059-9c58-56066d83065a",
+ "name": "37970318-81e5-4059-9c58-56066d83065a",
"status": "Succeeded",
- "startTime": "2022-05-31T16:45:35.9288596Z",
- "endTime": "2022-05-31T16:45:36.3038966Z",
+ "startTime": "2022-07-25T13:31:49.1501244Z",
+ "endTime": "2022-07-25T13:31:49.7439176Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes/sdk-py-tests-subvolume-2"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/subvolumes?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b/subvolumes?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1566,7 +2125,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:46:06 GMT",
+ "Date": "Mon, 25 Jul 2022 13:32:19 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1574,9 +2133,9 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e88ad960-9bac-4d82-bf4f-6933a563a62a",
- "x-ms-ratelimit-remaining-subscription-reads": "11977",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164607Z:e88ad960-9bac-4d82-bf4f-6933a563a62a",
+ "x-ms-correlation-request-id": "414658a8-621b-4604-aabd-8efe33708be2",
+ "x-ms-ratelimit-remaining-subscription-reads": "11973",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133220Z:414658a8-621b-4604-aabd-8efe33708be2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -1584,43 +2143,43 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/5ec8c89e-14d2-4010-b820-7b6cc36991e0?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c46e0e16-c813-442f-b901-16463dc6fe39?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 16:46:07 GMT",
+ "Date": "Mon, 25 Jul 2022 13:32:20 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5ec8c89e-14d2-4010-b820-7b6cc36991e0?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c46e0e16-c813-442f-b901-16463dc6fe39?api-version=2022-03-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": "9990dfa9-2da7-4fe7-b70a-5a91268cc375",
+ "x-ms-correlation-request-id": "3a9190b6-76cf-4a45-a243-22f899ee32a3",
"x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164607Z:9990dfa9-2da7-4fe7-b70a-5a91268cc375",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133221Z:3a9190b6-76cf-4a45-a243-22f899ee32a3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5ec8c89e-14d2-4010-b820-7b6cc36991e0?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c46e0e16-c813-442f-b901-16463dc6fe39?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1628,7 +2187,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:46:37 GMT",
+ "Date": "Mon, 25 Jul 2022 13:32:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1636,31 +2195,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "52ce8629-ab5f-4af7-b2e9-0b74937d7459",
- "x-ms-ratelimit-remaining-subscription-reads": "11976",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164638Z:52ce8629-ab5f-4af7-b2e9-0b74937d7459",
+ "x-ms-correlation-request-id": "bcbe4560-3067-414f-b2e9-b25b3ae1f349",
+ "x-ms-ratelimit-remaining-subscription-reads": "11972",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133251Z:bcbe4560-3067-414f-b2e9-b25b3ae1f349",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5ec8c89e-14d2-4010-b820-7b6cc36991e0",
- "name": "5ec8c89e-14d2-4010-b820-7b6cc36991e0",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c46e0e16-c813-442f-b901-16463dc6fe39",
+ "name": "c46e0e16-c813-442f-b901-16463dc6fe39",
"status": "Deleting",
- "startTime": "2022-05-31T16:46:07.808116Z",
+ "startTime": "2022-07-25T13:32:21.2304231Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/5ec8c89e-14d2-4010-b820-7b6cc36991e0?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c46e0e16-c813-442f-b901-16463dc6fe39?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1668,7 +2227,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:47:07 GMT",
+ "Date": "Mon, 25 Jul 2022 13:33:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1676,71 +2235,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "22c08a30-3dc7-4f03-b3c5-aa9dc92a10f4",
- "x-ms-ratelimit-remaining-subscription-reads": "11975",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164708Z:22c08a30-3dc7-4f03-b3c5-aa9dc92a10f4",
+ "x-ms-correlation-request-id": "f41c997a-e04d-4198-9621-f2c6c5327a46",
+ "x-ms-ratelimit-remaining-subscription-reads": "11971",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133322Z:f41c997a-e04d-4198-9621-f2c6c5327a46",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5ec8c89e-14d2-4010-b820-7b6cc36991e0",
- "name": "5ec8c89e-14d2-4010-b820-7b6cc36991e0",
- "status": "Deleting",
- "startTime": "2022-05-31T16:46:07.808116Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5ec8c89e-14d2-4010-b820-7b6cc36991e0?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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, 31 May 2022 16:47: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": "be908dd3-11f4-4609-b861-49b889a455ff",
- "x-ms-ratelimit-remaining-subscription-reads": "11974",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164738Z:be908dd3-11f4-4609-b861-49b889a455ff",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5ec8c89e-14d2-4010-b820-7b6cc36991e0",
- "name": "5ec8c89e-14d2-4010-b820-7b6cc36991e0",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c46e0e16-c813-442f-b901-16463dc6fe39",
+ "name": "c46e0e16-c813-442f-b901-16463dc6fe39",
"status": "Succeeded",
- "startTime": "2022-05-31T16:46:07.808116Z",
- "endTime": "2022-05-31T16:47:18.5467261Z",
+ "startTime": "2022-07-25T13:32:21.2304231Z",
+ "endTime": "2022-07-25T13:33:19.2479507Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/5ec8c89e-14d2-4010-b820-7b6cc36991e0?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c46e0e16-c813-442f-b901-16463dc6fe39?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1748,7 +2267,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:47:38 GMT",
+ "Date": "Mon, 25 Jul 2022 13:33:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1756,25 +2275,25 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "875a0e66-2a61-4d26-988e-f232c5ada45d",
- "x-ms-ratelimit-remaining-subscription-reads": "11973",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T164738Z:875a0e66-2a61-4d26-988e-f232c5ada45d",
+ "x-ms-correlation-request-id": "fb4f248a-b753-4a5b-9d17-4a0f48e67495",
+ "x-ms-ratelimit-remaining-subscription-reads": "11970",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133322Z:fb4f248a-b753-4a5b-9d17-4a0f48e67495",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T16%3A46%3A07.7912884Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A32%3A21.2245562Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T16:40:54.6380687Z"
+ "CreatedOnDate": "2022-07-25T13:27:10.2500623Z"
},
"properties": {
- "fileSystemId": "9dea1318-550f-84e8-f7e2-09d4c31dc83b",
+ "fileSystemId": "cc769d74-e302-608c-bf21-14164ad3eac1",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5",
+ "creationToken": "sdk-py-tests-vol-3-dde5273b",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -1802,28 +2321,28 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_07f09647",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d0de01b7",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "69be0336-176e-0c27-cf6c-8e8b74d53dbc",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b",
+ "poolId": "5beba864-1748-7d33-1017-4b98e02c259b",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "9dea1318-550f-84e8-f7e2-09d4c31dc83b",
- "fileSystemId": "9dea1318-550f-84e8-f7e2-09d4c31dc83b",
+ "mountTargetId": "cc769d74-e302-608c-bf21-14164ad3eac1",
+ "fileSystemId": "cc769d74-e302-608c-bf21-14164ad3eac1",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
- "throughputMibps": 6.4,
+ "throughputMibps": 6.25,
"kerberosEnabled": false,
"securityStyle": "Unix",
"smbEncryption": false,
@@ -1838,79 +2357,80 @@
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Enabled",
+ "encrypted": true,
"provisioningState": "Deleting"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "306",
+ "Content-Length": "320",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:51:00 GMT",
+ "Date": "Mon, 25 Jul 2022 13:36:48 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0d96dbf9-3b72-4664-a72f-5a14f666f5e1",
+ "x-ms-correlation-request-id": "6ed174b4-b466-4d85-8db5-8d2efed73cfe",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T165100Z:0d96dbf9-3b72-4664-a72f-5a14f666f5e1"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133648Z:6ed174b4-b466-4d85-8db5-8d2efed73cfe"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/3806fdc6-f3fd-44e4-a7c8-678ffaea597e?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/59ab27f7-55c1-414c-886d-b0049035a8c2?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 16:51:12 GMT",
+ "Date": "Mon, 25 Jul 2022 13:37:00 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3806fdc6-f3fd-44e4-a7c8-678ffaea597e?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/59ab27f7-55c1-414c-886d-b0049035a8c2?api-version=2022-03-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": "171e0072-4f2e-4bca-b548-51151dbc12c7",
- "x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T165112Z:171e0072-4f2e-4bca-b548-51151dbc12c7",
+ "x-ms-correlation-request-id": "2282897f-11d0-4422-9ef3-0c45242fd437",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14999",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133700Z:2282897f-11d0-4422-9ef3-0c45242fd437",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3806fdc6-f3fd-44e4-a7c8-678ffaea597e?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/59ab27f7-55c1-414c-886d-b0049035a8c2?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1918,7 +2438,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:51:42 GMT",
+ "Date": "Mon, 25 Jul 2022 13:37:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1926,31 +2446,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "678b7c25-894b-42fd-b183-c4eaaca09ea9",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T165142Z:678b7c25-894b-42fd-b183-c4eaaca09ea9",
+ "x-ms-correlation-request-id": "1200f8f0-9eef-443a-9be8-ecc0b75630f7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133731Z:1200f8f0-9eef-443a-9be8-ecc0b75630f7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3806fdc6-f3fd-44e4-a7c8-678ffaea597e",
- "name": "3806fdc6-f3fd-44e4-a7c8-678ffaea597e",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/59ab27f7-55c1-414c-886d-b0049035a8c2",
+ "name": "59ab27f7-55c1-414c-886d-b0049035a8c2",
"status": "Succeeded",
- "startTime": "2022-05-31T16:51:12.0323315Z",
- "endTime": "2022-05-31T16:51:12.4541698Z",
+ "startTime": "2022-07-25T13:37:00.7642276Z",
+ "endTime": "2022-07-25T13:37:01.2954494Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/3806fdc6-f3fd-44e4-a7c8-678ffaea597e?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/59ab27f7-55c1-414c-886d-b0049035a8c2?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1958,7 +2478,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:51:42 GMT",
+ "Date": "Mon, 25 Jul 2022 13:37:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1966,27 +2486,28 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7c084802-8ee2-4a09-a096-657dea70d23a",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T165142Z:7c084802-8ee2-4a09-a096-657dea70d23a",
+ "x-ms-correlation-request-id": "9171b750-d4f5-4eff-8d8b-e11eec38f5a5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133731Z:9171b750-d4f5-4eff-8d8b-e11eec38f5a5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T16%3A51%3A12.0266479Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A37%3A00.7674463Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T16:40:21.6935360Z"
+ "CreatedOnDate": "2022-07-25T13:26:36.5697027Z"
},
"properties": {
- "poolId": "69be0336-176e-0c27-cf6c-8e8b74d53dbc",
+ "poolId": "5beba864-1748-7d33-1017-4b98e02c259b",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1",
"qosType": "Auto",
- "totalThroughputMibps": 262.144,
+ "totalThroughputMibps": 256.0,
+ "utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
@@ -1994,174 +2515,174 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 31 May 2022 16:51:52 GMT",
+ "Date": "Mon, 25 Jul 2022 13:37:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "af3aad07-40cc-4f8a-b823-4a98acb93287",
- "x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T165152Z:af3aad07-40cc-4f8a-b823-4a98acb93287"
+ "x-ms-correlation-request-id": "e9e0df8d-bbf5-4265-a220-a6f4dba674fa",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14998",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133741Z:e9e0df8d-bbf5-4265-a220-a6f4dba674fa"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 31 May 2022 16:52:02 GMT",
+ "Date": "Mon, 25 Jul 2022 13:37:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c10579e5-a656-44fc-847d-663d1aa07f5f",
- "x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T165202Z:c10579e5-a656-44fc-847d-663d1aa07f5f"
+ "x-ms-correlation-request-id": "d815b1da-d6ff-48eb-adb1-e2dc8fcd9b5f",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133752Z:d815b1da-d6ff-48eb-adb1-e2dc8fcd9b5f"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 31 May 2022 16:52:12 GMT",
+ "Date": "Mon, 25 Jul 2022 13:38:02 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d0bd8ae9-5608-48af-a092-998c3c8be609",
- "x-ms-ratelimit-remaining-subscription-deletes": "14993",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T165213Z:d0bd8ae9-5608-48af-a092-998c3c8be609"
+ "x-ms-correlation-request-id": "2a52430c-d255-4641-abd5-af8cc02c08c4",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14996",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133802Z:2a52430c-d255-4641-abd5-af8cc02c08c4"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 31 May 2022 16:52:22 GMT",
+ "Date": "Mon, 25 Jul 2022 13:38:12 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f8d4f823-aa14-4b73-a96a-4734fb841dbf",
- "x-ms-ratelimit-remaining-subscription-deletes": "14992",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T165223Z:f8d4f823-aa14-4b73-a96a-4734fb841dbf"
+ "x-ms-correlation-request-id": "7014f4a5-6848-4ad2-885e-0899f21b2ff3",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133812Z:7014f4a5-6848-4ad2-885e-0899f21b2ff3"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:52:32 GMT",
+ "Date": "Mon, 25 Jul 2022 13:38:22 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "338806ee-cf98-42bb-bcfc-b65aea908ae7",
+ "x-ms-correlation-request-id": "ca2246e9-ad61-4cd9-b1f1-bc8d5bffaf1f",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T165233Z:338806ee-cf98-42bb-bcfc-b65aea908ae7"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133823Z:ca2246e9-ad61-4cd9-b1f1-bc8d5bffaf1f"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/2546419f-fd4f-4734-910e-ad48f7ad68ab?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/73720ffb-e8ce-490f-bd44-2825f59ed713?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 31 May 2022 16:52:33 GMT",
+ "Date": "Mon, 25 Jul 2022 13:38:24 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2546419f-fd4f-4734-910e-ad48f7ad68ab?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/73720ffb-e8ce-490f-bd44-2825f59ed713?api-version=2022-03-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": "5d5afb2a-e57f-4e73-99f3-44a09387d211",
- "x-ms-ratelimit-remaining-subscription-deletes": "14991",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T165234Z:5d5afb2a-e57f-4e73-99f3-44a09387d211",
+ "x-ms-correlation-request-id": "cb835648-1c15-4e9b-89c4-4d07138036fc",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133824Z:cb835648-1c15-4e9b-89c4-4d07138036fc",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2546419f-fd4f-4734-910e-ad48f7ad68ab?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/73720ffb-e8ce-490f-bd44-2825f59ed713?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2169,7 +2690,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:53:03 GMT",
+ "Date": "Mon, 25 Jul 2022 13:38:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2177,31 +2698,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a0766ebf-e5c3-4bb2-8488-2f125996f066",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T165304Z:a0766ebf-e5c3-4bb2-8488-2f125996f066",
+ "x-ms-correlation-request-id": "bed16efd-1d47-4c84-b031-ff8798c591f4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133855Z:bed16efd-1d47-4c84-b031-ff8798c591f4",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2546419f-fd4f-4734-910e-ad48f7ad68ab",
- "name": "2546419f-fd4f-4734-910e-ad48f7ad68ab",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/73720ffb-e8ce-490f-bd44-2825f59ed713",
+ "name": "73720ffb-e8ce-490f-bd44-2825f59ed713",
"status": "Succeeded",
- "startTime": "2022-05-31T16:52:34.2354028Z",
- "endTime": "2022-05-31T16:52:34.2979059Z",
+ "startTime": "2022-07-25T13:38:24.5950955Z",
+ "endTime": "2022-07-25T13:38:24.7044588Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2546419f-fd4f-4734-910e-ad48f7ad68ab?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/73720ffb-e8ce-490f-bd44-2825f59ed713?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2209,7 +2730,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:53:03 GMT",
+ "Date": "Mon, 25 Jul 2022 13:38:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2217,19 +2738,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "92452e72-f006-4a2e-9605-1d945071ae03",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T165304Z:92452e72-f006-4a2e-9605-1d945071ae03",
+ "x-ms-correlation-request-id": "ee4b6d45-ddbb-4bf1-ab47-f7f92520b010",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133855Z:ee4b6d45-ddbb-4bf1-ab47-f7f92520b010",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-31T16%3A52%3A34.2239908Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T13%3A38%3A24.5542336Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-31T16:39:47.3509191Z"
+ "CreatedOnDate": "2022-07-25T13:26:01.6970206Z"
},
"properties": {
"encryption": {
@@ -2239,44 +2760,79 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-05-31T16:39:49.6151358Z",
"createdByType": "Application",
+ "createdAt": "2022-07-25T13:26:03.1824008Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-05-31T16:39:49.6151358Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-25T13:26:03.1824008Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 31 May 2022 16:53:06 GMT",
+ "Date": "Mon, 25 Jul 2022 13:38:55 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9c662b49-5da8-4dfb-8b35-aa9f278e0d84",
+ "x-ms-correlation-request-id": "874a927c-b1f6-4066-b6f0-02bdaa2a394f",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "FRANCECENTRAL:20220531T165306Z:9c662b49-5da8-4dfb-8b35-aa9f278e0d84"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133855Z:874a927c-b1f6-4066-b6f0-02bdaa2a394f"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b?api-version=2021-08-01",
+ "RequestMethod": "DELETE",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "0",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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/54968b89-2a18-4e70-9267-c6a1cefa864c?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "0",
+ "Date": "Mon, 25 Jul 2022 13:38:55 GMT",
+ "Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/54968b89-2a18-4e70-9267-c6a1cefa864c?api-version=2021-08-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": "b449574e-d265-4bbe-85b3-71d7431e6a12",
+ "x-ms-correlation-request-id": "5670cac0-7a1b-4c61-8b65-6a83330783c8",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T133856Z:5670cac0-7a1b-4c61-8b65-6a83330783c8"
+ },
+ "ResponseBody": null
}
],
"Variables": {}
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 1b3a4a61539b..4898985af393 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 24 May 2022 10:11:37 GMT",
+ "Date": "Wed, 27 Jul 2022 13:07: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.12794.5 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 24 May 2022 10:11:38 GMT",
+ "Date": "Wed, 27 Jul 2022 13:07: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.12744.11 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - NEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "6999c5c4-1cb6-4cd0-b953-d55c5b448d4c",
+ "client-request-id": "2924958f-cd34-47a3-a62a-239faaab9072",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "6999c5c4-1cb6-4cd0-b953-d55c5b448d4c",
+ "client-request-id": "2924958f-cd34-47a3-a62a-239faaab9072",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:11:38 GMT",
+ "Date": "Wed, 27 Jul 2022 13:07:54 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12794.5 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - NEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,45 +213,585 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "93",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2",
+ "properties": {
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ }
+ }
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e23ce440-5b03-445b-98f0-f5db75e075cd?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/c2d26bd9-6229-4ab6-bacd-91dee4dbaedb?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Length": "699",
+ "Content-Length": "746",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:11:48 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T10%3A11%3A47.6963792Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 13:08:04 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Retry-After": "3",
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f1070976-63ea-4c12-8ecf-09f727d6c204",
+ "x-ms-arm-service-request-id": "95d3d079-c984-4770-b508-3f0b98a594a2",
+ "x-ms-correlation-request-id": "1395c109-1261-4828-a452-65eac855de99",
"x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T101149Z:f1070976-63ea-4c12-8ecf-09f727d6c204",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130804Z:1395c109-1261-4828-a452-65eac855de99"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-ec2121ad",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad",
+ "etag": "W/\u00229e44a535-146f-458a-b545-87f09d319769\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T13:07:57.8177040Z"
+ },
+ "properties": {
+ "provisioningState": "Updating",
+ "resourceGuid": "36505a4f-d31a-4403-9dd3-82efafadcb01",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c2d26bd9-6229-4ab6-bacd-91dee4dbaedb?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Wed, 27 Jul 2022 13:08:07 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": "42318134-d37d-41fb-82c1-739aeb1e1620",
+ "x-ms-correlation-request-id": "08f54afb-4d36-432a-8ee8-89aa8b099e2b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130808Z:08f54afb-4d36-432a-8ee8-89aa8b099e2b"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Wed, 27 Jul 2022 13:08:07 GMT",
+ "ETag": "W/\u00222c19cf28-a2d7-466f-a339-c1a229fe6bf0\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": "8271302e-17d4-4e4b-a945-da603c3bbd06",
+ "x-ms-correlation-request-id": "1ff2b694-2969-4ca1-9ec0-5101f7095fc8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11996",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130808Z:1ff2b694-2969-4ca1-9ec0-5101f7095fc8"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-ec2121ad",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad",
+ "etag": "W/\u00222c19cf28-a2d7-466f-a339-c1a229fe6bf0\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T13:07:57.8177040Z"
+ },
+ "properties": {
+ "provisioningState": "Succeeded",
+ "resourceGuid": "36505a4f-d31a-4403-9dd3-82efafadcb01",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "151",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "RequestBody": {
+ "properties": {
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "properties": {
+ "serviceName": "Microsoft.Netapp/volumes"
+ }
+ }
+ ]
+ }
+ },
+ "StatusCode": 201,
+ "ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fddce9c2-a2f0-4df6-b73a-45ac41f41c0f?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "1318",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Wed, 27 Jul 2022 13:08:08 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Retry-After": "3",
+ "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": "af5a317f-2de3-4f6c-b804-fcdfbf2d0a31",
+ "x-ms-correlation-request-id": "55096fe7-bc2b-44af-9d78-8c5fd59ed8ba",
+ "x-ms-ratelimit-remaining-subscription-writes": "1198",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130809Z:55096fe7-bc2b-44af-9d78-8c5fd59ed8ba"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad/subnets/default",
+ "etag": "W/\u0022b04f789a-f7c1-4f96-a5fb-bf5965bcae7c\u0022",
+ "properties": {
+ "provisioningState": "Updating",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u0022b04f789a-f7c1-4f96-a5fb-bf5965bcae7c\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fddce9c2-a2f0-4df6-b73a-45ac41f41c0f?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Wed, 27 Jul 2022 13:08:11 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Transfer-Encoding": "chunked",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-arm-service-request-id": "3c461b3e-d3cd-465f-800e-30bfedca10c1",
+ "x-ms-correlation-request-id": "02d13423-679e-4207-8fd4-11993ecd6931",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130812Z:02d13423-679e-4207-8fd4-11993ecd6931"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Wed, 27 Jul 2022 13:08:11 GMT",
+ "ETag": "W/\u00223916839b-2c3a-43f6-a200-37eef4db38a0\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": "cc70f1f0-f7ff-47e7-8edd-1f3a7b61c779",
+ "x-ms-correlation-request-id": "1b1103ff-bccd-444c-958c-4946f6ed842c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130812Z:1b1103ff-bccd-444c-958c-4946f6ed842c"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad/subnets/default",
+ "etag": "W/\u00223916839b-2c3a-43f6-a200-37eef4db38a0\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u00223916839b-2c3a-43f6-a200-37eef4db38a0\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "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.11.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": "Wed, 27 Jul 2022 13:08: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.13355.6 - WEULR2 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.11.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": "Wed, 27 Jul 2022 13:08:13 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.13315.8 - NEULR1 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": "f545d0b9-3e67-4488-a42c-679342ce1487",
+ "Connection": "keep-alive",
+ "Content-Length": "281",
+ "Content-Type": "application/x-www-form-urlencoded",
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.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.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
+ },
+ "RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "f545d0b9-3e67-4488-a42c-679342ce1487",
+ "Content-Length": "114",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Wed, 27 Jul 2022 13:08:13 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.13355.6 - 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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad?api-version=2022-03-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "23",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/c59a107b-9c9e-4845-92ae-55ad9d48c192?api-version=2022-03-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "700",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Wed, 27 Jul 2022 13:08:17 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T13%3A08%3A16.7769772Z\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": "8f5e3706-5e72-4f40-85f9-802cfc5c2117",
+ "x-ms-ratelimit-remaining-subscription-writes": "1197",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130818Z:8f5e3706-5e72-4f40-85f9-802cfc5c2117",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T10%3A11%3A47.6963792Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T13%3A08%3A16.7769772Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T10:11:42.1977836Z"
+ "CreatedOnDate": "2022-07-27T13:08:14.0229345Z"
},
"properties": {
"provisioningState": "Creating"
@@ -258,21 +799,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T10:11:46.8802297Z",
+ "createdAt": "2022-07-27T13:08:15.839012Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T10:11:46.8802297Z"
+ "lastModifiedAt": "2022-07-27T13:08:15.839012Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e23ce440-5b03-445b-98f0-f5db75e075cd?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c59a107b-9c9e-4845-92ae-55ad9d48c192?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +821,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:12:19 GMT",
+ "Date": "Wed, 27 Jul 2022 13:08:48 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +829,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "def5dfaf-057e-43d6-822b-e941127256dc",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T101219Z:def5dfaf-057e-43d6-822b-e941127256dc",
+ "x-ms-correlation-request-id": "f6bf16d1-6b40-44d5-bdb3-72155c6fb76e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130848Z:f6bf16d1-6b40-44d5-bdb3-72155c6fb76e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e23ce440-5b03-445b-98f0-f5db75e075cd",
- "name": "e23ce440-5b03-445b-98f0-f5db75e075cd",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c59a107b-9c9e-4845-92ae-55ad9d48c192",
+ "name": "c59a107b-9c9e-4845-92ae-55ad9d48c192",
"status": "Succeeded",
- "startTime": "2022-05-24T10:11:47.7026373Z",
- "endTime": "2022-05-24T10:11:47.7495143Z",
+ "startTime": "2022-07-27T13:08:16.7896041Z",
+ "endTime": "2022-07-27T13:08:16.8364392Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +861,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:12:19 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T10%3A11%3A47.7540508Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 13:08:48 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T13%3A08%3A16.8502499Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,35 +870,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d060029b-ade2-42be-bde9-542f051c84ad",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T101220Z:d060029b-ade2-42be-bde9-542f051c84ad",
+ "x-ms-correlation-request-id": "ae4e7c47-55f9-4c6c-9044-e4df57223372",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130848Z:ae4e7c47-55f9-4c6c-9044-e4df57223372",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T10%3A11%3A47.7540508Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T13%3A08%3A16.8502499Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T10:11:42.1977836Z"
+ "CreatedOnDate": "2022-07-27T13:08:14.0229345Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -370,26 +911,26 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T10:11:46.8802297Z",
+ "createdAt": "2022-07-27T13:08:15.839012Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T10:11:46.8802297Z"
+ "lastModifiedAt": "2022-07-27T13:08:15.839012Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "150",
+ "Content-Length": "138",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"size": 4398046511104,
"serviceLevel": "Premium",
@@ -399,30 +940,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ef8cf556-5284-439c-98fa-f42e1176408b?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed004a7c-96af-4fa1-9aa0-de87a23ec7e8?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "913",
+ "Content-Length": "918",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:12:23 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T10%3A12%3A23.0240063Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 13:08:51 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T13%3A08%3A50.7048966Z\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": "daf0cf7a-3aaa-42ce-990d-2c98e487d563",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T101224Z:daf0cf7a-3aaa-42ce-990d-2c98e487d563",
+ "x-ms-correlation-request-id": "ba408198-16fa-4b9d-b768-368228fd60e9",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130851Z:ba408198-16fa-4b9d-b768-368228fd60e9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T10%3A12%3A23.0240063Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T13%3A08%3A50.7048966Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T10:12:20.5883425Z"
+ "CreatedOnDate": "2022-07-27T13:08:49.2724222Z"
},
"properties": {
"serviceLevel": "Premium",
@@ -436,21 +977,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T10:12:22.60531Z",
+ "createdAt": "2022-07-27T13:08:50.5304853Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T10:12:22.60531Z"
+ "lastModifiedAt": "2022-07-27T13:08:50.5304853Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ef8cf556-5284-439c-98fa-f42e1176408b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed004a7c-96af-4fa1-9aa0-de87a23ec7e8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -458,7 +999,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:12:53 GMT",
+ "Date": "Wed, 27 Jul 2022 13:09:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -466,31 +1007,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "24e0ccd1-a454-48c0-b9ae-9c7edcb5c2db",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T101254Z:24e0ccd1-a454-48c0-b9ae-9c7edcb5c2db",
+ "x-ms-correlation-request-id": "531c983c-97ec-4548-8054-99b7416d8f3d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130921Z:531c983c-97ec-4548-8054-99b7416d8f3d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ef8cf556-5284-439c-98fa-f42e1176408b",
- "name": "ef8cf556-5284-439c-98fa-f42e1176408b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed004a7c-96af-4fa1-9aa0-de87a23ec7e8",
+ "name": "ed004a7c-96af-4fa1-9aa0-de87a23ec7e8",
"status": "Succeeded",
- "startTime": "2022-05-24T10:12:23.0175857Z",
- "endTime": "2022-05-24T10:12:24.267633Z",
+ "startTime": "2022-07-27T13:08:50.712696Z",
+ "endTime": "2022-07-27T13:08:50.8689679Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -498,8 +1039,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:12:54 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T10%3A12%3A24.2588593Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 13:09:21 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T13%3A08%3A50.8813383Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -507,22 +1048,22 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "49670e3a-00ad-4302-a234-e93f45f7d467",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T101254Z:49670e3a-00ad-4302-a234-e93f45f7d467",
+ "x-ms-correlation-request-id": "185a2079-822c-4dee-b920-e1d7b6d8f9a6",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130922Z:185a2079-822c-4dee-b920-e1d7b6d8f9a6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T10%3A12%3A24.2588593Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T13%3A08%3A50.8813383Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T10:12:20.5883425Z"
+ "CreatedOnDate": "2022-07-27T13:08:49.2724222Z"
},
"properties": {
- "poolId": "6054959b-49fb-5184-89d3-f3aeefd9f105",
+ "poolId": "37dc1578-4ea1-32be-d417-3567185eab1c",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
@@ -531,38 +1072,30 @@
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T10:12:22.60531Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T10:12:22.60531Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-ec2121ad?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "800",
+ "Content-Length": "779",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-ec2121ad",
"serviceLevel": "Premium",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -576,45 +1109,44 @@
"avsDataStore": "Disabled",
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled"
+ "defaultGroupQuotaInKiBs": 0
}
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5e710037-d4eb-40c8-a8e9-44e89915bd04?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "1567",
+ "Content-Length": "1577",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:12:59 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T10%3A12%3A59.2930937Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 13:09:34 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T13%3A09%3A34.0685033Z\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": "51804d48-fa11-41ce-9332-51092f7e232c",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T101300Z:51804d48-fa11-41ce-9332-51092f7e232c",
+ "x-ms-correlation-request-id": "af95413c-2582-425f-89f6-9826fb588ddd",
+ "x-ms-ratelimit-remaining-subscription-writes": "1195",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T130935Z:af95413c-2582-425f-89f6-9826fb588ddd",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T10%3A12%3A59.2930937Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T13%3A09%3A34.0685033Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T10:12:55.1878108Z"
+ "CreatedOnDate": "2022-07-27T13:09:32.6953949Z"
},
"properties": {
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-ec2121ad",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -629,28 +1161,27 @@
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
"provisioningState": "Creating"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T10:12:56.5370492Z",
+ "createdAt": "2022-07-27T13:09:33.7706941Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T10:12:56.5370492Z"
+ "lastModifiedAt": "2022-07-27T13:09:33.7706941Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5e710037-d4eb-40c8-a8e9-44e89915bd04?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -658,7 +1189,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:13:29 GMT",
+ "Date": "Wed, 27 Jul 2022 13:10:04 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -666,31 +1197,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5ba7b33b-0c62-4abe-8ccc-9aa0c5d42ba6",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T101330Z:5ba7b33b-0c62-4abe-8ccc-9aa0c5d42ba6",
+ "x-ms-correlation-request-id": "a390da20-4b0d-4bbd-b138-efae91e3f291",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T131005Z:a390da20-4b0d-4bbd-b138-efae91e3f291",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5e710037-d4eb-40c8-a8e9-44e89915bd04",
- "name": "5e710037-d4eb-40c8-a8e9-44e89915bd04",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4",
+ "name": "7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4",
"status": "Creating",
- "startTime": "2022-05-24T10:12:59.2852629Z",
+ "startTime": "2022-07-27T13:09:34.1124355Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/5e710037-d4eb-40c8-a8e9-44e89915bd04?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -698,7 +1229,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:14:00 GMT",
+ "Date": "Wed, 27 Jul 2022 13:10:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -706,31 +1237,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "54594563-9a27-4822-bc98-0608353817a7",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T101400Z:54594563-9a27-4822-bc98-0608353817a7",
+ "x-ms-correlation-request-id": "e579ef04-409a-4062-b84f-98b9385a7dd5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T131035Z:e579ef04-409a-4062-b84f-98b9385a7dd5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5e710037-d4eb-40c8-a8e9-44e89915bd04",
- "name": "5e710037-d4eb-40c8-a8e9-44e89915bd04",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4",
+ "name": "7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4",
"status": "Creating",
- "startTime": "2022-05-24T10:12:59.2852629Z",
+ "startTime": "2022-07-27T13:09:34.1124355Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/5e710037-d4eb-40c8-a8e9-44e89915bd04?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -738,7 +1269,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:14:31 GMT",
+ "Date": "Wed, 27 Jul 2022 13:11:05 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -746,31 +1277,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1808414e-2999-47c0-a485-e428ed5355ee",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T101431Z:1808414e-2999-47c0-a485-e428ed5355ee",
+ "x-ms-correlation-request-id": "14dc9ade-acf0-416f-aa38-d0baab930890",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T131105Z:14dc9ade-acf0-416f-aa38-d0baab930890",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5e710037-d4eb-40c8-a8e9-44e89915bd04",
- "name": "5e710037-d4eb-40c8-a8e9-44e89915bd04",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4",
+ "name": "7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4",
"status": "Creating",
- "startTime": "2022-05-24T10:12:59.2852629Z",
+ "startTime": "2022-07-27T13:09:34.1124355Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/5e710037-d4eb-40c8-a8e9-44e89915bd04?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -778,7 +1309,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:15:01 GMT",
+ "Date": "Wed, 27 Jul 2022 13:11:35 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -786,31 +1317,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "cbb04fbe-cffe-4434-81fd-6c623a81577d",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T101502Z:cbb04fbe-cffe-4434-81fd-6c623a81577d",
+ "x-ms-correlation-request-id": "9c14eea9-063e-432a-89c4-ac53c9848763",
+ "x-ms-ratelimit-remaining-subscription-reads": "11986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T131136Z:9c14eea9-063e-432a-89c4-ac53c9848763",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5e710037-d4eb-40c8-a8e9-44e89915bd04",
- "name": "5e710037-d4eb-40c8-a8e9-44e89915bd04",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4",
+ "name": "7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4",
"status": "Creating",
- "startTime": "2022-05-24T10:12:59.2852629Z",
+ "startTime": "2022-07-27T13:09:34.1124355Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/5e710037-d4eb-40c8-a8e9-44e89915bd04?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -818,7 +1349,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:15:32 GMT",
+ "Date": "Wed, 27 Jul 2022 13:12:06 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -826,31 +1357,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0f6e3fb4-34c8-422f-ac6d-f8ab9bcc5a51",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T101532Z:0f6e3fb4-34c8-422f-ac6d-f8ab9bcc5a51",
+ "x-ms-correlation-request-id": "c4495493-7e68-46f0-817f-c86bac8daaf7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T131206Z:c4495493-7e68-46f0-817f-c86bac8daaf7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5e710037-d4eb-40c8-a8e9-44e89915bd04",
- "name": "5e710037-d4eb-40c8-a8e9-44e89915bd04",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4",
+ "name": "7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4",
"status": "Creating",
- "startTime": "2022-05-24T10:12:59.2852629Z",
+ "startTime": "2022-07-27T13:09:34.1124355Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/5e710037-d4eb-40c8-a8e9-44e89915bd04?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -858,7 +1389,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:16:02 GMT",
+ "Date": "Wed, 27 Jul 2022 13:12:36 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -866,31 +1397,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3df4e288-0188-47c0-872a-65e54be29fde",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T101602Z:3df4e288-0188-47c0-872a-65e54be29fde",
+ "x-ms-correlation-request-id": "1be0ca68-260f-4ae7-8e3f-e8715c4d965a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T131236Z:1be0ca68-260f-4ae7-8e3f-e8715c4d965a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5e710037-d4eb-40c8-a8e9-44e89915bd04",
- "name": "5e710037-d4eb-40c8-a8e9-44e89915bd04",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4",
+ "name": "7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4",
"status": "Creating",
- "startTime": "2022-05-24T10:12:59.2852629Z",
+ "startTime": "2022-07-27T13:09:34.1124355Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/5e710037-d4eb-40c8-a8e9-44e89915bd04?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -898,7 +1429,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:16:32 GMT",
+ "Date": "Wed, 27 Jul 2022 13:13:06 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -906,31 +1437,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4ce3294c-938b-4a6b-bc40-559b5ffce3bd",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T101633Z:4ce3294c-938b-4a6b-bc40-559b5ffce3bd",
+ "x-ms-correlation-request-id": "08fecb35-af16-4dbc-a21f-daf0560734c9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11983",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T131307Z:08fecb35-af16-4dbc-a21f-daf0560734c9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5e710037-d4eb-40c8-a8e9-44e89915bd04",
- "name": "5e710037-d4eb-40c8-a8e9-44e89915bd04",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4",
+ "name": "7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4",
"status": "Creating",
- "startTime": "2022-05-24T10:12:59.2852629Z",
+ "startTime": "2022-07-27T13:09:34.1124355Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/5e710037-d4eb-40c8-a8e9-44e89915bd04?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -938,7 +1469,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:17:02 GMT",
+ "Date": "Wed, 27 Jul 2022 13:13:37 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -946,31 +1477,71 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fe92aff5-a539-43e9-9916-e1161c0c03bb",
- "x-ms-ratelimit-remaining-subscription-reads": "11988",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T101703Z:fe92aff5-a539-43e9-9916-e1161c0c03bb",
+ "x-ms-correlation-request-id": "763ef1d6-7039-43a1-8178-4f4d460bf74f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T131337Z:763ef1d6-7039-43a1-8178-4f4d460bf74f",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4",
+ "name": "7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4",
+ "status": "Creating",
+ "startTime": "2022-07-27T13:09:34.1124355Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 13:14: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": "e7fdded8-f3d4-42a0-9664-7846e5ee4628",
+ "x-ms-ratelimit-remaining-subscription-reads": "11981",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T131408Z:e7fdded8-f3d4-42a0-9664-7846e5ee4628",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5e710037-d4eb-40c8-a8e9-44e89915bd04",
- "name": "5e710037-d4eb-40c8-a8e9-44e89915bd04",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4",
+ "name": "7b3c1f04-3acc-4f0b-ac37-81a33cbbdcf4",
"status": "Succeeded",
- "startTime": "2022-05-24T10:12:59.2852629Z",
- "endTime": "2022-05-24T10:17:02.4945168Z",
+ "startTime": "2022-07-27T13:09:34.1124355Z",
+ "endTime": "2022-07-27T13:14:07.2799988Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-ec2121ad?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -978,8 +1549,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:17:05 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T10%3A17%3A02.4995654Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 13:14:08 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T13%3A14%3A07.2843325Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -987,24 +1558,24 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2ba86910-7a6c-4acd-bf4c-e221419a9d24",
- "x-ms-ratelimit-remaining-subscription-reads": "11987",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T101706Z:2ba86910-7a6c-4acd-bf4c-e221419a9d24",
+ "x-ms-correlation-request-id": "6dc52bef-809c-4f50-97be-f4b760dbc7a2",
+ "x-ms-ratelimit-remaining-subscription-reads": "11980",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T131409Z:6dc52bef-809c-4f50-97be-f4b760dbc7a2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T10%3A17%3A02.4995654Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T13%3A14%3A07.2843325Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T10:12:55.1878108Z"
+ "CreatedOnDate": "2022-07-27T13:09:32.6953949Z"
},
"properties": {
- "fileSystemId": "665ca10e-58d7-1780-fd17-caf00f3f73a3",
+ "fileSystemId": "4743984b-ba94-f35f-703e-f07b75a1407d",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-ec2121ad",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1030,10 +1601,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_ef06e666",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_3dd64af8",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1045,9 +1616,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "665ca10e-58d7-1780-fd17-caf00f3f73a3",
- "fileSystemId": "665ca10e-58d7-1780-fd17-caf00f3f73a3",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "4743984b-ba94-f35f-703e-f07b75a1407d",
+ "fileSystemId": "4743984b-ba94-f35f-703e-f07b75a1407d",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1059,27 +1630,18 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
- "encrypted": true,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T10:12:56.5370492Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T10:12:56.5370492Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/vaults?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1087,7 +1649,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:17:05 GMT",
+ "Date": "Wed, 27 Jul 2022 13:14:09 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1095,60 +1657,63 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b78dfd6a-4a9a-4e94-b150-e3d07b40938a",
- "x-ms-ratelimit-remaining-subscription-reads": "11986",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T101706Z:b78dfd6a-4a9a-4e94-b150-e3d07b40938a",
+ "x-ms-correlation-request-id": "5f72cfbd-ffac-4967-9210-ab0bab423a98",
+ "x-ms-ratelimit-remaining-subscription-reads": "11979",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T131409Z:5f72cfbd-ffac-4967-9210-ab0bab423a98",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/vaults/cbsvault",
- "name": "sdk-py-tests-acc-1/cbsvault",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/vaults/cbsvault",
+ "name": "sdk-py-tests-acc-1-ec2121ad/cbsvault",
"type": "Microsoft.NetApp/netAppAccounts/vaults",
- "properties": {}
+ "properties": {
+ "enabled": true,
+ "vaultId": "6130fdad-3bac-11eb-aba9-0e6a0f269857"
+ }
}
]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-ec2121ad?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/ef53e557-1fe4-4d87-bb46-d0d87260095f?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27ffa0b2-3c49-4771-98ad-bceedfd884c0?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 24 May 2022 10:17:07 GMT",
+ "Date": "Wed, 27 Jul 2022 13:14:09 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ef53e557-1fe4-4d87-bb46-d0d87260095f?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27ffa0b2-3c49-4771-98ad-bceedfd884c0?api-version=2022-03-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": "6d643aec-84e7-413f-a687-69851670a54a",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T101707Z:6d643aec-84e7-413f-a687-69851670a54a",
+ "x-ms-correlation-request-id": "9ddccf2b-fdb5-4145-8465-985fa37b66f5",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14998",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T131410Z:9ddccf2b-fdb5-4145-8465-985fa37b66f5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ef53e557-1fe4-4d87-bb46-d0d87260095f?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27ffa0b2-3c49-4771-98ad-bceedfd884c0?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1156,7 +1721,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:17:37 GMT",
+ "Date": "Wed, 27 Jul 2022 13:14:39 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1164,31 +1729,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b0eb8581-08f2-4763-91fa-06fcd69a7d7c",
- "x-ms-ratelimit-remaining-subscription-reads": "11985",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T101737Z:b0eb8581-08f2-4763-91fa-06fcd69a7d7c",
+ "x-ms-correlation-request-id": "87a36410-48cb-4cf6-8f65-ce84a8d724b1",
+ "x-ms-ratelimit-remaining-subscription-reads": "11978",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T131440Z:87a36410-48cb-4cf6-8f65-ce84a8d724b1",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ef53e557-1fe4-4d87-bb46-d0d87260095f",
- "name": "ef53e557-1fe4-4d87-bb46-d0d87260095f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27ffa0b2-3c49-4771-98ad-bceedfd884c0",
+ "name": "27ffa0b2-3c49-4771-98ad-bceedfd884c0",
"status": "Deleting",
- "startTime": "2022-05-24T10:17:07.3820579Z",
+ "startTime": "2022-07-27T13:14:10.0957505Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/ef53e557-1fe4-4d87-bb46-d0d87260095f?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27ffa0b2-3c49-4771-98ad-bceedfd884c0?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1196,7 +1761,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:18:08 GMT",
+ "Date": "Wed, 27 Jul 2022 13:15:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1204,31 +1769,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "81444367-aa20-4f7d-82cf-04e0fec3eccc",
- "x-ms-ratelimit-remaining-subscription-reads": "11984",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T101808Z:81444367-aa20-4f7d-82cf-04e0fec3eccc",
+ "x-ms-correlation-request-id": "84b6b317-8bd8-458d-891b-7921ea27d615",
+ "x-ms-ratelimit-remaining-subscription-reads": "11977",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T131510Z:84b6b317-8bd8-458d-891b-7921ea27d615",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ef53e557-1fe4-4d87-bb46-d0d87260095f",
- "name": "ef53e557-1fe4-4d87-bb46-d0d87260095f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27ffa0b2-3c49-4771-98ad-bceedfd884c0",
+ "name": "27ffa0b2-3c49-4771-98ad-bceedfd884c0",
"status": "Deleting",
- "startTime": "2022-05-24T10:17:07.3820579Z",
+ "startTime": "2022-07-27T13:14:10.0957505Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/ef53e557-1fe4-4d87-bb46-d0d87260095f?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27ffa0b2-3c49-4771-98ad-bceedfd884c0?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1236,7 +1801,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:18:39 GMT",
+ "Date": "Wed, 27 Jul 2022 13:15:40 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1244,31 +1809,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3239cdab-ac42-4112-a13f-d5e97e98e2b1",
- "x-ms-ratelimit-remaining-subscription-reads": "11983",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T101839Z:3239cdab-ac42-4112-a13f-d5e97e98e2b1",
+ "x-ms-correlation-request-id": "f65d3b60-129a-4a76-9086-351d318fd85a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11976",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T131541Z:f65d3b60-129a-4a76-9086-351d318fd85a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ef53e557-1fe4-4d87-bb46-d0d87260095f",
- "name": "ef53e557-1fe4-4d87-bb46-d0d87260095f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27ffa0b2-3c49-4771-98ad-bceedfd884c0",
+ "name": "27ffa0b2-3c49-4771-98ad-bceedfd884c0",
"status": "Succeeded",
- "startTime": "2022-05-24T10:17:07.3820579Z",
- "endTime": "2022-05-24T10:18:25.3185597Z",
+ "startTime": "2022-07-27T13:14:10.0957505Z",
+ "endTime": "2022-07-27T13:15:12.8742849Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/ef53e557-1fe4-4d87-bb46-d0d87260095f?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27ffa0b2-3c49-4771-98ad-bceedfd884c0?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1276,7 +1841,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:18:39 GMT",
+ "Date": "Wed, 27 Jul 2022 13:15:40 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1284,25 +1849,25 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ae201eb2-cf76-4f63-9aec-aab178e8e956",
- "x-ms-ratelimit-remaining-subscription-reads": "11982",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T101840Z:ae201eb2-cf76-4f63-9aec-aab178e8e956",
+ "x-ms-correlation-request-id": "ba1f3d5d-572e-44d7-a7ef-0459b60e29c4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11975",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T131541Z:ba1f3d5d-572e-44d7-a7ef-0459b60e29c4",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T10%3A18%3A07.8547142Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T13%3A14%3A10.0956188Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T10:12:55.1878108Z"
+ "CreatedOnDate": "2022-07-27T13:09:32.6953949Z"
},
"properties": {
- "fileSystemId": "665ca10e-58d7-1780-fd17-caf00f3f73a3",
+ "fileSystemId": "4743984b-ba94-f35f-703e-f07b75a1407d",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
+ "creationToken": "sdk-py-tests-vol-3-ec2121ad",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -1330,25 +1895,25 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "DELETED_baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_ef06e666",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_3dd64af8",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "6054959b-49fb-5184-89d3-f3aeefd9f105",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-ec2121ad",
+ "poolId": "37dc1578-4ea1-32be-d417-3567185eab1c",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "665ca10e-58d7-1780-fd17-caf00f3f73a3",
- "fileSystemId": "665ca10e-58d7-1780-fd17-caf00f3f73a3",
+ "mountTargetId": "4743984b-ba94-f35f-703e-f07b75a1407d",
+ "fileSystemId": "4743984b-ba94-f35f-703e-f07b75a1407d",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1367,89 +1932,79 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"encrypted": true,
- "smbAccessBasedEnumeration": "Disabled",
- "smbNonBrowsable": "Disabled",
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T10:12:56.5370492Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T10:12:56.5370492Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-ec2121ad?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "306",
+ "Content-Length": "320",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:22:01 GMT",
+ "Date": "Wed, 27 Jul 2022 13:19:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "234c2273-8c2c-4c95-ae1e-ea944eabcc54",
+ "x-ms-correlation-request-id": "c58bfe7a-c136-46ed-bcc6-9a67e122cdc2",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102201Z:234c2273-8c2c-4c95-ae1e-ea944eabcc54"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T131904Z:c58bfe7a-c136-46ed-bcc6-9a67e122cdc2"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-ec2121ad\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/ce641210-d2ea-4213-ac20-a00610a5a7d6?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a9bdfc84-a5af-40cf-ba32-cf4189e1d371?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 24 May 2022 10:22:14 GMT",
+ "Date": "Wed, 27 Jul 2022 13:19:15 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ce641210-d2ea-4213-ac20-a00610a5a7d6?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a9bdfc84-a5af-40cf-ba32-cf4189e1d371?api-version=2022-03-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": "37b98e04-e77d-449a-9faa-820a9a854d20",
+ "x-ms-correlation-request-id": "f5390e2f-0c06-4b17-b0a8-023a805ae99c",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102214Z:37b98e04-e77d-449a-9faa-820a9a854d20",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T131916Z:f5390e2f-0c06-4b17-b0a8-023a805ae99c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ce641210-d2ea-4213-ac20-a00610a5a7d6?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a9bdfc84-a5af-40cf-ba32-cf4189e1d371?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1457,7 +2012,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:22:44 GMT",
+ "Date": "Wed, 27 Jul 2022 13:19:45 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1465,31 +2020,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c592c8c4-be23-457e-9c38-4891094eabe5",
+ "x-ms-correlation-request-id": "87e15169-3c4b-4940-9f75-20700df077d6",
"x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102245Z:c592c8c4-be23-457e-9c38-4891094eabe5",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T131946Z:87e15169-3c4b-4940-9f75-20700df077d6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ce641210-d2ea-4213-ac20-a00610a5a7d6",
- "name": "ce641210-d2ea-4213-ac20-a00610a5a7d6",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a9bdfc84-a5af-40cf-ba32-cf4189e1d371",
+ "name": "a9bdfc84-a5af-40cf-ba32-cf4189e1d371",
"status": "Succeeded",
- "startTime": "2022-05-24T10:22:14.5039687Z",
- "endTime": "2022-05-24T10:22:17.8922873Z",
+ "startTime": "2022-07-27T13:19:16.234477Z",
+ "endTime": "2022-07-27T13:19:16.6876427Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/ce641210-d2ea-4213-ac20-a00610a5a7d6?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a9bdfc84-a5af-40cf-ba32-cf4189e1d371?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1497,7 +2052,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:22:44 GMT",
+ "Date": "Wed, 27 Jul 2022 13:19:46 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1505,211 +2060,203 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4aa6001a-6e7c-42c2-87f3-63f8ce3f0722",
+ "x-ms-correlation-request-id": "13f8cf0d-34c4-42e3-9492-549d284db2f6",
"x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102245Z:4aa6001a-6e7c-42c2-87f3-63f8ce3f0722",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T131946Z:13f8cf0d-34c4-42e3-9492-549d284db2f6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T10%3A22%3A14.5019221Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T13%3A19%3A16.2331981Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T10:12:20.5883425Z"
+ "CreatedOnDate": "2022-07-27T13:08:49.2724222Z"
},
"properties": {
- "poolId": "6054959b-49fb-5184-89d3-f3aeefd9f105",
+ "poolId": "37dc1578-4ea1-32be-d417-3567185eab1c",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1",
"qosType": "Auto",
"totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T10:12:22.60531Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T10:12:22.60531Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 10:22:54 GMT",
+ "Date": "Wed, 27 Jul 2022 13:19:56 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "76f3c149-1c5e-4e56-8a72-69856c0c5636",
+ "x-ms-correlation-request-id": "a1df7496-318a-41ae-85b4-84e1512dd290",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102255Z:76f3c149-1c5e-4e56-8a72-69856c0c5636"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T131957Z:a1df7496-318a-41ae-85b4-84e1512dd290"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 10:23:05 GMT",
+ "Date": "Wed, 27 Jul 2022 13:20:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "be9496af-989d-42c0-9a2f-947b7ea6c4f6",
+ "x-ms-correlation-request-id": "fce03b85-98fc-4760-99e0-1bce6db1ca70",
"x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102305Z:be9496af-989d-42c0-9a2f-947b7ea6c4f6"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T132007Z:fce03b85-98fc-4760-99e0-1bce6db1ca70"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 10:23:15 GMT",
+ "Date": "Wed, 27 Jul 2022 13:20:17 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1d83a03b-f04d-4f92-8dc7-7a180f7b8eb9",
+ "x-ms-correlation-request-id": "e48de007-d93d-434b-bbd4-e6e6f53ab2a3",
"x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102316Z:1d83a03b-f04d-4f92-8dc7-7a180f7b8eb9"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T132018Z:e48de007-d93d-434b-bbd4-e6e6f53ab2a3"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 10:23:26 GMT",
+ "Date": "Wed, 27 Jul 2022 13:20:28 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3eb2a0e1-ff2c-442f-9493-398a6b894d5a",
+ "x-ms-correlation-request-id": "64678b15-aa57-4b53-9cae-7da3fc01a2f1",
"x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102326Z:3eb2a0e1-ff2c-442f-9493-398a6b894d5a"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T132028Z:64678b15-aa57-4b53-9cae-7da3fc01a2f1"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:23:36 GMT",
+ "Date": "Wed, 27 Jul 2022 13:20:38 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e408c7bd-040b-4845-82b1-e165dbbbf3b3",
+ "x-ms-correlation-request-id": "8587984d-cb15-4e15-9b50-a2016a877dfe",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102336Z:e408c7bd-040b-4845-82b1-e165dbbbf3b3"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T132038Z:8587984d-cb15-4e15-9b50-a2016a877dfe"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/ccf26d2e-718f-4a9c-a75f-a7937977bf63?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/348ec72d-d0c2-4618-98cb-d12ac04964c8?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 24 May 2022 10:23:37 GMT",
+ "Date": "Wed, 27 Jul 2022 13:20:39 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ccf26d2e-718f-4a9c-a75f-a7937977bf63?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/348ec72d-d0c2-4618-98cb-d12ac04964c8?api-version=2022-03-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": "2dcc23fe-7b88-4f27-8279-9b77210d8319",
+ "x-ms-correlation-request-id": "83c0ca6b-4f37-4518-a830-bd16a8c7c571",
"x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102338Z:2dcc23fe-7b88-4f27-8279-9b77210d8319",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T132040Z:83c0ca6b-4f37-4518-a830-bd16a8c7c571",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ccf26d2e-718f-4a9c-a75f-a7937977bf63?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/348ec72d-d0c2-4618-98cb-d12ac04964c8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1717,7 +2264,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:24:08 GMT",
+ "Date": "Wed, 27 Jul 2022 13:21:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1725,31 +2272,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6e7606d3-e2a6-4022-8673-4b1af4da721f",
+ "x-ms-correlation-request-id": "aece081c-21e3-4219-93e1-d9d83a7be656",
"x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102408Z:6e7606d3-e2a6-4022-8673-4b1af4da721f",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T132110Z:aece081c-21e3-4219-93e1-d9d83a7be656",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ccf26d2e-718f-4a9c-a75f-a7937977bf63",
- "name": "ccf26d2e-718f-4a9c-a75f-a7937977bf63",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/348ec72d-d0c2-4618-98cb-d12ac04964c8",
+ "name": "348ec72d-d0c2-4618-98cb-d12ac04964c8",
"status": "Succeeded",
- "startTime": "2022-05-24T10:23:37.994543Z",
- "endTime": "2022-05-24T10:23:38.0258225Z",
+ "startTime": "2022-07-27T13:20:40.1608454Z",
+ "endTime": "2022-07-27T13:20:40.2077337Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ccf26d2e-718f-4a9c-a75f-a7937977bf63?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/348ec72d-d0c2-4618-98cb-d12ac04964c8?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1757,7 +2304,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:24:08 GMT",
+ "Date": "Wed, 27 Jul 2022 13:21:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1765,19 +2312,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e407ea16-2404-447d-a68b-27536eb3a984",
+ "x-ms-correlation-request-id": "798f2e48-c445-416a-9c38-92b4e143f3a8",
"x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102409Z:e407ea16-2404-447d-a68b-27536eb3a984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T132110Z:798f2e48-c445-416a-9c38-92b4e143f3a8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T10%3A23%3A37.9885981Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-27T13%3A20%3A40.1665438Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T10:11:42.1977836Z"
+ "CreatedOnDate": "2022-07-27T13:08:14.0229345Z"
},
"properties": {
"encryption": {
@@ -1788,43 +2335,78 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T10:11:46.8802297Z",
+ "createdAt": "2022-07-27T13:08:15.839012Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T10:11:46.8802297Z"
+ "lastModifiedAt": "2022-07-27T13:08:15.839012Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:24:11 GMT",
+ "Date": "Wed, 27 Jul 2022 13:21:11 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "89014003-6f7b-4b77-80f7-c493bc53ad1d",
+ "x-ms-correlation-request-id": "c85c922d-9508-4e8a-b641-5fd3f6b97193",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102411Z:89014003-6f7b-4b77-80f7-c493bc53ad1d"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T132111Z:c85c922d-9508-4e8a-b641-5fd3f6b97193"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad?api-version=2021-08-01",
+ "RequestMethod": "DELETE",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "0",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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/13039928-885d-4fbf-94ee-0adac54e18d2?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "0",
+ "Date": "Wed, 27 Jul 2022 13:21:12 GMT",
+ "Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/13039928-885d-4fbf-94ee-0adac54e18d2?api-version=2021-08-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": "53eb4cbd-f9e3-4d32-b71d-c5d30d6dc24a",
+ "x-ms-correlation-request-id": "c64e4f9f-312b-4bdf-b49f-9badcb9b51b7",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T132112Z:c64e4f9f-312b-4bdf-b49f-9badcb9b51b7"
+ },
+ "ResponseBody": null
}
],
"Variables": {}
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 b968b82a8a4b..b16ba8b0e3df 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 24 May 2022 10:24:49 GMT",
+ "Date": "Sun, 24 Jul 2022 02:42:18 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.12794.5 - NEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 24 May 2022 10:24:49 GMT",
+ "Date": "Sun, 24 Jul 2022 02:42:18 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.12744.11 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - NEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "6b657e41-4a0b-47ff-925e-10c0968a60a0",
+ "client-request-id": "306d32e7-92be-4644-bc81-394a6354195b",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "6b657e41-4a0b-47ff-925e-10c0968a60a0",
+ "client-request-id": "306d32e7-92be-4644-bc81-394a6354195b",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:24:49 GMT",
+ "Date": "Sun, 24 Jul 2022 02:42:18 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12794.5 - NEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - NEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,67 +213,632 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "93",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2",
+ "properties": {
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ }
+ }
+ },
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Azure-AsyncNotification": "Enabled",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/bb8610c2-3c47-4367-bea1-373fe8d7c95a?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Encoding": "gzip",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Sun, 24 Jul 2022 02:42:25 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Retry-After": "3",
+ "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": "92b458e6-898b-4b3e-8bf3-97d0464ed1ce",
+ "x-ms-correlation-request-id": "e4578ca6-98da-4066-a957-bca21a50447a",
+ "x-ms-ratelimit-remaining-subscription-writes": "1199",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024226Z:e4578ca6-98da-4066-a957-bca21a50447a"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-9f8d2912",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912",
+ "etag": "W/\u0022d1ff26eb-5b78-437e-92a8-e350c978128f\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-24T02:42:21.1188130Z"
+ },
+ "properties": {
+ "provisioningState": "Updating",
+ "resourceGuid": "2381a121-feab-4d67-8939-bc1b8dddfdf3",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/bb8610c2-3c47-4367-bea1-373fe8d7c95a?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Sun, 24 Jul 2022 02:42:28 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": "345b705f-dcaf-468e-b8bf-a345cc943a13",
+ "x-ms-correlation-request-id": "c2550c75-7862-4c0b-88d8-ba119e428a1a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11999",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024229Z:c2550c75-7862-4c0b-88d8-ba119e428a1a"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Sun, 24 Jul 2022 02:42:29 GMT",
+ "ETag": "W/\u002278fddaef-3a46-45b4-b315-33c6aa70fc1d\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": "365cf627-f327-4688-8335-f4bbe26f5131",
+ "x-ms-correlation-request-id": "8eed7d59-bb97-4fab-802d-4a6d2979574d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024229Z:8eed7d59-bb97-4fab-802d-4a6d2979574d"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-9f8d2912",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912",
+ "etag": "W/\u002278fddaef-3a46-45b4-b315-33c6aa70fc1d\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-24T02:42:21.1188130Z"
+ },
+ "properties": {
+ "provisioningState": "Succeeded",
+ "resourceGuid": "2381a121-feab-4d67-8939-bc1b8dddfdf3",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "151",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "RequestBody": {
+ "properties": {
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "properties": {
+ "serviceName": "Microsoft.Netapp/volumes"
+ }
+ }
+ ]
+ }
+ },
+ "StatusCode": 201,
+ "ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/79e995d3-dfaf-4fb7-99e5-78cdbe2f20c7?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "1318",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Sun, 24 Jul 2022 02:42:29 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Retry-After": "3",
+ "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": "d2602657-7c79-40de-80ca-df65b59204c9",
+ "x-ms-correlation-request-id": "1a6115ae-7a00-47f1-bb5e-bbcb68ce0996",
+ "x-ms-ratelimit-remaining-subscription-writes": "1198",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024230Z:1a6115ae-7a00-47f1-bb5e-bbcb68ce0996"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912/subnets/default",
+ "etag": "W/\u00224cc1e475-1c99-447c-be82-ca9b3ed0b9c5\u0022",
+ "properties": {
+ "provisioningState": "Updating",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u00224cc1e475-1c99-447c-be82-ca9b3ed0b9c5\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/79e995d3-dfaf-4fb7-99e5-78cdbe2f20c7?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Sun, 24 Jul 2022 02:42:32 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": "7f2a652a-3033-47db-afee-dd7bfdad0d48",
+ "x-ms-correlation-request-id": "a73c4d09-fdc9-4818-aa5e-7b202b510d66",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024233Z:a73c4d09-fdc9-4818-aa5e-7b202b510d66"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Sun, 24 Jul 2022 02:42:33 GMT",
+ "ETag": "W/\u0022adafd460-bf9c-4cec-a1d9-6a320ea0e822\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": "9c509cbe-8b8e-4960-a26e-9f096cb63921",
+ "x-ms-correlation-request-id": "81da1ec6-df31-486c-9adc-4496320705af",
+ "x-ms-ratelimit-remaining-subscription-reads": "11996",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024233Z:81da1ec6-df31-486c-9adc-4496320705af"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912/subnets/default",
+ "etag": "W/\u0022adafd460-bf9c-4cec-a1d9-6a320ea0e822\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u0022adafd460-bf9c-4cec-a1d9-6a320ea0e822\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "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.11.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": "Sun, 24 Jul 2022 02:42: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.13315.8 - NEULR2 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.11.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": "Sun, 24 Jul 2022 02:42: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.13315.8 - WEULR2 ProdSlices",
+ "X-XSS-Protection": "0"
},
- "StatusCode": 201,
+ "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": "56dc951d-c5bf-4568-8071-8c446a66936b",
+ "Connection": "keep-alive",
+ "Content-Length": "281",
+ "Content-Type": "application/x-www-form-urlencoded",
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.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.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
+ },
+ "RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "56dc951d-c5bf-4568-8071-8c446a66936b",
+ "Content-Length": "114",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Sun, 24 Jul 2022 02:42:33 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.13315.8 - NEULR2 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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912?api-version=2022-03-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "23",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/135f72cd-41d4-477e-a4d7-a87f4d4d6cd6?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e6fd4604-eb7d-48b3-afc6-ca59e4d85ecf?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "699",
+ "Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:24:57 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T10%3A24%3A56.5677627Z\u0027\u0022",
+ "Date": "Sun, 24 Jul 2022 02:42:36 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-24T02%3A42%3A36.5687508Z\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": "60765ef1-5365-403b-83bd-0b3cb0a7e9b7",
- "x-ms-ratelimit-remaining-subscription-writes": "1196",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102457Z:60765ef1-5365-403b-83bd-0b3cb0a7e9b7",
+ "x-ms-correlation-request-id": "d0328a73-5767-4f40-ac5b-fec0d038d46e",
+ "x-ms-ratelimit-remaining-subscription-writes": "1197",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024237Z:d0328a73-5767-4f40-ac5b-fec0d038d46e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T10%3A24%3A56.5677627Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-24T02%3A42%3A36.5687508Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T10:24:54.0298091Z"
+ "CreatedOnDate": "2022-07-23T10:24:16.3245353Z"
},
"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": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T10:24:55.7842136Z",
+ "createdAt": "2022-07-23T10:24:17.4017466Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T10:24:55.7842136Z"
+ "lastModifiedAt": "2022-07-23T10:24:17.4017466Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/135f72cd-41d4-477e-a4d7-a87f4d4d6cd6?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e6fd4604-eb7d-48b3-afc6-ca59e4d85ecf?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +846,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:25:27 GMT",
+ "Date": "Sun, 24 Jul 2022 02:43:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +854,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "35a4f348-0465-46c2-b3a7-41b1201704d2",
- "x-ms-ratelimit-remaining-subscription-reads": "11981",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102528Z:35a4f348-0465-46c2-b3a7-41b1201704d2",
+ "x-ms-correlation-request-id": "f3b2fe0b-6175-4edb-8cf0-a94ea0f2ad13",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024307Z:f3b2fe0b-6175-4edb-8cf0-a94ea0f2ad13",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/135f72cd-41d4-477e-a4d7-a87f4d4d6cd6",
- "name": "135f72cd-41d4-477e-a4d7-a87f4d4d6cd6",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e6fd4604-eb7d-48b3-afc6-ca59e4d85ecf",
+ "name": "e6fd4604-eb7d-48b3-afc6-ca59e4d85ecf",
"status": "Succeeded",
- "startTime": "2022-05-24T10:24:56.5719184Z",
- "endTime": "2022-05-24T10:24:56.6187918Z",
+ "startTime": "2022-07-24T02:42:36.5639672Z",
+ "endTime": "2022-07-24T02:42:37.1421266Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +886,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:25:28 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T10%3A24%3A56.6230819Z\u0027\u0022",
+ "Date": "Sun, 24 Jul 2022 02:43:07 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-24T02%3A42%3A37.1374266Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,67 +895,64 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d041310a-7f08-43bb-87a1-222530a87687",
- "x-ms-ratelimit-remaining-subscription-reads": "11980",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102528Z:d041310a-7f08-43bb-87a1-222530a87687",
+ "x-ms-correlation-request-id": "fbe7d89b-e18b-4a41-baa6-000506438045",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024308Z:fbe7d89b-e18b-4a41-baa6-000506438045",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T10%3A24%3A56.6230819Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-24T10:24:54.0298091Z"
- },
+ "etag": "W/\u0022datetime\u00272022-07-24T02%3A42%3A37.1374266Z\u0027\u0022",
+ "location": "westus2",
"properties": {
+ "provisioningState": "Succeeded",
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
],
"encryption": {
"keySource": "Microsoft.NetApp"
- },
- "provisioningState": "Succeeded"
+ }
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T10:24:55.7842136Z",
+ "createdAt": "2022-07-23T10:24:17.4017466Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T10:24:55.7842136Z"
+ "lastModifiedAt": "2022-07-24T02:42:35.689007Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "150",
+ "Content-Length": "138",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"size": 4398046511104,
"serviceLevel": "Premium",
@@ -399,30 +962,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd4d4b40-02e1-4b92-b712-b3f7818e4251?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44f0b645-3ad3-45f3-ae90-b2128e2df275?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "917",
+ "Content-Length": "916",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:25:31 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T10%3A25%3A31.1238572Z\u0027\u0022",
+ "Date": "Sun, 24 Jul 2022 02:43:10 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-24T02%3A43%3A10.1669223Z\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": "55cb28e0-a5ab-4a91-9be3-4168039aeb07",
- "x-ms-ratelimit-remaining-subscription-writes": "1195",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102531Z:55cb28e0-a5ab-4a91-9be3-4168039aeb07",
+ "x-ms-correlation-request-id": "5cf35d08-83f0-4b6d-90f9-c240f49e8698",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024311Z:5cf35d08-83f0-4b6d-90f9-c240f49e8698",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T10%3A25%3A31.1238572Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-24T02%3A43%3A10.1669223Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T10:25:29.4648723Z"
+ "CreatedOnDate": "2022-07-24T02:43:08.4514442Z"
},
"properties": {
"serviceLevel": "Premium",
@@ -436,21 +999,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T10:25:30.7301585Z",
+ "createdAt": "2022-07-24T02:43:09.944034Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T10:25:30.7301585Z"
+ "lastModifiedAt": "2022-07-24T02:43:09.944034Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd4d4b40-02e1-4b92-b712-b3f7818e4251?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44f0b645-3ad3-45f3-ae90-b2128e2df275?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -458,7 +1021,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:26:02 GMT",
+ "Date": "Sun, 24 Jul 2022 02:43:40 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -466,31 +1029,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a3525bfc-c91a-41e1-86ff-917265d6384d",
- "x-ms-ratelimit-remaining-subscription-reads": "11979",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102602Z:a3525bfc-c91a-41e1-86ff-917265d6384d",
+ "x-ms-correlation-request-id": "95e67cee-5d17-4724-bf82-3896f7f3908f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024341Z:95e67cee-5d17-4724-bf82-3896f7f3908f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd4d4b40-02e1-4b92-b712-b3f7818e4251",
- "name": "bd4d4b40-02e1-4b92-b712-b3f7818e4251",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44f0b645-3ad3-45f3-ae90-b2128e2df275",
+ "name": "44f0b645-3ad3-45f3-ae90-b2128e2df275",
"status": "Succeeded",
- "startTime": "2022-05-24T10:25:31.1228063Z",
- "endTime": "2022-05-24T10:25:32.0759014Z",
+ "startTime": "2022-07-24T02:43:10.1735863Z",
+ "endTime": "2022-07-24T02:43:10.3298817Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -498,8 +1061,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:26:02 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T10%3A25%3A32.0765612Z\u0027\u0022",
+ "Date": "Sun, 24 Jul 2022 02:43:41 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-24T02%3A43%3A10.3205388Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -507,22 +1070,22 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ecd7e480-b6cb-4f84-905b-2ba10a38c38c",
- "x-ms-ratelimit-remaining-subscription-reads": "11978",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102603Z:ecd7e480-b6cb-4f84-905b-2ba10a38c38c",
+ "x-ms-correlation-request-id": "f73f64e5-930b-4e15-9583-3ead0bf581a3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024341Z:f73f64e5-930b-4e15-9583-3ead0bf581a3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T10%3A25%3A32.0765612Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-24T02%3A43%3A10.3205388Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T10:25:29.4648723Z"
+ "CreatedOnDate": "2022-07-24T02:43:08.4514442Z"
},
"properties": {
- "poolId": "d866988b-3194-10ef-86cf-0271c117182c",
+ "poolId": "3361152a-d0a4-e834-335c-71e949c8877a",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
@@ -531,38 +1094,30 @@
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T10:25:30.7301585Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T10:25:30.7301585Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "800",
+ "Content-Length": "770",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3",
"serviceLevel": "Premium",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -576,45 +1131,44 @@
"avsDataStore": "Disabled",
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled"
+ "defaultGroupQuotaInKiBs": 0
}
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/987c96a0-3e3b-4d7c-a2be-277eb293678a?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/438368aa-1567-420f-82f9-06496f095f07?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "1567",
+ "Content-Length": "1550",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:26:18 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T10%3A26%3A17.4761551Z\u0027\u0022",
+ "Date": "Sun, 24 Jul 2022 02:43:53 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-24T02%3A43%3A53.6051479Z\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": "d7bd727b-4212-4bf5-bd29-be1e536a41d4",
- "x-ms-ratelimit-remaining-subscription-writes": "1194",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102618Z:d7bd727b-4212-4bf5-bd29-be1e536a41d4",
+ "x-ms-correlation-request-id": "96c882ba-2803-4345-9bbe-5287019a882a",
+ "x-ms-ratelimit-remaining-subscription-writes": "1195",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024354Z:96c882ba-2803-4345-9bbe-5287019a882a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T10%3A26%3A17.4761551Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-24T02%3A43%3A53.6051479Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T10:26:14.0228593Z"
+ "CreatedOnDate": "2022-07-24T02:43:51.9882895Z"
},
"properties": {
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -629,28 +1183,27 @@
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
"provisioningState": "Creating"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T10:26:15.2212029Z",
+ "createdAt": "2022-07-24T02:43:53.1879142Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T10:26:15.2212029Z"
+ "lastModifiedAt": "2022-07-24T02:43:53.1879142Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/987c96a0-3e3b-4d7c-a2be-277eb293678a?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/438368aa-1567-420f-82f9-06496f095f07?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -658,7 +1211,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:26:48 GMT",
+ "Date": "Sun, 24 Jul 2022 02:44:24 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -666,31 +1219,71 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "05ae8f65-fd9d-491c-bbfa-9cc129d445a3",
- "x-ms-ratelimit-remaining-subscription-reads": "11977",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102649Z:05ae8f65-fd9d-491c-bbfa-9cc129d445a3",
+ "x-ms-correlation-request-id": "a45587ab-c78e-4d8a-a469-315221c0386e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024424Z:a45587ab-c78e-4d8a-a469-315221c0386e",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/438368aa-1567-420f-82f9-06496f095f07",
+ "name": "438368aa-1567-420f-82f9-06496f095f07",
+ "status": "Creating",
+ "startTime": "2022-07-24T02:43:53.6125862Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/438368aa-1567-420f-82f9-06496f095f07?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Sun, 24 Jul 2022 02: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": "b2871f36-57c3-4a81-94a0-9acc59d20a03",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024455Z:b2871f36-57c3-4a81-94a0-9acc59d20a03",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/987c96a0-3e3b-4d7c-a2be-277eb293678a",
- "name": "987c96a0-3e3b-4d7c-a2be-277eb293678a",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/438368aa-1567-420f-82f9-06496f095f07",
+ "name": "438368aa-1567-420f-82f9-06496f095f07",
"status": "Creating",
- "startTime": "2022-05-24T10:26:17.480996Z",
+ "startTime": "2022-07-24T02:43:53.6125862Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/987c96a0-3e3b-4d7c-a2be-277eb293678a?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/438368aa-1567-420f-82f9-06496f095f07?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -698,7 +1291,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:27:20 GMT",
+ "Date": "Sun, 24 Jul 2022 02:45:24 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -706,31 +1299,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c64b65e3-de6d-48d1-8c05-2295c02bcddb",
- "x-ms-ratelimit-remaining-subscription-reads": "11976",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102720Z:c64b65e3-de6d-48d1-8c05-2295c02bcddb",
+ "x-ms-correlation-request-id": "cb5aca2d-e4c6-41e0-a42d-6c3dcb9b1c04",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024525Z:cb5aca2d-e4c6-41e0-a42d-6c3dcb9b1c04",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/987c96a0-3e3b-4d7c-a2be-277eb293678a",
- "name": "987c96a0-3e3b-4d7c-a2be-277eb293678a",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/438368aa-1567-420f-82f9-06496f095f07",
+ "name": "438368aa-1567-420f-82f9-06496f095f07",
"status": "Creating",
- "startTime": "2022-05-24T10:26:17.480996Z",
+ "startTime": "2022-07-24T02:43:53.6125862Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/987c96a0-3e3b-4d7c-a2be-277eb293678a?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/438368aa-1567-420f-82f9-06496f095f07?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -738,7 +1331,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:27:50 GMT",
+ "Date": "Sun, 24 Jul 2022 02:45:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -746,31 +1339,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0633bd35-7e80-4c6c-90f4-f10a0a7fc390",
- "x-ms-ratelimit-remaining-subscription-reads": "11975",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102750Z:0633bd35-7e80-4c6c-90f4-f10a0a7fc390",
+ "x-ms-correlation-request-id": "c530d90a-dec9-44c6-bf7f-22368a7f641e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024555Z:c530d90a-dec9-44c6-bf7f-22368a7f641e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/987c96a0-3e3b-4d7c-a2be-277eb293678a",
- "name": "987c96a0-3e3b-4d7c-a2be-277eb293678a",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/438368aa-1567-420f-82f9-06496f095f07",
+ "name": "438368aa-1567-420f-82f9-06496f095f07",
"status": "Creating",
- "startTime": "2022-05-24T10:26:17.480996Z",
+ "startTime": "2022-07-24T02:43:53.6125862Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/987c96a0-3e3b-4d7c-a2be-277eb293678a?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/438368aa-1567-420f-82f9-06496f095f07?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -778,7 +1371,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:28:20 GMT",
+ "Date": "Sun, 24 Jul 2022 02:46:25 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -786,31 +1379,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1b5b6f30-e85f-4627-ac18-ce147225671e",
- "x-ms-ratelimit-remaining-subscription-reads": "11974",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102821Z:1b5b6f30-e85f-4627-ac18-ce147225671e",
+ "x-ms-correlation-request-id": "d72f8865-96b6-4c54-8663-a8437a23a132",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024625Z:d72f8865-96b6-4c54-8663-a8437a23a132",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/987c96a0-3e3b-4d7c-a2be-277eb293678a",
- "name": "987c96a0-3e3b-4d7c-a2be-277eb293678a",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/438368aa-1567-420f-82f9-06496f095f07",
+ "name": "438368aa-1567-420f-82f9-06496f095f07",
"status": "Creating",
- "startTime": "2022-05-24T10:26:17.480996Z",
+ "startTime": "2022-07-24T02:43:53.6125862Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/987c96a0-3e3b-4d7c-a2be-277eb293678a?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/438368aa-1567-420f-82f9-06496f095f07?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -818,7 +1411,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:28:50 GMT",
+ "Date": "Sun, 24 Jul 2022 02:46:55 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -826,31 +1419,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e07ad3ee-c234-438f-a61d-7536425c7349",
- "x-ms-ratelimit-remaining-subscription-reads": "11973",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102851Z:e07ad3ee-c234-438f-a61d-7536425c7349",
+ "x-ms-correlation-request-id": "5f973c7c-ff50-451d-b280-ae13e6849852",
+ "x-ms-ratelimit-remaining-subscription-reads": "11986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024656Z:5f973c7c-ff50-451d-b280-ae13e6849852",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/987c96a0-3e3b-4d7c-a2be-277eb293678a",
- "name": "987c96a0-3e3b-4d7c-a2be-277eb293678a",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/438368aa-1567-420f-82f9-06496f095f07",
+ "name": "438368aa-1567-420f-82f9-06496f095f07",
"status": "Creating",
- "startTime": "2022-05-24T10:26:17.480996Z",
+ "startTime": "2022-07-24T02:43:53.6125862Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/987c96a0-3e3b-4d7c-a2be-277eb293678a?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/438368aa-1567-420f-82f9-06496f095f07?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -858,7 +1451,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:29:20 GMT",
+ "Date": "Sun, 24 Jul 2022 02:47:25 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -866,31 +1459,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ec6a3042-3d38-43a0-9c59-3e834758eb64",
- "x-ms-ratelimit-remaining-subscription-reads": "11972",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102921Z:ec6a3042-3d38-43a0-9c59-3e834758eb64",
+ "x-ms-correlation-request-id": "ccd146fb-bd83-469d-a8a0-fb165292ae0f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024726Z:ccd146fb-bd83-469d-a8a0-fb165292ae0f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/987c96a0-3e3b-4d7c-a2be-277eb293678a",
- "name": "987c96a0-3e3b-4d7c-a2be-277eb293678a",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/438368aa-1567-420f-82f9-06496f095f07",
+ "name": "438368aa-1567-420f-82f9-06496f095f07",
"status": "Creating",
- "startTime": "2022-05-24T10:26:17.480996Z",
+ "startTime": "2022-07-24T02:43:53.6125862Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/987c96a0-3e3b-4d7c-a2be-277eb293678a?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/438368aa-1567-420f-82f9-06496f095f07?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -898,7 +1491,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:29:51 GMT",
+ "Date": "Sun, 24 Jul 2022 02:47:56 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -906,31 +1499,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "41f8770b-ea20-4c52-bf15-c1478902e782",
- "x-ms-ratelimit-remaining-subscription-reads": "11971",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T102952Z:41f8770b-ea20-4c52-bf15-c1478902e782",
+ "x-ms-correlation-request-id": "a48eedb3-ed0d-4279-a436-f2938ff39672",
+ "x-ms-ratelimit-remaining-subscription-reads": "11984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024756Z:a48eedb3-ed0d-4279-a436-f2938ff39672",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/987c96a0-3e3b-4d7c-a2be-277eb293678a",
- "name": "987c96a0-3e3b-4d7c-a2be-277eb293678a",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/438368aa-1567-420f-82f9-06496f095f07",
+ "name": "438368aa-1567-420f-82f9-06496f095f07",
"status": "Creating",
- "startTime": "2022-05-24T10:26:17.480996Z",
+ "startTime": "2022-07-24T02:43:53.6125862Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/987c96a0-3e3b-4d7c-a2be-277eb293678a?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/438368aa-1567-420f-82f9-06496f095f07?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -938,7 +1531,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:30:23 GMT",
+ "Date": "Sun, 24 Jul 2022 02:48:26 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -946,31 +1539,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e16a073b-8d10-4c5b-a26b-008c1b1ff1a1",
- "x-ms-ratelimit-remaining-subscription-reads": "11970",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T103023Z:e16a073b-8d10-4c5b-a26b-008c1b1ff1a1",
+ "x-ms-correlation-request-id": "19415fdf-930d-4e5d-887b-eb1445de14f3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11983",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024826Z:19415fdf-930d-4e5d-887b-eb1445de14f3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/987c96a0-3e3b-4d7c-a2be-277eb293678a",
- "name": "987c96a0-3e3b-4d7c-a2be-277eb293678a",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/438368aa-1567-420f-82f9-06496f095f07",
+ "name": "438368aa-1567-420f-82f9-06496f095f07",
"status": "Succeeded",
- "startTime": "2022-05-24T10:26:17.480996Z",
- "endTime": "2022-05-24T10:30:02.4907497Z",
+ "startTime": "2022-07-24T02:43:53.6125862Z",
+ "endTime": "2022-07-24T02:47:59.1961011Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -978,8 +1571,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:30:23 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T10%3A30%3A02.4797849Z\u0027\u0022",
+ "Date": "Sun, 24 Jul 2022 02:48:27 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-24T02%3A47%3A59.1981378Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -987,24 +1580,24 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ca3c0dde-c7d8-4ed0-9453-b376be877a0a",
- "x-ms-ratelimit-remaining-subscription-reads": "11969",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T103023Z:ca3c0dde-c7d8-4ed0-9453-b376be877a0a",
+ "x-ms-correlation-request-id": "72eab729-8730-4292-a1ed-2b33f6af831d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024827Z:72eab729-8730-4292-a1ed-2b33f6af831d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T10%3A30%3A02.4797849Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-24T02%3A47%3A59.1981378Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T10:26:14.0228593Z"
+ "CreatedOnDate": "2022-07-24T02:43:51.9882895Z"
},
"properties": {
- "fileSystemId": "bd88a606-35b4-d8b1-c738-9c504547aaf8",
+ "fileSystemId": "161b7c6c-0cc3-42f9-ec03-57404f8ea817",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1030,10 +1623,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_3571126d",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_b063169d",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1045,9 +1638,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "bd88a606-35b4-d8b1-c738-9c504547aaf8",
- "fileSystemId": "bd88a606-35b4-d8b1-c738-9c504547aaf8",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "161b7c6c-0cc3-42f9-ec03-57404f8ea817",
+ "fileSystemId": "161b7c6c-0cc3-42f9-ec03-57404f8ea817",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1059,27 +1652,18 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
- "encrypted": true,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T10:26:15.2212029Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T10:26:15.2212029Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1087,7 +1671,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:30:24 GMT",
+ "Date": "Sun, 24 Jul 2022 02:48:27 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1095,26 +1679,26 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "54d46178-05cd-42e1-9333-240f6191e7c8",
- "x-ms-ratelimit-remaining-subscription-reads": "11968",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T103024Z:54d46178-05cd-42e1-9333-240f6191e7c8",
+ "x-ms-correlation-request-id": "e3156f47-f9d4-47ff-a2ab-6eefc417b2f4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11981",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024827Z:e3156f47-f9d4-47ff-a2ab-6eefc417b2f4",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T10%3A30%3A02.4797849Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-24T02%3A47%3A59.1981378Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T10:26:14.0228593Z"
+ "CreatedOnDate": "2022-07-24T02:43:51.9882895Z"
},
"properties": {
- "fileSystemId": "bd88a606-35b4-d8b1-c738-9c504547aaf8",
+ "fileSystemId": "161b7c6c-0cc3-42f9-ec03-57404f8ea817",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1140,10 +1724,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_3571126d",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_b063169d",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1155,9 +1739,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "bd88a606-35b4-d8b1-c738-9c504547aaf8",
- "fileSystemId": "bd88a606-35b4-d8b1-c738-9c504547aaf8",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "161b7c6c-0cc3-42f9-ec03-57404f8ea817",
+ "fileSystemId": "161b7c6c-0cc3-42f9-ec03-57404f8ea817",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1169,59 +1753,90 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
- "encrypted": true,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T10:26:15.2212029Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T10:26:15.2212029Z"
}
}
]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/4f51da21-52b8-4b13-bf3b-3e89151de4f9?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/96293ed6-75ce-4847-91f9-3d3b6eb42b26?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 24 May 2022 10:30:24 GMT",
+ "Date": "Sun, 24 Jul 2022 02:48:28 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4f51da21-52b8-4b13-bf3b-3e89151de4f9?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/96293ed6-75ce-4847-91f9-3d3b6eb42b26?api-version=2022-03-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": "db344384-0890-4e35-b246-8efe6e1abea7",
- "x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T103024Z:db344384-0890-4e35-b246-8efe6e1abea7",
+ "x-ms-correlation-request-id": "beef5d8e-1ca7-49c3-9c88-d13ed8792ade",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14999",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024828Z:beef5d8e-1ca7-49c3-9c88-d13ed8792ade",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4f51da21-52b8-4b13-bf3b-3e89151de4f9?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/96293ed6-75ce-4847-91f9-3d3b6eb42b26?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Sun, 24 Jul 2022 02:48: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": "843c0f48-8f37-4f95-8c05-68e08bd20d90",
+ "x-ms-ratelimit-remaining-subscription-reads": "11980",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024858Z:843c0f48-8f37-4f95-8c05-68e08bd20d90",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/96293ed6-75ce-4847-91f9-3d3b6eb42b26",
+ "name": "96293ed6-75ce-4847-91f9-3d3b6eb42b26",
+ "status": "Deleting",
+ "startTime": "2022-07-24T02:48:28.1860131Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/96293ed6-75ce-4847-91f9-3d3b6eb42b26?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1229,7 +1844,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:30:54 GMT",
+ "Date": "Sun, 24 Jul 2022 02:49:29 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1237,31 +1852,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3c763076-40b9-44b0-956a-d90b58ebef5f",
- "x-ms-ratelimit-remaining-subscription-reads": "11967",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T103055Z:3c763076-40b9-44b0-956a-d90b58ebef5f",
+ "x-ms-correlation-request-id": "c12c64d0-69db-47dd-b9b9-455d7f840554",
+ "x-ms-ratelimit-remaining-subscription-reads": "11979",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024929Z:c12c64d0-69db-47dd-b9b9-455d7f840554",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4f51da21-52b8-4b13-bf3b-3e89151de4f9",
- "name": "4f51da21-52b8-4b13-bf3b-3e89151de4f9",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/96293ed6-75ce-4847-91f9-3d3b6eb42b26",
+ "name": "96293ed6-75ce-4847-91f9-3d3b6eb42b26",
"status": "Deleting",
- "startTime": "2022-05-24T10:30:24.631474Z",
+ "startTime": "2022-07-24T02:48:28.1860131Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/4f51da21-52b8-4b13-bf3b-3e89151de4f9?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/96293ed6-75ce-4847-91f9-3d3b6eb42b26?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1269,7 +1884,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:31:25 GMT",
+ "Date": "Sun, 24 Jul 2022 02:49:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1277,31 +1892,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "dee6a585-8eba-4f20-af44-3251cbf6e111",
- "x-ms-ratelimit-remaining-subscription-reads": "11966",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T103125Z:dee6a585-8eba-4f20-af44-3251cbf6e111",
+ "x-ms-correlation-request-id": "d0347156-d985-40e2-8e4c-6b58ec4bff2f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11978",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T024959Z:d0347156-d985-40e2-8e4c-6b58ec4bff2f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4f51da21-52b8-4b13-bf3b-3e89151de4f9",
- "name": "4f51da21-52b8-4b13-bf3b-3e89151de4f9",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/96293ed6-75ce-4847-91f9-3d3b6eb42b26",
+ "name": "96293ed6-75ce-4847-91f9-3d3b6eb42b26",
"status": "Succeeded",
- "startTime": "2022-05-24T10:30:24.631474Z",
- "endTime": "2022-05-24T10:31:19.7238689Z",
+ "startTime": "2022-07-24T02:48:28.1860131Z",
+ "endTime": "2022-07-24T02:49:33.174784Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/4f51da21-52b8-4b13-bf3b-3e89151de4f9?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/96293ed6-75ce-4847-91f9-3d3b6eb42b26?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1309,7 +1924,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:31:25 GMT",
+ "Date": "Sun, 24 Jul 2022 02:49:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1317,25 +1932,25 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4db998a6-bfa2-4a68-8b48-076b011d5aa5",
- "x-ms-ratelimit-remaining-subscription-reads": "11965",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T103125Z:4db998a6-bfa2-4a68-8b48-076b011d5aa5",
+ "x-ms-correlation-request-id": "c269e389-5ecc-48b2-b5df-49d977f49a14",
+ "x-ms-ratelimit-remaining-subscription-reads": "11977",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T025000Z:c269e389-5ecc-48b2-b5df-49d977f49a14",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T10%3A31%3A02.2081311Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-24T02%3A48%3A28.1836346Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T10:26:14.0228593Z"
+ "CreatedOnDate": "2022-07-24T02:43:51.9882895Z"
},
"properties": {
- "fileSystemId": "bd88a606-35b4-d8b1-c738-9c504547aaf8",
+ "fileSystemId": "161b7c6c-0cc3-42f9-ec03-57404f8ea817",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
+ "creationToken": "sdk-py-tests-vol-3",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -1363,25 +1978,25 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "DELETED_baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_3571126d",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_b063169d",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "d866988b-3194-10ef-86cf-0271c117182c",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3",
+ "poolId": "3361152a-d0a4-e834-335c-71e949c8877a",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "bd88a606-35b4-d8b1-c738-9c504547aaf8",
- "fileSystemId": "bd88a606-35b4-d8b1-c738-9c504547aaf8",
+ "mountTargetId": "161b7c6c-0cc3-42f9-ec03-57404f8ea817",
+ "fileSystemId": "161b7c6c-0cc3-42f9-ec03-57404f8ea817",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1400,59 +2015,49 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"encrypted": true,
- "smbAccessBasedEnumeration": "Disabled",
- "smbNonBrowsable": "Disabled",
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T10:26:15.2212029Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T10:26:15.2212029Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "306",
+ "Content-Length": "311",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:34:48 GMT",
+ "Date": "Sun, 24 Jul 2022 02:53:22 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6dc83446-3483-4fd6-be7d-b40d235d0b59",
+ "x-ms-correlation-request-id": "736f78c0-c4af-41b1-b680-8c0dbfa8f136",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T103448Z:6dc83446-3483-4fd6-be7d-b40d235d0b59"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T025323Z:736f78c0-c4af-41b1-b680-8c0dbfa8f136"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1460,7 +2065,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:34:49 GMT",
+ "Date": "Sun, 24 Jul 2022 02:53:23 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1468,9 +2073,9 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1e3c6f37-a71c-484b-87fe-82675801b862",
+ "x-ms-correlation-request-id": "4f6e4b05-74c0-4034-acda-87f12aa7b6c6",
"x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T103449Z:1e3c6f37-a71c-484b-87fe-82675801b862",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T025324Z:4f6e4b05-74c0-4034-acda-87f12aa7b6c6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -1478,74 +2083,74 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "306",
+ "Content-Length": "311",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:38:11 GMT",
+ "Date": "Sun, 24 Jul 2022 02:56:47 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "25a603ad-5e8c-49cd-b833-e373df56aa5e",
+ "x-ms-correlation-request-id": "f35bc26d-b7a2-400c-a461-571d681df0ee",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T103812Z:25a603ad-5e8c-49cd-b833-e373df56aa5e"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T025647Z:f35bc26d-b7a2-400c-a461-571d681df0ee"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/7dbb5ccc-a591-45f9-afed-fc7c9638da5f?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7741fa9e-db4b-40e6-b4e9-280fb6b76b51?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 24 May 2022 10:38:25 GMT",
+ "Date": "Sun, 24 Jul 2022 02:57:00 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7dbb5ccc-a591-45f9-afed-fc7c9638da5f?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7741fa9e-db4b-40e6-b4e9-280fb6b76b51?api-version=2022-03-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": "5f525113-f225-4dd4-8156-7a78dd36fa2e",
+ "x-ms-correlation-request-id": "0a44feef-c2db-4ed9-953c-8759dc2e3089",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T103825Z:5f525113-f225-4dd4-8156-7a78dd36fa2e",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T025700Z:0a44feef-c2db-4ed9-953c-8759dc2e3089",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7dbb5ccc-a591-45f9-afed-fc7c9638da5f?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7741fa9e-db4b-40e6-b4e9-280fb6b76b51?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1553,7 +2158,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:38:55 GMT",
+ "Date": "Sun, 24 Jul 2022 02:57:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1561,31 +2166,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c3540f0d-2298-43a4-8fca-1edf099dbc08",
+ "x-ms-correlation-request-id": "387a709d-dfb9-47ff-a476-6fafc05cb9d6",
"x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T103855Z:c3540f0d-2298-43a4-8fca-1edf099dbc08",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T025730Z:387a709d-dfb9-47ff-a476-6fafc05cb9d6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7dbb5ccc-a591-45f9-afed-fc7c9638da5f",
- "name": "7dbb5ccc-a591-45f9-afed-fc7c9638da5f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7741fa9e-db4b-40e6-b4e9-280fb6b76b51",
+ "name": "7741fa9e-db4b-40e6-b4e9-280fb6b76b51",
"status": "Succeeded",
- "startTime": "2022-05-24T10:38:25.4939811Z",
- "endTime": "2022-05-24T10:38:28.9811221Z",
+ "startTime": "2022-07-24T02:57:00.3889162Z",
+ "endTime": "2022-07-24T02:57:01.0296705Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/7dbb5ccc-a591-45f9-afed-fc7c9638da5f?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7741fa9e-db4b-40e6-b4e9-280fb6b76b51?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1593,7 +2198,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:38:56 GMT",
+ "Date": "Sun, 24 Jul 2022 02:57:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1601,211 +2206,203 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b7f3c4ce-0887-48b2-a97c-eb15be0b3eed",
+ "x-ms-correlation-request-id": "29c98c29-eb1c-434e-8b6d-b6725830c440",
"x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T103856Z:b7f3c4ce-0887-48b2-a97c-eb15be0b3eed",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T025731Z:29c98c29-eb1c-434e-8b6d-b6725830c440",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T10%3A38%3A25.5023258Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-24T02%3A57%3A00.3770283Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T10:25:29.4648723Z"
+ "CreatedOnDate": "2022-07-24T02:43:08.4514442Z"
},
"properties": {
- "poolId": "d866988b-3194-10ef-86cf-0271c117182c",
+ "poolId": "3361152a-d0a4-e834-335c-71e949c8877a",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1",
"qosType": "Auto",
"totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T10:25:30.7301585Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T10:25:30.7301585Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 10:39:06 GMT",
+ "Date": "Sun, 24 Jul 2022 02:57:40 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9f997c10-f2d7-402a-b82f-4ad50a96d1cf",
+ "x-ms-correlation-request-id": "62c3132b-b560-4c8f-b6af-e06a70f8a8f1",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T103906Z:9f997c10-f2d7-402a-b82f-4ad50a96d1cf"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T025741Z:62c3132b-b560-4c8f-b6af-e06a70f8a8f1"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 10:39:16 GMT",
+ "Date": "Sun, 24 Jul 2022 02:57:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "54b7012b-d61b-4d1a-a5fb-07ed0c7eea4f",
+ "x-ms-correlation-request-id": "4965df64-1d4d-4c82-9268-a834859628e4",
"x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T103916Z:54b7012b-d61b-4d1a-a5fb-07ed0c7eea4f"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T025751Z:4965df64-1d4d-4c82-9268-a834859628e4"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 10:39:26 GMT",
+ "Date": "Sun, 24 Jul 2022 02:58:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "31b083c3-56a9-4c5a-ad2f-97817de0dffd",
+ "x-ms-correlation-request-id": "cb1eb1f8-34d5-4088-bcab-89a87df1cc3f",
"x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T103927Z:31b083c3-56a9-4c5a-ad2f-97817de0dffd"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T025803Z:cb1eb1f8-34d5-4088-bcab-89a87df1cc3f"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 10:39:36 GMT",
+ "Date": "Sun, 24 Jul 2022 02:58:13 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "cbff444b-09d1-4b61-aa9a-7110ab28c5de",
+ "x-ms-correlation-request-id": "ea8775c3-d098-475c-8b55-ff242f29aacb",
"x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T103937Z:cbff444b-09d1-4b61-aa9a-7110ab28c5de"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T025814Z:ea8775c3-d098-475c-8b55-ff242f29aacb"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:39:46 GMT",
+ "Date": "Sun, 24 Jul 2022 02:58:23 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d149f3fb-28e8-46b7-8689-7a283a2491ce",
+ "x-ms-correlation-request-id": "cc3f24b7-b31e-40c4-bc7d-8203a49d0b4b",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T103947Z:d149f3fb-28e8-46b7-8689-7a283a2491ce"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T025824Z:cc3f24b7-b31e-40c4-bc7d-8203a49d0b4b"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/9a8f2eba-77a4-4789-81d6-c13909e77f3c?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fe63090b-8e3d-4079-8dda-cc3e75e9624e?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 24 May 2022 10:39:48 GMT",
+ "Date": "Sun, 24 Jul 2022 02:58:25 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9a8f2eba-77a4-4789-81d6-c13909e77f3c?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fe63090b-8e3d-4079-8dda-cc3e75e9624e?api-version=2022-03-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": "ca08c0c8-d963-4733-b9d2-a1f0b2ea6f0d",
+ "x-ms-correlation-request-id": "3cea0b3b-7d2f-42a3-94c6-c4662930706b",
"x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T103949Z:ca08c0c8-d963-4733-b9d2-a1f0b2ea6f0d",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T025825Z:3cea0b3b-7d2f-42a3-94c6-c4662930706b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9a8f2eba-77a4-4789-81d6-c13909e77f3c?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fe63090b-8e3d-4079-8dda-cc3e75e9624e?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1813,7 +2410,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:40:18 GMT",
+ "Date": "Sun, 24 Jul 2022 02:58:55 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1821,31 +2418,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1af18967-5775-49b9-8d0d-c5621e422d5c",
+ "x-ms-correlation-request-id": "7ec92a5f-3039-4c74-af50-dfbab9ca19c8",
"x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T104019Z:1af18967-5775-49b9-8d0d-c5621e422d5c",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T025856Z:7ec92a5f-3039-4c74-af50-dfbab9ca19c8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9a8f2eba-77a4-4789-81d6-c13909e77f3c",
- "name": "9a8f2eba-77a4-4789-81d6-c13909e77f3c",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fe63090b-8e3d-4079-8dda-cc3e75e9624e",
+ "name": "fe63090b-8e3d-4079-8dda-cc3e75e9624e",
"status": "Succeeded",
- "startTime": "2022-05-24T10:39:48.8681585Z",
- "endTime": "2022-05-24T10:39:48.9150299Z",
+ "startTime": "2022-07-24T02:58:25.6876096Z",
+ "endTime": "2022-07-24T02:58:25.7345343Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9a8f2eba-77a4-4789-81d6-c13909e77f3c?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fe63090b-8e3d-4079-8dda-cc3e75e9624e?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1853,7 +2450,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:40:19 GMT",
+ "Date": "Sun, 24 Jul 2022 02:58:55 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1861,66 +2458,99 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7527e176-8fa9-4042-ac21-cbfac9295460",
+ "x-ms-correlation-request-id": "0c168b56-c543-4e08-9432-78b38acd9881",
"x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T104020Z:7527e176-8fa9-4042-ac21-cbfac9295460",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T025856Z:0c168b56-c543-4e08-9432-78b38acd9881",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T10%3A39%3A48.8740661Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-24T10:24:54.0298091Z"
- },
+ "etag": "W/\u0022datetime\u00272022-07-24T02%3A58%3A25.6624654Z\u0027\u0022",
+ "location": "westus2",
"properties": {
"encryption": {
"keySource": "Microsoft.NetApp"
},
+ "activeDirectories": [],
"provisioningState": "Deleting"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T10:24:55.7842136Z",
+ "createdAt": "2022-07-23T10:24:17.4017466Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T10:24:55.7842136Z"
+ "lastModifiedAt": "2022-07-24T02:42:35.689007Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 10:40:21 GMT",
+ "Date": "Sun, 24 Jul 2022 02: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": "c90cd0c5-1368-4d0e-9c59-9858330aeb02",
+ "x-ms-correlation-request-id": "b2c9b861-5aad-49d3-a7a1-d4739f0f7f9a",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220524T104022Z:c90cd0c5-1368-4d0e-9c59-9858330aeb02"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T025856Z:b2c9b861-5aad-49d3-a7a1-d4739f0f7f9a"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912?api-version=2021-08-01",
+ "RequestMethod": "DELETE",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "0",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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/e17246b6-5470-4aed-918f-e0acdaa2b12b?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "0",
+ "Date": "Sun, 24 Jul 2022 02:58:56 GMT",
+ "Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/e17246b6-5470-4aed-918f-e0acdaa2b12b?api-version=2021-08-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": "1cf8c977-1ac8-4811-af9c-b27f8aafd985",
+ "x-ms-correlation-request-id": "4ff64815-5c72-48bc-b1b8-08a23143db24",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220724T025857Z:4ff64815-5c72-48bc-b1b8-08a23143db24"
+ },
+ "ResponseBody": null
}
],
"Variables": {}
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 a25abc21e337..375b27576d91 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 24 May 2022 11:57:51 GMT",
+ "Date": "Mon, 25 Jul 2022 08:45: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.12794.5 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 24 May 2022 11:57:51 GMT",
+ "Date": "Mon, 25 Jul 2022 08:45: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.12794.4 - NEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13201.7 - WEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "76f21110-ce24-4296-b244-90cad2589d7a",
+ "client-request-id": "4ee6cc43-fc0c-4554-a2a2-7abb4a19be99",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "76f21110-ce24-4296-b244-90cad2589d7a",
+ "client-request-id": "4ee6cc43-fc0c-4554-a2a2-7abb4a19be99",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:57:51 GMT",
+ "Date": "Mon, 25 Jul 2022 08:45:51 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12794.5 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - WEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,45 +213,585 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "93",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2",
+ "properties": {
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ }
+ }
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d0034db2-61e5-49c4-92e6-e3dba64a34f5?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/474b8213-07ad-4a9c-b779-1146e84efd73?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Length": "699",
+ "Content-Length": "746",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:58:06 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T11%3A58%3A05.1759994Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 08:46:00 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Retry-After": "3",
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7bcf8564-db1a-4a76-bd61-4366c2c56e67",
+ "x-ms-arm-service-request-id": "ec3c66eb-df9f-4260-9b76-c9c4ee018b86",
+ "x-ms-correlation-request-id": "0a0ab837-fc5f-48b5-9a82-b6b4574fcbd6",
"x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T115807Z:7bcf8564-db1a-4a76-bd61-4366c2c56e67",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T084601Z:0a0ab837-fc5f-48b5-9a82-b6b4574fcbd6"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-84d7262b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b",
+ "etag": "W/\u00229dfebfb6-a77c-4392-9a5b-d1ba78668462\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-25T08:45:54.5439685Z"
+ },
+ "properties": {
+ "provisioningState": "Updating",
+ "resourceGuid": "c21f6c9b-0238-4a4f-9824-2b1d3d25fd3b",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/474b8213-07ad-4a9c-b779-1146e84efd73?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 08:46:04 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": "c0deb48d-5215-41ef-875d-2b8b4fc7475d",
+ "x-ms-correlation-request-id": "04891fa1-4694-4618-a621-eaa57432a5b3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11999",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T084604Z:04891fa1-4694-4618-a621-eaa57432a5b3"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 08:46:05 GMT",
+ "ETag": "W/\u00224e926202-8edc-4271-80e9-993bc40597fe\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": "464ed1e7-6ee8-49b3-937d-d7a92ba25c49",
+ "x-ms-correlation-request-id": "cd671dd1-8064-4ff0-83f5-db86f2bc67f7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T084605Z:cd671dd1-8064-4ff0-83f5-db86f2bc67f7"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-84d7262b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b",
+ "etag": "W/\u00224e926202-8edc-4271-80e9-993bc40597fe\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-25T08:45:54.5439685Z"
+ },
+ "properties": {
+ "provisioningState": "Succeeded",
+ "resourceGuid": "c21f6c9b-0238-4a4f-9824-2b1d3d25fd3b",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "151",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "RequestBody": {
+ "properties": {
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "properties": {
+ "serviceName": "Microsoft.Netapp/volumes"
+ }
+ }
+ ]
+ }
+ },
+ "StatusCode": 201,
+ "ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a01726be-3c68-424e-b4ef-f47429ac7108?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "1318",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 08:46:05 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Retry-After": "3",
+ "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": "954eb547-dcb4-4951-afbb-4503226add1a",
+ "x-ms-correlation-request-id": "af83070d-a5a8-41e8-bd91-e7b0096d170c",
+ "x-ms-ratelimit-remaining-subscription-writes": "1198",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T084605Z:af83070d-a5a8-41e8-bd91-e7b0096d170c"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b/subnets/default",
+ "etag": "W/\u0022d511d824-821a-4dbf-a0ab-9cb3c71d9329\u0022",
+ "properties": {
+ "provisioningState": "Updating",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u0022d511d824-821a-4dbf-a0ab-9cb3c71d9329\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a01726be-3c68-424e-b4ef-f47429ac7108?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 08:46:08 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": "879df012-c441-423b-84dc-4bb6cc02a7ac",
+ "x-ms-correlation-request-id": "84f9fbb0-e7ac-432c-adb9-4ed4b07990b5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T084609Z:84f9fbb0-e7ac-432c-adb9-4ed4b07990b5"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 08:46:09 GMT",
+ "ETag": "W/\u00220c579b02-9fe6-4eb1-83b8-4fef0a82158b\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": "45f37f22-7546-49d7-b9e6-a72393e50935",
+ "x-ms-correlation-request-id": "c977a958-5a07-4f94-ab9b-2bcbbe40a4dd",
+ "x-ms-ratelimit-remaining-subscription-reads": "11996",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T084609Z:c977a958-5a07-4f94-ab9b-2bcbbe40a4dd"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b/subnets/default",
+ "etag": "W/\u00220c579b02-9fe6-4eb1-83b8-4fef0a82158b\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u00220c579b02-9fe6-4eb1-83b8-4fef0a82158b\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "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.11.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": "Mon, 25 Jul 2022 08:46:09 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.13315.8 - NEULR2 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.11.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": "Mon, 25 Jul 2022 08:46:09 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.13315.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": "b7e14068-438c-41df-8d39-48f2a3878c4f",
+ "Connection": "keep-alive",
+ "Content-Length": "281",
+ "Content-Type": "application/x-www-form-urlencoded",
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.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.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
+ },
+ "RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "b7e14068-438c-41df-8d39-48f2a3878c4f",
+ "Content-Length": "114",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 08:46:10 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.13315.8 - NEULR1 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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b?api-version=2022-03-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "23",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/920b5037-0c09-4ccd-b9e7-4a4114dc82ce?api-version=2022-03-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "702",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 08:46:15 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T08%3A46%3A13.9281116Z\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": "3934442c-32a3-4f5d-a7b7-4d80f890eab3",
+ "x-ms-ratelimit-remaining-subscription-writes": "1197",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T084615Z:3934442c-32a3-4f5d-a7b7-4d80f890eab3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T11%3A58%3A05.1759994Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T08%3A46%3A13.9281116Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T11:57:56.9259036Z"
+ "CreatedOnDate": "2022-07-25T08:46:11.2126441Z"
},
"properties": {
"provisioningState": "Creating"
@@ -258,21 +799,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T11:58:03.8801437Z",
+ "createdAt": "2022-07-25T08:46:12.9308691Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T11:58:03.8801437Z"
+ "lastModifiedAt": "2022-07-25T08:46:12.9308691Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d0034db2-61e5-49c4-92e6-e3dba64a34f5?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/920b5037-0c09-4ccd-b9e7-4a4114dc82ce?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +821,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:58:37 GMT",
+ "Date": "Mon, 25 Jul 2022 08:46:45 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +829,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "88c72923-573f-4b49-9cb7-5a0d421d762f",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T115837Z:88c72923-573f-4b49-9cb7-5a0d421d762f",
+ "x-ms-correlation-request-id": "d3cbde98-7af4-4bc8-a470-7885ff473dc9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T084645Z:d3cbde98-7af4-4bc8-a470-7885ff473dc9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d0034db2-61e5-49c4-92e6-e3dba64a34f5",
- "name": "d0034db2-61e5-49c4-92e6-e3dba64a34f5",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/920b5037-0c09-4ccd-b9e7-4a4114dc82ce",
+ "name": "920b5037-0c09-4ccd-b9e7-4a4114dc82ce",
"status": "Succeeded",
- "startTime": "2022-05-24T11:58:05.180281Z",
- "endTime": "2022-05-24T11:58:05.2115387Z",
+ "startTime": "2022-07-25T08:46:13.924891Z",
+ "endTime": "2022-07-25T08:46:14.0030046Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +861,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:58:38 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T11%3A58%3A05.2173673Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 08:46:45 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T08%3A46%3A14.0071879Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,35 +870,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "94cfedd4-7f8b-4e41-8f93-c197f3de1c1b",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T115839Z:94cfedd4-7f8b-4e41-8f93-c197f3de1c1b",
+ "x-ms-correlation-request-id": "60a3883a-62b9-4a0a-8654-25998b8a0fb7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T084646Z:60a3883a-62b9-4a0a-8654-25998b8a0fb7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T11%3A58%3A05.2173673Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T08%3A46%3A14.0071879Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T11:57:56.9259036Z"
+ "CreatedOnDate": "2022-07-25T08:46:11.2126441Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -370,26 +911,26 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T11:58:03.8801437Z",
+ "createdAt": "2022-07-25T08:46:12.9308691Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T11:58:03.8801437Z"
+ "lastModifiedAt": "2022-07-25T08:46:12.9308691Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "150",
+ "Content-Length": "138",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"size": 4398046511104,
"serviceLevel": "Premium",
@@ -399,30 +940,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4a4c3ce4-beba-4abb-b595-d0157506a3e1?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4b924c91-0e31-4024-9a61-598875962cfb?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "917",
+ "Content-Length": "916",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:58:45 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T11%3A58%3A44.0918986Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 08:46:48 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T08%3A46%3A48.0856854Z\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": "a799c942-2824-4b0f-8b3d-027b133fb16b",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T115845Z:a799c942-2824-4b0f-8b3d-027b133fb16b",
+ "x-ms-correlation-request-id": "d960ee20-0819-4faf-ac0e-3d228c40b973",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T084649Z:d960ee20-0819-4faf-ac0e-3d228c40b973",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T11%3A58%3A44.0918986Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T08%3A46%3A48.0856854Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T11:58:40.6424248Z"
+ "CreatedOnDate": "2022-07-25T08:46:46.6342559Z"
},
"properties": {
"serviceLevel": "Premium",
@@ -436,21 +977,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T11:58:43.6268716Z",
+ "createdAt": "2022-07-25T08:46:47.876532Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T11:58:43.6268716Z"
+ "lastModifiedAt": "2022-07-25T08:46:47.876532Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4a4c3ce4-beba-4abb-b595-d0157506a3e1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4b924c91-0e31-4024-9a61-598875962cfb?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -458,7 +999,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:59:15 GMT",
+ "Date": "Mon, 25 Jul 2022 08:47:19 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -466,31 +1007,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "09f14f5a-a468-462a-851c-8389a391187f",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T115916Z:09f14f5a-a468-462a-851c-8389a391187f",
+ "x-ms-correlation-request-id": "7e4a11a1-0729-49f4-b8be-6c4ea1297328",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T084719Z:7e4a11a1-0729-49f4-b8be-6c4ea1297328",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4a4c3ce4-beba-4abb-b595-d0157506a3e1",
- "name": "4a4c3ce4-beba-4abb-b595-d0157506a3e1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4b924c91-0e31-4024-9a61-598875962cfb",
+ "name": "4b924c91-0e31-4024-9a61-598875962cfb",
"status": "Succeeded",
- "startTime": "2022-05-24T11:58:44.0887659Z",
- "endTime": "2022-05-24T11:58:45.0575502Z",
+ "startTime": "2022-07-25T08:46:48.0944609Z",
+ "endTime": "2022-07-25T08:46:48.3942015Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -498,8 +1039,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:59:16 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T11%3A58%3A45.0512929Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 08:47:20 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T08%3A46%3A48.3962847Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -507,22 +1048,22 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "dcfea1d1-f0e7-4ddf-ab6f-bde9bfa20a6f",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T115916Z:dcfea1d1-f0e7-4ddf-ab6f-bde9bfa20a6f",
+ "x-ms-correlation-request-id": "2ceb710f-548d-4bb4-bb14-3d7edd01e224",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T084720Z:2ceb710f-548d-4bb4-bb14-3d7edd01e224",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T11%3A58%3A45.0512929Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T08%3A46%3A48.3962847Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T11:58:40.6424248Z"
+ "CreatedOnDate": "2022-07-25T08:46:46.6342559Z"
},
"properties": {
- "poolId": "7ee2c415-9ac1-4b30-56cb-06f8c4f20e4d",
+ "poolId": "e99ec05e-4e7b-f6cd-052c-1d79fbc99d43",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
@@ -531,38 +1072,30 @@
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T11:58:43.6268716Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T11:58:43.6268716Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-84d7262b?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "800",
+ "Content-Length": "779",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-84d7262b",
"serviceLevel": "Premium",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -576,45 +1109,44 @@
"avsDataStore": "Disabled",
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled"
+ "defaultGroupQuotaInKiBs": 0
}
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c07aa39a-e046-4e43-9902-0251a21f4713?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7ce0fbb2-0fb5-4e59-a09b-684fe150eda8?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "1567",
+ "Content-Length": "1577",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:59:33 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T11%3A59%3A32.1126218Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 08:47:33 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T08%3A47%3A32.3265206Z\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": "e86d5cda-5482-4b76-9691-f627a9d0879b",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T115934Z:e86d5cda-5482-4b76-9691-f627a9d0879b",
+ "x-ms-correlation-request-id": "c17ae8d8-840d-4285-b1a7-de5485a1e045",
+ "x-ms-ratelimit-remaining-subscription-writes": "1195",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T084733Z:c17ae8d8-840d-4285-b1a7-de5485a1e045",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T11%3A59%3A32.1126218Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T08%3A47%3A32.3265206Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T11:59:27.4327201Z"
+ "CreatedOnDate": "2022-07-25T08:47:30.6731628Z"
},
"properties": {
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-84d7262b",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -629,28 +1161,27 @@
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
"provisioningState": "Creating"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T11:59:29.4812516Z",
+ "createdAt": "2022-07-25T08:47:31.9548314Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T11:59:29.4812516Z"
+ "lastModifiedAt": "2022-07-25T08:47:31.9548314Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c07aa39a-e046-4e43-9902-0251a21f4713?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7ce0fbb2-0fb5-4e59-a09b-684fe150eda8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -658,7 +1189,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:00:04 GMT",
+ "Date": "Mon, 25 Jul 2022 08:48:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -666,31 +1197,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "06edf9ff-dd90-4890-b56a-b5590e831b96",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T120005Z:06edf9ff-dd90-4890-b56a-b5590e831b96",
+ "x-ms-correlation-request-id": "ad137361-de03-4c96-bad2-6cb7071ddb4f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T084803Z:ad137361-de03-4c96-bad2-6cb7071ddb4f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c07aa39a-e046-4e43-9902-0251a21f4713",
- "name": "c07aa39a-e046-4e43-9902-0251a21f4713",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7ce0fbb2-0fb5-4e59-a09b-684fe150eda8",
+ "name": "7ce0fbb2-0fb5-4e59-a09b-684fe150eda8",
"status": "Creating",
- "startTime": "2022-05-24T11:59:32.1176111Z",
+ "startTime": "2022-07-25T08:47:32.3297033Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/c07aa39a-e046-4e43-9902-0251a21f4713?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7ce0fbb2-0fb5-4e59-a09b-684fe150eda8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -698,7 +1229,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:00:35 GMT",
+ "Date": "Mon, 25 Jul 2022 08:48:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -706,31 +1237,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "25fbf3c8-bca2-4680-a111-94e4c487b2b2",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T120035Z:25fbf3c8-bca2-4680-a111-94e4c487b2b2",
+ "x-ms-correlation-request-id": "f34c40b8-0d89-4e95-bb80-30738eff2d42",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T084834Z:f34c40b8-0d89-4e95-bb80-30738eff2d42",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c07aa39a-e046-4e43-9902-0251a21f4713",
- "name": "c07aa39a-e046-4e43-9902-0251a21f4713",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7ce0fbb2-0fb5-4e59-a09b-684fe150eda8",
+ "name": "7ce0fbb2-0fb5-4e59-a09b-684fe150eda8",
"status": "Creating",
- "startTime": "2022-05-24T11:59:32.1176111Z",
+ "startTime": "2022-07-25T08:47:32.3297033Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/c07aa39a-e046-4e43-9902-0251a21f4713?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7ce0fbb2-0fb5-4e59-a09b-684fe150eda8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -738,7 +1269,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:01:05 GMT",
+ "Date": "Mon, 25 Jul 2022 08:49:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -746,31 +1277,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fc8d46ac-4ddd-4f7b-8ad3-05078d7dd27b",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T120106Z:fc8d46ac-4ddd-4f7b-8ad3-05078d7dd27b",
+ "x-ms-correlation-request-id": "a4bb993f-25bb-4908-9931-1352b8910f35",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T084904Z:a4bb993f-25bb-4908-9931-1352b8910f35",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c07aa39a-e046-4e43-9902-0251a21f4713",
- "name": "c07aa39a-e046-4e43-9902-0251a21f4713",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7ce0fbb2-0fb5-4e59-a09b-684fe150eda8",
+ "name": "7ce0fbb2-0fb5-4e59-a09b-684fe150eda8",
"status": "Creating",
- "startTime": "2022-05-24T11:59:32.1176111Z",
+ "startTime": "2022-07-25T08:47:32.3297033Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/c07aa39a-e046-4e43-9902-0251a21f4713?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7ce0fbb2-0fb5-4e59-a09b-684fe150eda8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -778,7 +1309,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:01:36 GMT",
+ "Date": "Mon, 25 Jul 2022 08:49:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -786,31 +1317,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f89a4e7e-bd2a-424b-b835-526766f5924f",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T120136Z:f89a4e7e-bd2a-424b-b835-526766f5924f",
+ "x-ms-correlation-request-id": "f8f9cb9e-9e3f-4250-8200-ef8a65869610",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T084935Z:f8f9cb9e-9e3f-4250-8200-ef8a65869610",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c07aa39a-e046-4e43-9902-0251a21f4713",
- "name": "c07aa39a-e046-4e43-9902-0251a21f4713",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7ce0fbb2-0fb5-4e59-a09b-684fe150eda8",
+ "name": "7ce0fbb2-0fb5-4e59-a09b-684fe150eda8",
"status": "Creating",
- "startTime": "2022-05-24T11:59:32.1176111Z",
+ "startTime": "2022-07-25T08:47:32.3297033Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/c07aa39a-e046-4e43-9902-0251a21f4713?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7ce0fbb2-0fb5-4e59-a09b-684fe150eda8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -818,7 +1349,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:02:06 GMT",
+ "Date": "Mon, 25 Jul 2022 08:50:05 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -826,31 +1357,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "49da0f98-0f8e-4a9d-acd9-0ac6f1213b05",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T120207Z:49da0f98-0f8e-4a9d-acd9-0ac6f1213b05",
+ "x-ms-correlation-request-id": "36487325-195a-49fc-a89f-65759eaef7d3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T085005Z:36487325-195a-49fc-a89f-65759eaef7d3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c07aa39a-e046-4e43-9902-0251a21f4713",
- "name": "c07aa39a-e046-4e43-9902-0251a21f4713",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7ce0fbb2-0fb5-4e59-a09b-684fe150eda8",
+ "name": "7ce0fbb2-0fb5-4e59-a09b-684fe150eda8",
"status": "Creating",
- "startTime": "2022-05-24T11:59:32.1176111Z",
+ "startTime": "2022-07-25T08:47:32.3297033Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/c07aa39a-e046-4e43-9902-0251a21f4713?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7ce0fbb2-0fb5-4e59-a09b-684fe150eda8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -858,7 +1389,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:02:38 GMT",
+ "Date": "Mon, 25 Jul 2022 08:50:35 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -866,31 +1397,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3c203a33-86c1-4928-bf9b-15b93cd14a7e",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T120239Z:3c203a33-86c1-4928-bf9b-15b93cd14a7e",
+ "x-ms-correlation-request-id": "d77245fe-9dad-4aae-a146-857cdcaffb84",
+ "x-ms-ratelimit-remaining-subscription-reads": "11986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T085035Z:d77245fe-9dad-4aae-a146-857cdcaffb84",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c07aa39a-e046-4e43-9902-0251a21f4713",
- "name": "c07aa39a-e046-4e43-9902-0251a21f4713",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7ce0fbb2-0fb5-4e59-a09b-684fe150eda8",
+ "name": "7ce0fbb2-0fb5-4e59-a09b-684fe150eda8",
"status": "Creating",
- "startTime": "2022-05-24T11:59:32.1176111Z",
+ "startTime": "2022-07-25T08:47:32.3297033Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/c07aa39a-e046-4e43-9902-0251a21f4713?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7ce0fbb2-0fb5-4e59-a09b-684fe150eda8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -898,7 +1429,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:03:10 GMT",
+ "Date": "Mon, 25 Jul 2022 08:51:06 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -906,31 +1437,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "432f6221-d115-4cf7-9203-d7e739d16c4a",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T120310Z:432f6221-d115-4cf7-9203-d7e739d16c4a",
+ "x-ms-correlation-request-id": "db779b52-677b-49c5-b982-6448670d6cda",
+ "x-ms-ratelimit-remaining-subscription-reads": "11985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T085106Z:db779b52-677b-49c5-b982-6448670d6cda",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c07aa39a-e046-4e43-9902-0251a21f4713",
- "name": "c07aa39a-e046-4e43-9902-0251a21f4713",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7ce0fbb2-0fb5-4e59-a09b-684fe150eda8",
+ "name": "7ce0fbb2-0fb5-4e59-a09b-684fe150eda8",
"status": "Creating",
- "startTime": "2022-05-24T11:59:32.1176111Z",
+ "startTime": "2022-07-25T08:47:32.3297033Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/c07aa39a-e046-4e43-9902-0251a21f4713?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7ce0fbb2-0fb5-4e59-a09b-684fe150eda8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -938,7 +1469,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:03:41 GMT",
+ "Date": "Mon, 25 Jul 2022 08:51:37 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -946,31 +1477,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "02edaef4-80d9-4461-87aa-598958e255cf",
- "x-ms-ratelimit-remaining-subscription-reads": "11988",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T120341Z:02edaef4-80d9-4461-87aa-598958e255cf",
+ "x-ms-correlation-request-id": "b16ecda0-01e9-4981-bfc4-3e38c0f4fe62",
+ "x-ms-ratelimit-remaining-subscription-reads": "11984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T085137Z:b16ecda0-01e9-4981-bfc4-3e38c0f4fe62",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c07aa39a-e046-4e43-9902-0251a21f4713",
- "name": "c07aa39a-e046-4e43-9902-0251a21f4713",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7ce0fbb2-0fb5-4e59-a09b-684fe150eda8",
+ "name": "7ce0fbb2-0fb5-4e59-a09b-684fe150eda8",
"status": "Succeeded",
- "startTime": "2022-05-24T11:59:32.1176111Z",
- "endTime": "2022-05-24T12:03:33.0667929Z",
+ "startTime": "2022-07-25T08:47:32.3297033Z",
+ "endTime": "2022-07-25T08:51:33.6856297Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-84d7262b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -978,8 +1509,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:03:42 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T12%3A03%3A33.0585416Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 08:51:37 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T08%3A51%3A33.677052Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -987,24 +1518,24 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "99e01b65-48cc-441b-9c50-908885bb4b0d",
- "x-ms-ratelimit-remaining-subscription-reads": "11987",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T120342Z:99e01b65-48cc-441b-9c50-908885bb4b0d",
+ "x-ms-correlation-request-id": "317a4f39-674a-429b-8ae5-a53795b57e7e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11983",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T085138Z:317a4f39-674a-429b-8ae5-a53795b57e7e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A03%3A33.0585416Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T08%3A51%3A33.677052Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T11:59:27.4327201Z"
+ "CreatedOnDate": "2022-07-25T08:47:30.6731628Z"
},
"properties": {
- "fileSystemId": "0fef8d57-d2ae-2c39-44d6-e6e576ddd11b",
+ "fileSystemId": "7c6dd15e-0115-f93f-9442-9db6c9283e3c",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-84d7262b",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1030,10 +1561,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_78554bec",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_f219f9dc",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1045,9 +1576,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "0fef8d57-d2ae-2c39-44d6-e6e576ddd11b",
- "fileSystemId": "0fef8d57-d2ae-2c39-44d6-e6e576ddd11b",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "7c6dd15e-0115-f93f-9442-9db6c9283e3c",
+ "fileSystemId": "7c6dd15e-0115-f93f-9442-9db6c9283e3c",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1059,27 +1590,18 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
- "encrypted": true,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T11:59:29.4812516Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T11:59:29.4812516Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-84d7262b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1087,8 +1609,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:03:42 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T12%3A03%3A33.0585416Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 08:51:38 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T08%3A51%3A33.677052Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1096,24 +1618,24 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fc00cac3-c1e3-4777-809b-c11fb20a339c",
- "x-ms-ratelimit-remaining-subscription-reads": "11986",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T120343Z:fc00cac3-c1e3-4777-809b-c11fb20a339c",
+ "x-ms-correlation-request-id": "ecdc2d15-a10d-4167-8421-2d8ba3081e53",
+ "x-ms-ratelimit-remaining-subscription-reads": "11982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T085138Z:ecdc2d15-a10d-4167-8421-2d8ba3081e53",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A03%3A33.0585416Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T08%3A51%3A33.677052Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T11:59:27.4327201Z"
+ "CreatedOnDate": "2022-07-25T08:47:30.6731628Z"
},
"properties": {
- "fileSystemId": "0fef8d57-d2ae-2c39-44d6-e6e576ddd11b",
+ "fileSystemId": "7c6dd15e-0115-f93f-9442-9db6c9283e3c",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-84d7262b",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1139,10 +1661,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_78554bec",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_f219f9dc",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1154,9 +1676,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "0fef8d57-d2ae-2c39-44d6-e6e576ddd11b",
- "fileSystemId": "0fef8d57-d2ae-2c39-44d6-e6e576ddd11b",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "7c6dd15e-0115-f93f-9442-9db6c9283e3c",
+ "fileSystemId": "7c6dd15e-0115-f93f-9442-9db6c9283e3c",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1168,57 +1690,48 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
- "encrypted": true,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T11:59:29.4812516Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T11:59:29.4812516Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-84d7262b?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/a58e0300-7526-48be-bd43-9371541678a1?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5000a-6877-40e9-8c61-10fd2e1e4cc5?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 24 May 2022 12:03:44 GMT",
+ "Date": "Mon, 25 Jul 2022 08:51:39 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a58e0300-7526-48be-bd43-9371541678a1?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5000a-6877-40e9-8c61-10fd2e1e4cc5?api-version=2022-03-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": "b5cd8205-ab2b-4c63-a2d9-bf01e6ecbd87",
+ "x-ms-correlation-request-id": "170f3127-3053-4d02-b81a-6bb850d91ec0",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T120344Z:b5cd8205-ab2b-4c63-a2d9-bf01e6ecbd87",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T085139Z:170f3127-3053-4d02-b81a-6bb850d91ec0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a58e0300-7526-48be-bd43-9371541678a1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5000a-6877-40e9-8c61-10fd2e1e4cc5?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1226,7 +1739,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:04:14 GMT",
+ "Date": "Mon, 25 Jul 2022 08:52:09 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1234,31 +1747,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9d80d020-637c-4846-b047-e5503e0668c8",
- "x-ms-ratelimit-remaining-subscription-reads": "11985",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T120415Z:9d80d020-637c-4846-b047-e5503e0668c8",
+ "x-ms-correlation-request-id": "a38cbcf7-c934-4965-87cc-31009cd8f67f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11981",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T085209Z:a38cbcf7-c934-4965-87cc-31009cd8f67f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a58e0300-7526-48be-bd43-9371541678a1",
- "name": "a58e0300-7526-48be-bd43-9371541678a1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5000a-6877-40e9-8c61-10fd2e1e4cc5",
+ "name": "0eb5000a-6877-40e9-8c61-10fd2e1e4cc5",
"status": "Deleting",
- "startTime": "2022-05-24T12:03:44.2658283Z",
+ "startTime": "2022-07-25T08:51:39.32473Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/a58e0300-7526-48be-bd43-9371541678a1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5000a-6877-40e9-8c61-10fd2e1e4cc5?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1266,7 +1779,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:04:47 GMT",
+ "Date": "Mon, 25 Jul 2022 08:52:39 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1274,31 +1787,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e26cfc18-64a5-41bf-9743-10cdc79b3762",
- "x-ms-ratelimit-remaining-subscription-reads": "11984",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T120448Z:e26cfc18-64a5-41bf-9743-10cdc79b3762",
+ "x-ms-correlation-request-id": "060e48a2-669d-42b9-b360-3c2466160254",
+ "x-ms-ratelimit-remaining-subscription-reads": "11980",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T085240Z:060e48a2-669d-42b9-b360-3c2466160254",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a58e0300-7526-48be-bd43-9371541678a1",
- "name": "a58e0300-7526-48be-bd43-9371541678a1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5000a-6877-40e9-8c61-10fd2e1e4cc5",
+ "name": "0eb5000a-6877-40e9-8c61-10fd2e1e4cc5",
"status": "Deleting",
- "startTime": "2022-05-24T12:03:44.2658283Z",
+ "startTime": "2022-07-25T08:51:39.32473Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/a58e0300-7526-48be-bd43-9371541678a1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5000a-6877-40e9-8c61-10fd2e1e4cc5?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1306,7 +1819,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:05:18 GMT",
+ "Date": "Mon, 25 Jul 2022 08:53:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1314,31 +1827,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fedb80e7-f8f9-41d7-940d-7845fa829be9",
- "x-ms-ratelimit-remaining-subscription-reads": "11983",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T120519Z:fedb80e7-f8f9-41d7-940d-7845fa829be9",
+ "x-ms-correlation-request-id": "a23d2156-e5c9-4ac7-8097-8bb1ce00f78e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11979",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T085310Z:a23d2156-e5c9-4ac7-8097-8bb1ce00f78e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a58e0300-7526-48be-bd43-9371541678a1",
- "name": "a58e0300-7526-48be-bd43-9371541678a1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5000a-6877-40e9-8c61-10fd2e1e4cc5",
+ "name": "0eb5000a-6877-40e9-8c61-10fd2e1e4cc5",
"status": "Succeeded",
- "startTime": "2022-05-24T12:03:44.2658283Z",
- "endTime": "2022-05-24T12:04:48.677593Z",
+ "startTime": "2022-07-25T08:51:39.32473Z",
+ "endTime": "2022-07-25T08:52:44.6154766Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/a58e0300-7526-48be-bd43-9371541678a1?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5000a-6877-40e9-8c61-10fd2e1e4cc5?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1346,7 +1859,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:05:20 GMT",
+ "Date": "Mon, 25 Jul 2022 08:53:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1354,25 +1867,26 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d6da8782-7f20-4dbd-9083-b919b7b7f389",
- "x-ms-ratelimit-remaining-subscription-reads": "11982",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T120521Z:d6da8782-7f20-4dbd-9083-b919b7b7f389",
+ "x-ms-correlation-request-id": "0666705b-7945-4a78-a7d4-6532a2b1891b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11978",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T085311Z:0666705b-7945-4a78-a7d4-6532a2b1891b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A04%3A43.4258102Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T08%3A51%3A39.3147881Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T11:59:27.4327201Z"
+ "CreatedOnDate": "2022-07-25T08:47:30.6731628Z"
},
"properties": {
- "fileSystemId": "0fef8d57-d2ae-2c39-44d6-e6e576ddd11b",
+ "networkFeatures": "Basic",
+ "fileSystemId": "7c6dd15e-0115-f93f-9442-9db6c9283e3c",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
+ "creationToken": "sdk-py-tests-vol-3-84d7262b",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -1400,25 +1914,24 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "DELETED_baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_78554bec",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_f219f9dc",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b/subnets/default",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "7ee2c415-9ac1-4b30-56cb-06f8c4f20e4d",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-84d7262b",
+ "poolId": "e99ec05e-4e7b-f6cd-052c-1d79fbc99d43",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "0fef8d57-d2ae-2c39-44d6-e6e576ddd11b",
- "fileSystemId": "0fef8d57-d2ae-2c39-44d6-e6e576ddd11b",
+ "mountTargetId": "7c6dd15e-0115-f93f-9442-9db6c9283e3c",
+ "fileSystemId": "7c6dd15e-0115-f93f-9442-9db6c9283e3c",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1437,89 +1950,79 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"encrypted": true,
- "smbAccessBasedEnumeration": "Disabled",
- "smbNonBrowsable": "Disabled",
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T11:59:29.4812516Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T11:59:29.4812516Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-84d7262b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "306",
+ "Content-Length": "320",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:08:49 GMT",
+ "Date": "Mon, 25 Jul 2022 08:56:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "94650a2f-4e7d-4cda-930f-a08a82b07721",
+ "x-ms-correlation-request-id": "963b3dc5-03ca-4993-a727-9cd513b95f82",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T120850Z:94650a2f-4e7d-4cda-930f-a08a82b07721"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T085635Z:963b3dc5-03ca-4993-a727-9cd513b95f82"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-84d7262b\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/330c4b90-4bc2-4ae6-96d1-fa9249c660ea?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51252f91-8f55-49fa-bb51-a7b81c1cc3a2?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 24 May 2022 12:09:03 GMT",
+ "Date": "Mon, 25 Jul 2022 08:56:47 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/330c4b90-4bc2-4ae6-96d1-fa9249c660ea?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51252f91-8f55-49fa-bb51-a7b81c1cc3a2?api-version=2022-03-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": "e97dbad1-4d79-4eb0-a79c-f8ca671381b7",
+ "x-ms-correlation-request-id": "1114666d-57f8-4d81-be95-e1b5817f830e",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T120904Z:e97dbad1-4d79-4eb0-a79c-f8ca671381b7",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T085647Z:1114666d-57f8-4d81-be95-e1b5817f830e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/330c4b90-4bc2-4ae6-96d1-fa9249c660ea?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51252f91-8f55-49fa-bb51-a7b81c1cc3a2?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1527,7 +2030,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:09:34 GMT",
+ "Date": "Mon, 25 Jul 2022 08:57:18 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1535,31 +2038,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "85977fed-65fd-4304-bf95-07b028fb1c6f",
+ "x-ms-correlation-request-id": "b70179fe-883c-46f4-b47c-e4766f8dc0d6",
"x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T120935Z:85977fed-65fd-4304-bf95-07b028fb1c6f",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T085718Z:b70179fe-883c-46f4-b47c-e4766f8dc0d6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/330c4b90-4bc2-4ae6-96d1-fa9249c660ea",
- "name": "330c4b90-4bc2-4ae6-96d1-fa9249c660ea",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51252f91-8f55-49fa-bb51-a7b81c1cc3a2",
+ "name": "51252f91-8f55-49fa-bb51-a7b81c1cc3a2",
"status": "Succeeded",
- "startTime": "2022-05-24T12:09:04.7885291Z",
- "endTime": "2022-05-24T12:09:09.7888223Z",
+ "startTime": "2022-07-25T08:56:47.7771003Z",
+ "endTime": "2022-07-25T08:56:48.1520948Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/330c4b90-4bc2-4ae6-96d1-fa9249c660ea?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51252f91-8f55-49fa-bb51-a7b81c1cc3a2?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1567,7 +2070,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:09:36 GMT",
+ "Date": "Mon, 25 Jul 2022 08:57:18 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1575,211 +2078,203 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4d0658ef-4b9b-40ea-84fb-2d89b682ca2a",
+ "x-ms-correlation-request-id": "08b816a6-b711-438a-bbc9-70f44162e48c",
"x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T120936Z:4d0658ef-4b9b-40ea-84fb-2d89b682ca2a",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T085718Z:08b816a6-b711-438a-bbc9-70f44162e48c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A09%3A04.7855361Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T08%3A56%3A47.7662264Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T11:58:40.6424248Z"
+ "CreatedOnDate": "2022-07-25T08:46:46.6342559Z"
},
"properties": {
- "poolId": "7ee2c415-9ac1-4b30-56cb-06f8c4f20e4d",
+ "poolId": "e99ec05e-4e7b-f6cd-052c-1d79fbc99d43",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1",
"qosType": "Auto",
"totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T11:58:43.6268716Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T11:58:43.6268716Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 12:09:48 GMT",
+ "Date": "Mon, 25 Jul 2022 08:57:29 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d0074049-4a8f-43fe-b9d8-c2b4cdc5f844",
+ "x-ms-correlation-request-id": "002b272d-9351-4ba1-b773-f7674e33b3e5",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T120948Z:d0074049-4a8f-43fe-b9d8-c2b4cdc5f844"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T085729Z:002b272d-9351-4ba1-b773-f7674e33b3e5"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 12:09:59 GMT",
+ "Date": "Mon, 25 Jul 2022 08:57:39 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4d56b5fa-37b4-441b-92ba-7faf71cff9f7",
+ "x-ms-correlation-request-id": "5c4d4a88-f2a4-47ec-83c0-3bb71d8627e3",
"x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T120959Z:4d56b5fa-37b4-441b-92ba-7faf71cff9f7"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T085739Z:5c4d4a88-f2a4-47ec-83c0-3bb71d8627e3"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 12:10:11 GMT",
+ "Date": "Mon, 25 Jul 2022 08:57:49 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8cb33166-cada-4c78-941f-d01019a70898",
+ "x-ms-correlation-request-id": "e14b0508-bb67-4bee-8e0c-8d59e61d4ad7",
"x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T121012Z:8cb33166-cada-4c78-941f-d01019a70898"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T085750Z:e14b0508-bb67-4bee-8e0c-8d59e61d4ad7"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 12:10:23 GMT",
+ "Date": "Mon, 25 Jul 2022 08:57:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "97165048-48f4-450c-92de-9aa1f717d7a6",
+ "x-ms-correlation-request-id": "c57b7dcf-4653-466b-860d-4b07c088ab5a",
"x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T121023Z:97165048-48f4-450c-92de-9aa1f717d7a6"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T085800Z:c57b7dcf-4653-466b-860d-4b07c088ab5a"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:10:35 GMT",
+ "Date": "Mon, 25 Jul 2022 08:58:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b1a4a900-6440-4ee9-a9f5-ff2bb17aa045",
+ "x-ms-correlation-request-id": "0c0e06e2-c1f5-46ba-8bdc-b5e004b340a5",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T121036Z:b1a4a900-6440-4ee9-a9f5-ff2bb17aa045"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T085810Z:0c0e06e2-c1f5-46ba-8bdc-b5e004b340a5"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/8be8bbaa-6a57-46a8-a9bd-34d447953aa2?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f921c721-0e44-4b3c-8240-4871ae9157ce?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 24 May 2022 12:10:38 GMT",
+ "Date": "Mon, 25 Jul 2022 08:58:12 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8be8bbaa-6a57-46a8-a9bd-34d447953aa2?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f921c721-0e44-4b3c-8240-4871ae9157ce?api-version=2022-03-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": "2d20062a-bd03-4aee-b9cf-6c30c5af14d8",
+ "x-ms-correlation-request-id": "4aec7a3e-8923-4971-b062-d8441b58e239",
"x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T121039Z:2d20062a-bd03-4aee-b9cf-6c30c5af14d8",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T085812Z:4aec7a3e-8923-4971-b062-d8441b58e239",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8be8bbaa-6a57-46a8-a9bd-34d447953aa2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f921c721-0e44-4b3c-8240-4871ae9157ce?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1787,7 +2282,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:11:09 GMT",
+ "Date": "Mon, 25 Jul 2022 08:58:42 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1795,31 +2290,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "44122938-81cf-4a72-b741-0a69fad17382",
+ "x-ms-correlation-request-id": "d428de7c-3a87-46b0-b311-df33b4fafc9a",
"x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T121109Z:44122938-81cf-4a72-b741-0a69fad17382",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T085843Z:d428de7c-3a87-46b0-b311-df33b4fafc9a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8be8bbaa-6a57-46a8-a9bd-34d447953aa2",
- "name": "8be8bbaa-6a57-46a8-a9bd-34d447953aa2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f921c721-0e44-4b3c-8240-4871ae9157ce",
+ "name": "f921c721-0e44-4b3c-8240-4871ae9157ce",
"status": "Succeeded",
- "startTime": "2022-05-24T12:10:39.1724877Z",
- "endTime": "2022-05-24T12:10:39.2193677Z",
+ "startTime": "2022-07-25T08:58:12.4094868Z",
+ "endTime": "2022-07-25T08:58:12.550112Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8be8bbaa-6a57-46a8-a9bd-34d447953aa2?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f921c721-0e44-4b3c-8240-4871ae9157ce?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1827,7 +2322,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:11:10 GMT",
+ "Date": "Mon, 25 Jul 2022 08:58:42 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1835,19 +2330,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6d427053-cc11-43ff-a674-b054d2ced1f1",
+ "x-ms-correlation-request-id": "01938a2e-52fc-4fdc-a874-0b08149c1b7d",
"x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T121111Z:6d427053-cc11-43ff-a674-b054d2ced1f1",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T085843Z:01938a2e-52fc-4fdc-a874-0b08149c1b7d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A10%3A39.1668109Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T08%3A58%3A12.4002314Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T11:57:56.9259036Z"
+ "CreatedOnDate": "2022-07-25T08:46:11.2126441Z"
},
"properties": {
"encryption": {
@@ -1858,43 +2353,78 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T11:58:03.8801437Z",
+ "createdAt": "2022-07-25T08:46:12.9308691Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T11:58:03.8801437Z"
+ "lastModifiedAt": "2022-07-25T08:46:12.9308691Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:11:13 GMT",
+ "Date": "Mon, 25 Jul 2022 08:58:43 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ab681357-c588-4217-bdb2-d425c5ccece9",
+ "x-ms-correlation-request-id": "a577d4f3-2f70-4f9c-b957-1de9594520fb",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T121113Z:ab681357-c588-4217-bdb2-d425c5ccece9"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T085843Z:a577d4f3-2f70-4f9c-b957-1de9594520fb"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b?api-version=2021-08-01",
+ "RequestMethod": "DELETE",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "0",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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/5038b94f-f59c-4b9d-b2aa-d40b76b23d64?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "0",
+ "Date": "Mon, 25 Jul 2022 08:58:44 GMT",
+ "Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/5038b94f-f59c-4b9d-b2aa-d40b76b23d64?api-version=2021-08-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": "901397ee-5e16-4497-808c-1e8c57f10bad",
+ "x-ms-correlation-request-id": "629b47a8-4fa6-48c5-83e8-8aef095af79b",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T085845Z:629b47a8-4fa6-48c5-83e8-8aef095af79b"
+ },
+ "ResponseBody": null
}
],
"Variables": {}
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 ccbc0872e7da..836bfc8db6cc 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 24 May 2022 11:38:53 GMT",
+ "Date": "Fri, 22 Jul 2022 21:51:01 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.12794.5 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 24 May 2022 11:38:54 GMT",
+ "Date": "Fri, 22 Jul 2022 21:51: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.12744.11 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13201.7 - WEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "a5feb5a8-1daf-40ff-93e6-1a9906850541",
+ "client-request-id": "35156259-60ea-4f28-9fc1-678deaa78aaa",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "a5feb5a8-1daf-40ff-93e6-1a9906850541",
+ "client-request-id": "35156259-60ea-4f28-9fc1-678deaa78aaa",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:38:54 GMT",
+ "Date": "Fri, 22 Jul 2022 21:51:02 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12794.5 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - NEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,45 +213,587 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "93",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2",
+ "properties": {
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ }
+ }
+ },
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Azure-AsyncNotification": "Enabled",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/14b97eff-b471-4339-99c4-0a7205221323?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Encoding": "gzip",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 22 Jul 2022 21:51:19 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Retry-After": "3",
+ "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": "51a3ea25-332f-4826-b932-4977665f998f",
+ "x-ms-correlation-request-id": "b4b60aa9-98b8-41b1-9277-4551ab9665b7",
+ "x-ms-ratelimit-remaining-subscription-writes": "1199",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215119Z:b4b60aa9-98b8-41b1-9277-4551ab9665b7"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-a2e023e0",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0",
+ "etag": "W/\u00224a6598a7-11f8-437b-88f0-3683a0915ef4\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-22T21:51:15.3068993Z"
+ },
+ "properties": {
+ "provisioningState": "Updating",
+ "resourceGuid": "3ea92a89-bac1-4ee3-9c7c-158b1c0da746",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/14b97eff-b471-4339-99c4-0a7205221323?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Fri, 22 Jul 2022 21:51: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": "96ed355f-efff-4397-9447-80aa637e2723",
+ "x-ms-correlation-request-id": "f36d890f-9ecd-49a7-b02a-8383b7fc1a73",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215123Z:f36d890f-9ecd-49a7-b02a-8383b7fc1a73"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Fri, 22 Jul 2022 21:51:23 GMT",
+ "ETag": "W/\u00222a2b998b-f954-44fd-a5c7-70dc6b35e089\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": "91e97103-6c8d-44b4-be4a-af5b9a2789f2",
+ "x-ms-correlation-request-id": "3775f2fc-b35f-4777-ac33-3e8a61aa06d2",
+ "x-ms-ratelimit-remaining-subscription-reads": "11996",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215123Z:3775f2fc-b35f-4777-ac33-3e8a61aa06d2"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-a2e023e0",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0",
+ "etag": "W/\u00222a2b998b-f954-44fd-a5c7-70dc6b35e089\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-22T21:51:15.3068993Z"
+ },
+ "properties": {
+ "provisioningState": "Succeeded",
+ "resourceGuid": "3ea92a89-bac1-4ee3-9c7c-158b1c0da746",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "151",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "RequestBody": {
+ "properties": {
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "properties": {
+ "serviceName": "Microsoft.Netapp/volumes"
+ }
+ }
+ ]
+ }
+ },
+ "StatusCode": 201,
+ "ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e721c014-30d5-45d1-b15a-a617cdfec124?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "1318",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 22 Jul 2022 21:51:23 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Retry-After": "3",
+ "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": "f1d5eefa-ab92-4a60-bde8-dab84782b082",
+ "x-ms-correlation-request-id": "652fcf4d-7068-446c-bc37-fe88a6af89a4",
+ "x-ms-ratelimit-remaining-subscription-writes": "1198",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215124Z:652fcf4d-7068-446c-bc37-fe88a6af89a4"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default",
+ "etag": "W/\u0022f97bf734-2aa4-4ddd-bbe9-f8fca0df0f42\u0022",
+ "properties": {
+ "provisioningState": "Updating",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u0022f97bf734-2aa4-4ddd-bbe9-f8fca0df0f42\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e721c014-30d5-45d1-b15a-a617cdfec124?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Fri, 22 Jul 2022 21:51: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": "8ba416f3-ce36-42b7-a2bb-de2ac98be518",
+ "x-ms-correlation-request-id": "bcc029cb-8ef8-4d7a-8f73-e5963f39e0d5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215128Z:bcc029cb-8ef8-4d7a-8f73-e5963f39e0d5"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Fri, 22 Jul 2022 21:51:28 GMT",
+ "ETag": "W/\u00229f542124-0297-4f88-b24a-b6309f6cece9\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": "9a6f8553-fed3-4bd5-9e21-fbc09b785823",
+ "x-ms-correlation-request-id": "a316e64c-44a8-4f47-8d0b-1bab839b3d52",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215128Z:a316e64c-44a8-4f47-8d0b-1bab839b3d52"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default",
+ "etag": "W/\u00229f542124-0297-4f88-b24a-b6309f6cece9\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u00229f542124-0297-4f88-b24a-b6309f6cece9\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "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.11.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": "Fri, 22 Jul 2022 21:51: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.13315.8 - NEULR1 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.11.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": "Fri, 22 Jul 2022 21:51: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.13201.7 - NEULR1 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": "62acd2bb-ddab-4f29-9525-e8b7ae5cf371",
+ "Connection": "keep-alive",
+ "Content-Length": "281",
+ "Content-Type": "application/x-www-form-urlencoded",
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.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.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
+ },
+ "RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "62acd2bb-ddab-4f29-9525-e8b7ae5cf371",
+ "Content-Length": "114",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 22 Jul 2022 21:51:28 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.13315.8 - WEULR2 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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0?api-version=2022-03-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "23",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/d9d6bfb4-b377-48f2-a44e-d1eba7358f59?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1d8130a2-cff7-427f-acd6-cf274eda99f4?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "699",
+ "Content-Length": "702",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:39:13 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T11%3A39%3A12.6586945Z\u0027\u0022",
+ "Date": "Fri, 22 Jul 2022 21:51:33 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-22T21%3A51%3A32.7906554Z\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": "29b91374-d74a-444b-ad81-d4f1836443c5",
- "x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T113914Z:29b91374-d74a-444b-ad81-d4f1836443c5",
+ "x-ms-correlation-request-id": "f9314e92-4be5-4940-b399-85238fe97b99",
+ "x-ms-ratelimit-remaining-subscription-writes": "1197",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215133Z:f9314e92-4be5-4940-b399-85238fe97b99",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T11%3A39%3A12.6586945Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-22T21%3A51%3A32.7906554Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T11:39:05.3545911Z"
+ "CreatedOnDate": "2022-07-22T21:51:29.8333063Z"
},
"properties": {
"provisioningState": "Creating"
@@ -258,21 +801,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T11:39:11.2657875Z",
+ "createdAt": "2022-07-22T21:51:31.7397713Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T11:39:11.2657875Z"
+ "lastModifiedAt": "2022-07-22T21:51:31.7397713Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d9d6bfb4-b377-48f2-a44e-d1eba7358f59?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1d8130a2-cff7-427f-acd6-cf274eda99f4?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +823,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:39:46 GMT",
+ "Date": "Fri, 22 Jul 2022 21:52:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +831,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8b651ac6-e60d-4d12-adf5-91ea8adf50d5",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T113947Z:8b651ac6-e60d-4d12-adf5-91ea8adf50d5",
+ "x-ms-correlation-request-id": "604002ea-c2dd-4131-a00a-d9632f9c41bc",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215204Z:604002ea-c2dd-4131-a00a-d9632f9c41bc",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d9d6bfb4-b377-48f2-a44e-d1eba7358f59",
- "name": "d9d6bfb4-b377-48f2-a44e-d1eba7358f59",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1d8130a2-cff7-427f-acd6-cf274eda99f4",
+ "name": "1d8130a2-cff7-427f-acd6-cf274eda99f4",
"status": "Succeeded",
- "startTime": "2022-05-24T11:39:12.6525923Z",
- "endTime": "2022-05-24T11:39:12.6838162Z",
+ "startTime": "2022-07-22T21:51:32.7902532Z",
+ "endTime": "2022-07-22T21:51:32.8371209Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +863,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:39:47 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T11%3A39%3A12.6884651Z\u0027\u0022",
+ "Date": "Fri, 22 Jul 2022 21:52:04 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-22T21%3A51%3A32.8393697Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,35 +872,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "17f092d5-f8d4-480e-a159-b3cecdd9f7d0",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T113948Z:17f092d5-f8d4-480e-a159-b3cecdd9f7d0",
+ "x-ms-correlation-request-id": "19b72e53-debf-4b06-af8c-b235fb21df20",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215204Z:19b72e53-debf-4b06-af8c-b235fb21df20",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T11%3A39%3A12.6884651Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-22T21%3A51%3A32.8393697Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T11:39:05.3545911Z"
+ "CreatedOnDate": "2022-07-22T21:51:29.8333063Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -370,26 +913,26 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T11:39:11.2657875Z",
+ "createdAt": "2022-07-22T21:51:31.7397713Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T11:39:11.2657875Z"
+ "lastModifiedAt": "2022-07-22T21:51:31.7397713Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "150",
+ "Content-Length": "138",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"size": 4398046511104,
"serviceLevel": "Premium",
@@ -399,30 +942,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1f784869-8798-460a-b9b1-491159703b1f?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44032661-db91-4bfa-bca0-1dc3472908a6?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "916",
+ "Content-Length": "918",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:39:53 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T11%3A39%3A52.784562Z\u0027\u0022",
+ "Date": "Fri, 22 Jul 2022 21:52:06 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-22T21%3A52%3A06.2904052Z\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": "92d51f5b-a5ed-4b16-81a9-cf89c85feb14",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T113954Z:92d51f5b-a5ed-4b16-81a9-cf89c85feb14",
+ "x-ms-correlation-request-id": "36a3e606-ee53-4748-90ad-c5f679c435cc",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215207Z:36a3e606-ee53-4748-90ad-c5f679c435cc",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T11%3A39%3A52.784562Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-22T21%3A52%3A06.2904052Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T11:39:49.3946868Z"
+ "CreatedOnDate": "2022-07-22T21:52:04.8235287Z"
},
"properties": {
"serviceLevel": "Premium",
@@ -436,21 +979,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T11:39:52.2972472Z",
+ "createdAt": "2022-07-22T21:52:06.0257855Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T11:39:52.2972472Z"
+ "lastModifiedAt": "2022-07-22T21:52:06.0257855Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1f784869-8798-460a-b9b1-491159703b1f?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44032661-db91-4bfa-bca0-1dc3472908a6?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -458,7 +1001,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:40:24 GMT",
+ "Date": "Fri, 22 Jul 2022 21:52:37 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -466,31 +1009,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3fe17c6d-73b4-4c9b-8e63-aff88574b48b",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T114024Z:3fe17c6d-73b4-4c9b-8e63-aff88574b48b",
+ "x-ms-correlation-request-id": "fe1be0ef-1392-4be6-8d02-42a2e24fcafe",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215237Z:fe1be0ef-1392-4be6-8d02-42a2e24fcafe",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1f784869-8798-460a-b9b1-491159703b1f",
- "name": "1f784869-8798-460a-b9b1-491159703b1f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44032661-db91-4bfa-bca0-1dc3472908a6",
+ "name": "44032661-db91-4bfa-bca0-1dc3472908a6",
"status": "Succeeded",
- "startTime": "2022-05-24T11:39:52.777028Z",
- "endTime": "2022-05-24T11:39:53.6874518Z",
+ "startTime": "2022-07-22T21:52:06.2883349Z",
+ "endTime": "2022-07-22T21:52:06.6482847Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -498,8 +1041,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:40:25 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T11%3A39%3A53.6876921Z\u0027\u0022",
+ "Date": "Fri, 22 Jul 2022 21:52:38 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-22T21%3A52%3A06.6431319Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -507,22 +1050,22 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "687fc441-858e-49f0-b823-3cf316a62aec",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T114026Z:687fc441-858e-49f0-b823-3cf316a62aec",
+ "x-ms-correlation-request-id": "fc156219-49a1-4ed1-acd7-7986310c5c7a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215238Z:fc156219-49a1-4ed1-acd7-7986310c5c7a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T11%3A39%3A53.6876921Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-22T21%3A52%3A06.6431319Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T11:39:49.3946868Z"
+ "CreatedOnDate": "2022-07-22T21:52:04.8235287Z"
},
"properties": {
- "poolId": "d06b2c89-5c75-1494-5388-d2ea68d0cb5c",
+ "poolId": "450984db-c3b6-0df8-898f-f7c0a3550733",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
@@ -531,38 +1074,30 @@
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T11:39:52.2972472Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T11:39:52.2972472Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a2e023e0?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "800",
+ "Content-Length": "779",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-a2e023e0",
"serviceLevel": "Premium",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -576,45 +1111,44 @@
"avsDataStore": "Disabled",
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled"
+ "defaultGroupQuotaInKiBs": 0
}
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a105fcc2-1902-4715-b667-548b63e092e3?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cffce649-5745-435b-9eeb-bd148670da6f?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "1567",
+ "Content-Length": "1576",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:40:43 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T11%3A40%3A41.7533365Z\u0027\u0022",
+ "Date": "Fri, 22 Jul 2022 21:52:50 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-22T21%3A52%3A49.942324Z\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": "14a15188-166d-4b0a-ab77-face417b8088",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T114043Z:14a15188-166d-4b0a-ab77-face417b8088",
+ "x-ms-correlation-request-id": "67cbc7e6-744a-4818-8ff0-fadabdad5625",
+ "x-ms-ratelimit-remaining-subscription-writes": "1195",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215251Z:67cbc7e6-744a-4818-8ff0-fadabdad5625",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T11%3A40%3A41.7533365Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-22T21%3A52%3A49.942324Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T11:40:37.1620424Z"
+ "CreatedOnDate": "2022-07-22T21:52:48.4663963Z"
},
"properties": {
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-a2e023e0",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -629,28 +1163,27 @@
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
"provisioningState": "Creating"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T11:40:39.4564795Z",
+ "createdAt": "2022-07-22T21:52:49.5380155Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T11:40:39.4564795Z"
+ "lastModifiedAt": "2022-07-22T21:52:49.5380155Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a105fcc2-1902-4715-b667-548b63e092e3?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cffce649-5745-435b-9eeb-bd148670da6f?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -658,7 +1191,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:41:13 GMT",
+ "Date": "Fri, 22 Jul 2022 21:53:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -666,31 +1199,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5f025937-7c50-4f0f-8caf-18ee4d17fca6",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T114114Z:5f025937-7c50-4f0f-8caf-18ee4d17fca6",
+ "x-ms-correlation-request-id": "e3a9b62b-53eb-4f1f-8a20-30d0d8eb7e61",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215321Z:e3a9b62b-53eb-4f1f-8a20-30d0d8eb7e61",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a105fcc2-1902-4715-b667-548b63e092e3",
- "name": "a105fcc2-1902-4715-b667-548b63e092e3",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cffce649-5745-435b-9eeb-bd148670da6f",
+ "name": "cffce649-5745-435b-9eeb-bd148670da6f",
"status": "Creating",
- "startTime": "2022-05-24T11:40:41.7538157Z",
+ "startTime": "2022-07-22T21:52:49.9381758Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/a105fcc2-1902-4715-b667-548b63e092e3?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cffce649-5745-435b-9eeb-bd148670da6f?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -698,7 +1231,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:41:44 GMT",
+ "Date": "Fri, 22 Jul 2022 21:53:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -706,31 +1239,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "68fdc55c-51da-45f2-b405-7986dee40249",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T114145Z:68fdc55c-51da-45f2-b405-7986dee40249",
+ "x-ms-correlation-request-id": "dace5b66-f2f7-415d-9203-9e2f9ac9716b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215351Z:dace5b66-f2f7-415d-9203-9e2f9ac9716b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a105fcc2-1902-4715-b667-548b63e092e3",
- "name": "a105fcc2-1902-4715-b667-548b63e092e3",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cffce649-5745-435b-9eeb-bd148670da6f",
+ "name": "cffce649-5745-435b-9eeb-bd148670da6f",
"status": "Creating",
- "startTime": "2022-05-24T11:40:41.7538157Z",
+ "startTime": "2022-07-22T21:52:49.9381758Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/a105fcc2-1902-4715-b667-548b63e092e3?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cffce649-5745-435b-9eeb-bd148670da6f?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -738,7 +1271,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:42:15 GMT",
+ "Date": "Fri, 22 Jul 2022 21:54:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -746,31 +1279,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4e5a6610-6991-4f4e-9d3c-c0838b29e7d2",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T114216Z:4e5a6610-6991-4f4e-9d3c-c0838b29e7d2",
+ "x-ms-correlation-request-id": "159c6214-ccdc-462c-a9cf-815859ee2acd",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215421Z:159c6214-ccdc-462c-a9cf-815859ee2acd",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a105fcc2-1902-4715-b667-548b63e092e3",
- "name": "a105fcc2-1902-4715-b667-548b63e092e3",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cffce649-5745-435b-9eeb-bd148670da6f",
+ "name": "cffce649-5745-435b-9eeb-bd148670da6f",
"status": "Creating",
- "startTime": "2022-05-24T11:40:41.7538157Z",
+ "startTime": "2022-07-22T21:52:49.9381758Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/a105fcc2-1902-4715-b667-548b63e092e3?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cffce649-5745-435b-9eeb-bd148670da6f?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -778,7 +1311,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:42:46 GMT",
+ "Date": "Fri, 22 Jul 2022 21:54:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -786,31 +1319,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d6df8a55-7728-4042-b957-de2947ce2a16",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T114247Z:d6df8a55-7728-4042-b957-de2947ce2a16",
+ "x-ms-correlation-request-id": "8e964aec-459c-46bb-97c5-01b9fd132565",
+ "x-ms-ratelimit-remaining-subscription-reads": "11986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215452Z:8e964aec-459c-46bb-97c5-01b9fd132565",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a105fcc2-1902-4715-b667-548b63e092e3",
- "name": "a105fcc2-1902-4715-b667-548b63e092e3",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cffce649-5745-435b-9eeb-bd148670da6f",
+ "name": "cffce649-5745-435b-9eeb-bd148670da6f",
"status": "Creating",
- "startTime": "2022-05-24T11:40:41.7538157Z",
+ "startTime": "2022-07-22T21:52:49.9381758Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/a105fcc2-1902-4715-b667-548b63e092e3?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cffce649-5745-435b-9eeb-bd148670da6f?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -818,7 +1351,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:43:18 GMT",
+ "Date": "Fri, 22 Jul 2022 21:55:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -826,31 +1359,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f2262f09-98de-44b8-96ad-9f80e2eecd1c",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T114319Z:f2262f09-98de-44b8-96ad-9f80e2eecd1c",
+ "x-ms-correlation-request-id": "2d674455-4ca8-4999-b5d5-78af577cb314",
+ "x-ms-ratelimit-remaining-subscription-reads": "11985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215522Z:2d674455-4ca8-4999-b5d5-78af577cb314",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a105fcc2-1902-4715-b667-548b63e092e3",
- "name": "a105fcc2-1902-4715-b667-548b63e092e3",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cffce649-5745-435b-9eeb-bd148670da6f",
+ "name": "cffce649-5745-435b-9eeb-bd148670da6f",
"status": "Creating",
- "startTime": "2022-05-24T11:40:41.7538157Z",
+ "startTime": "2022-07-22T21:52:49.9381758Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/a105fcc2-1902-4715-b667-548b63e092e3?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cffce649-5745-435b-9eeb-bd148670da6f?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -858,7 +1391,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:43:50 GMT",
+ "Date": "Fri, 22 Jul 2022 21:55:53 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -866,31 +1399,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d19efbf1-c583-4944-bb5d-a80f7eb61f6f",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T114350Z:d19efbf1-c583-4944-bb5d-a80f7eb61f6f",
+ "x-ms-correlation-request-id": "87b16859-8aec-4878-9c8e-4cdf096f6a47",
+ "x-ms-ratelimit-remaining-subscription-reads": "11984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215553Z:87b16859-8aec-4878-9c8e-4cdf096f6a47",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a105fcc2-1902-4715-b667-548b63e092e3",
- "name": "a105fcc2-1902-4715-b667-548b63e092e3",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cffce649-5745-435b-9eeb-bd148670da6f",
+ "name": "cffce649-5745-435b-9eeb-bd148670da6f",
"status": "Creating",
- "startTime": "2022-05-24T11:40:41.7538157Z",
+ "startTime": "2022-07-22T21:52:49.9381758Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/a105fcc2-1902-4715-b667-548b63e092e3?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cffce649-5745-435b-9eeb-bd148670da6f?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -898,7 +1431,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:44:21 GMT",
+ "Date": "Fri, 22 Jul 2022 21:56:23 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -906,31 +1439,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ea6bd83c-39a8-4c15-951d-9b6f87308d2a",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T114422Z:ea6bd83c-39a8-4c15-951d-9b6f87308d2a",
+ "x-ms-correlation-request-id": "7005c169-cfda-4afd-9787-48de06e19778",
+ "x-ms-ratelimit-remaining-subscription-reads": "11983",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215623Z:7005c169-cfda-4afd-9787-48de06e19778",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a105fcc2-1902-4715-b667-548b63e092e3",
- "name": "a105fcc2-1902-4715-b667-548b63e092e3",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cffce649-5745-435b-9eeb-bd148670da6f",
+ "name": "cffce649-5745-435b-9eeb-bd148670da6f",
"status": "Creating",
- "startTime": "2022-05-24T11:40:41.7538157Z",
+ "startTime": "2022-07-22T21:52:49.9381758Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/a105fcc2-1902-4715-b667-548b63e092e3?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cffce649-5745-435b-9eeb-bd148670da6f?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -938,7 +1471,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:44:52 GMT",
+ "Date": "Fri, 22 Jul 2022 21:56:53 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -946,31 +1479,71 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8483377e-caf2-4fb7-85e2-7ab6959273c8",
- "x-ms-ratelimit-remaining-subscription-reads": "11988",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T114453Z:8483377e-caf2-4fb7-85e2-7ab6959273c8",
+ "x-ms-correlation-request-id": "c88d66d4-e6b3-4f4f-9c38-80a916611747",
+ "x-ms-ratelimit-remaining-subscription-reads": "11982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215654Z:c88d66d4-e6b3-4f4f-9c38-80a916611747",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cffce649-5745-435b-9eeb-bd148670da6f",
+ "name": "cffce649-5745-435b-9eeb-bd148670da6f",
+ "status": "Creating",
+ "startTime": "2022-07-22T21:52:49.9381758Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/cffce649-5745-435b-9eeb-bd148670da6f?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Fri, 22 Jul 2022 21: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": "afc47fc7-3cc4-456d-b293-9adf3147a6be",
+ "x-ms-ratelimit-remaining-subscription-reads": "11981",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215724Z:afc47fc7-3cc4-456d-b293-9adf3147a6be",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a105fcc2-1902-4715-b667-548b63e092e3",
- "name": "a105fcc2-1902-4715-b667-548b63e092e3",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cffce649-5745-435b-9eeb-bd148670da6f",
+ "name": "cffce649-5745-435b-9eeb-bd148670da6f",
"status": "Succeeded",
- "startTime": "2022-05-24T11:40:41.7538157Z",
- "endTime": "2022-05-24T11:44:44.2673481Z",
+ "startTime": "2022-07-22T21:52:49.9381758Z",
+ "endTime": "2022-07-22T21:57:14.4977666Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a2e023e0?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -978,8 +1551,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:44:54 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T11%3A44%3A44.2663618Z\u0027\u0022",
+ "Date": "Fri, 22 Jul 2022 21:57:24 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-22T21%3A57%3A14.4878837Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -987,24 +1560,24 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b7f71631-eea3-48c5-af9e-3447e0be202c",
- "x-ms-ratelimit-remaining-subscription-reads": "11987",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T114454Z:b7f71631-eea3-48c5-af9e-3447e0be202c",
+ "x-ms-correlation-request-id": "b7438b1f-06ae-457e-bf33-8d1bd2629e15",
+ "x-ms-ratelimit-remaining-subscription-reads": "11980",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215725Z:b7438b1f-06ae-457e-bf33-8d1bd2629e15",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T11%3A44%3A44.2663618Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-22T21%3A57%3A14.4878837Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T11:40:37.1620424Z"
+ "CreatedOnDate": "2022-07-22T21:52:48.4663963Z"
},
"properties": {
- "fileSystemId": "246af2aa-f2d3-1c1d-03e4-8fc58023dfc6",
+ "fileSystemId": "719d81a4-a1c2-79f7-bedd-02051949063f",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-a2e023e0",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1030,10 +1603,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_b3fda6c9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_02c713dd",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1045,9 +1618,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "246af2aa-f2d3-1c1d-03e4-8fc58023dfc6",
- "fileSystemId": "246af2aa-f2d3-1c1d-03e4-8fc58023dfc6",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "719d81a4-a1c2-79f7-bedd-02051949063f",
+ "fileSystemId": "719d81a4-a1c2-79f7-bedd-02051949063f",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1059,40 +1632,31 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
- "encrypted": true,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T11:40:39.4564795Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T11:40:39.4564795Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-4-a2e023e0?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "800",
+ "Content-Length": "779",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationToken": "sdk-py-tests-vol-2",
+ "creationToken": "sdk-py-tests-vol-4-a2e023e0",
"serviceLevel": "Premium",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1106,45 +1670,44 @@
"avsDataStore": "Disabled",
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled"
+ "defaultGroupQuotaInKiBs": 0
}
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/68c99f6a-3f45-4051-8346-c5be6e1d8c51?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/263c1129-b79c-42d8-b7b9-0cd688b43914?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "1567",
+ "Content-Length": "1577",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:45:02 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T11%3A45%3A01.0449241Z\u0027\u0022",
+ "Date": "Fri, 22 Jul 2022 21:57:28 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-22T21%3A57%3A28.0603154Z\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": "cb963f3f-1c59-4643-a01e-460ee2d554dc",
- "x-ms-ratelimit-remaining-subscription-writes": "1196",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T114502Z:cb963f3f-1c59-4643-a01e-460ee2d554dc",
+ "x-ms-correlation-request-id": "2a3577b1-4937-4491-a95f-1efe337237e9",
+ "x-ms-ratelimit-remaining-subscription-writes": "1194",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215729Z:2a3577b1-4937-4491-a95f-1efe337237e9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T11%3A45%3A01.0449241Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-22T21%3A57%3A28.0603154Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T11:44:55.3717088Z"
+ "CreatedOnDate": "2022-07-22T21:57:25.4444838Z"
},
"properties": {
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
+ "creationToken": "sdk-py-tests-vol-4-a2e023e0",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1159,28 +1722,27 @@
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
"provisioningState": "Creating"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T11:44:58.6048134Z",
+ "createdAt": "2022-07-22T21:57:27.5481685Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T11:44:58.6048134Z"
+ "lastModifiedAt": "2022-07-22T21:57:27.5481685Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/68c99f6a-3f45-4051-8346-c5be6e1d8c51?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/263c1129-b79c-42d8-b7b9-0cd688b43914?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1188,7 +1750,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:45:32 GMT",
+ "Date": "Fri, 22 Jul 2022 21:57:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1196,31 +1758,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9358f0fb-39c8-410b-b5a7-c172be7ffcb0",
- "x-ms-ratelimit-remaining-subscription-reads": "11986",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T114533Z:9358f0fb-39c8-410b-b5a7-c172be7ffcb0",
+ "x-ms-correlation-request-id": "124f9fbd-d170-47fa-8b25-3963482aba77",
+ "x-ms-ratelimit-remaining-subscription-reads": "11979",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215759Z:124f9fbd-d170-47fa-8b25-3963482aba77",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/68c99f6a-3f45-4051-8346-c5be6e1d8c51",
- "name": "68c99f6a-3f45-4051-8346-c5be6e1d8c51",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/263c1129-b79c-42d8-b7b9-0cd688b43914",
+ "name": "263c1129-b79c-42d8-b7b9-0cd688b43914",
"status": "Succeeded",
- "startTime": "2022-05-24T11:45:01.0488829Z",
- "endTime": "2022-05-24T11:45:21.8228108Z",
+ "startTime": "2022-07-22T21:57:28.0601197Z",
+ "endTime": "2022-07-22T21:57:40.0727116Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-4-a2e023e0?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1228,8 +1790,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:45:35 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T11%3A45%3A21.820618Z\u0027\u0022",
+ "Date": "Fri, 22 Jul 2022 21:57:59 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-22T21%3A57%3A40.0613209Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1237,24 +1799,24 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "640b6db7-43d9-432a-93df-fe54cd8e3341",
- "x-ms-ratelimit-remaining-subscription-reads": "11985",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T114536Z:640b6db7-43d9-432a-93df-fe54cd8e3341",
+ "x-ms-correlation-request-id": "26aa66c0-d3de-48b8-acdf-822366c0be38",
+ "x-ms-ratelimit-remaining-subscription-reads": "11978",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215800Z:26aa66c0-d3de-48b8-acdf-822366c0be38",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T11%3A45%3A21.820618Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-22T21%3A57%3A40.0613209Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T11:44:55.3717088Z"
+ "CreatedOnDate": "2022-07-22T21:57:25.4444838Z"
},
"properties": {
- "fileSystemId": "316bb5b1-dfd6-ea97-7e5a-61e8afed8163",
+ "fileSystemId": "adb5a4d1-7479-f3e4-44c1-b0b967f7f5b5",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
+ "creationToken": "sdk-py-tests-vol-4-a2e023e0",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1280,10 +1842,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_b3fda6c9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_02c713dd",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1295,9 +1857,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "316bb5b1-dfd6-ea97-7e5a-61e8afed8163",
- "fileSystemId": "316bb5b1-dfd6-ea97-7e5a-61e8afed8163",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "adb5a4d1-7479-f3e4-44c1-b0b967f7f5b5",
+ "fileSystemId": "adb5a4d1-7479-f3e4-44c1-b0b967f7f5b5",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1309,27 +1871,18 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
- "encrypted": true,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T11:44:58.6048134Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T11:44:58.6048134Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1337,7 +1890,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:45:38 GMT",
+ "Date": "Fri, 22 Jul 2022 21:57:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1345,26 +1898,26 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f5eb1453-93b3-43c3-bf46-a6454661b67e",
- "x-ms-ratelimit-remaining-subscription-reads": "11984",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T114539Z:f5eb1453-93b3-43c3-bf46-a6454661b67e",
+ "x-ms-correlation-request-id": "02aa1d34-5334-4c92-86d7-96b161016e4b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11977",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215800Z:02aa1d34-5334-4c92-86d7-96b161016e4b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"value": [
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T11%3A44%3A44.2663618Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-22T21%3A57%3A14.4878837Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T11:40:37.1620424Z"
+ "CreatedOnDate": "2022-07-22T21:52:48.4663963Z"
},
"properties": {
- "fileSystemId": "246af2aa-f2d3-1c1d-03e4-8fc58023dfc6",
+ "fileSystemId": "719d81a4-a1c2-79f7-bedd-02051949063f",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-a2e023e0",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1390,10 +1943,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_b3fda6c9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_02c713dd",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1405,9 +1958,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "246af2aa-f2d3-1c1d-03e4-8fc58023dfc6",
- "fileSystemId": "246af2aa-f2d3-1c1d-03e4-8fc58023dfc6",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "719d81a4-a1c2-79f7-bedd-02051949063f",
+ "fileSystemId": "719d81a4-a1c2-79f7-bedd-02051949063f",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1419,31 +1972,22 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
- "encrypted": true,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T11:40:39.4564795Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T11:40:39.4564795Z"
}
},
{
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T11%3A45%3A21.820618Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-22T21%3A57%3A40.0613209Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T11:44:55.3717088Z"
+ "CreatedOnDate": "2022-07-22T21:57:25.4444838Z"
},
"properties": {
- "fileSystemId": "316bb5b1-dfd6-ea97-7e5a-61e8afed8163",
+ "fileSystemId": "adb5a4d1-7479-f3e4-44c1-b0b967f7f5b5",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
+ "creationToken": "sdk-py-tests-vol-4-a2e023e0",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1469,10 +2013,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_b3fda6c9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_02c713dd",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1484,9 +2028,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "316bb5b1-dfd6-ea97-7e5a-61e8afed8163",
- "fileSystemId": "316bb5b1-dfd6-ea97-7e5a-61e8afed8163",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "adb5a4d1-7479-f3e4-44c1-b0b967f7f5b5",
+ "fileSystemId": "adb5a4d1-7479-f3e4-44c1-b0b967f7f5b5",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1498,59 +2042,50 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
- "encrypted": true,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T11:44:58.6048134Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T11:44:58.6048134Z"
}
}
]
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a2e023e0?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/e0eb190b-b392-4833-b1ed-6c5360294757?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fb0bf9c9-d09a-4049-a26e-61ce4f610056?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 24 May 2022 11:45:41 GMT",
+ "Date": "Fri, 22 Jul 2022 21:58:00 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e0eb190b-b392-4833-b1ed-6c5360294757?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fb0bf9c9-d09a-4049-a26e-61ce4f610056?api-version=2022-03-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": "860f8fbb-3b0e-444e-bcbd-cd80f92b9a20",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T114542Z:860f8fbb-3b0e-444e-bcbd-cd80f92b9a20",
+ "x-ms-correlation-request-id": "9c4e2c5e-d100-4853-8d61-e57fe332c684",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14998",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215801Z:9c4e2c5e-d100-4853-8d61-e57fe332c684",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e0eb190b-b392-4833-b1ed-6c5360294757?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fb0bf9c9-d09a-4049-a26e-61ce4f610056?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1558,7 +2093,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:46:13 GMT",
+ "Date": "Fri, 22 Jul 2022 21:58:31 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1566,31 +2101,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d401f8cb-61e3-4e2d-87f8-e6c23058e177",
- "x-ms-ratelimit-remaining-subscription-reads": "11983",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T114614Z:d401f8cb-61e3-4e2d-87f8-e6c23058e177",
+ "x-ms-correlation-request-id": "ac6fedaa-3be7-4961-bd8a-f1454d1efa25",
+ "x-ms-ratelimit-remaining-subscription-reads": "11976",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215831Z:ac6fedaa-3be7-4961-bd8a-f1454d1efa25",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e0eb190b-b392-4833-b1ed-6c5360294757",
- "name": "e0eb190b-b392-4833-b1ed-6c5360294757",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fb0bf9c9-d09a-4049-a26e-61ce4f610056",
+ "name": "fb0bf9c9-d09a-4049-a26e-61ce4f610056",
"status": "Succeeded",
- "startTime": "2022-05-24T11:45:42.1461607Z",
- "endTime": "2022-05-24T11:45:58.1401324Z",
+ "startTime": "2022-07-22T21:58:01.2155199Z",
+ "endTime": "2022-07-22T21:58:04.7540269Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/e0eb190b-b392-4833-b1ed-6c5360294757?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fb0bf9c9-d09a-4049-a26e-61ce4f610056?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1598,7 +2133,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:46:15 GMT",
+ "Date": "Fri, 22 Jul 2022 21:58:31 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1606,25 +2141,25 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d999c4a6-9fc0-4015-9a73-a3b259aac8ec",
- "x-ms-ratelimit-remaining-subscription-reads": "11982",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T114615Z:d999c4a6-9fc0-4015-9a73-a3b259aac8ec",
+ "x-ms-correlation-request-id": "b3ba127a-d5dc-43a1-928a-0daa95aa6565",
+ "x-ms-ratelimit-remaining-subscription-reads": "11975",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T215832Z:b3ba127a-d5dc-43a1-928a-0daa95aa6565",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T11%3A45%3A42.1398551Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-22T21%3A58%3A01.1932878Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T11:40:37.1620424Z"
+ "CreatedOnDate": "2022-07-22T21:52:48.4663963Z"
},
"properties": {
- "fileSystemId": "246af2aa-f2d3-1c1d-03e4-8fc58023dfc6",
+ "fileSystemId": "719d81a4-a1c2-79f7-bedd-02051949063f",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
+ "creationToken": "sdk-py-tests-vol-3-a2e023e0",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -1652,25 +2187,25 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_b3fda6c9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_02c713dd",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "d06b2c89-5c75-1494-5388-d2ea68d0cb5c",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a2e023e0",
+ "poolId": "450984db-c3b6-0df8-898f-f7c0a3550733",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "246af2aa-f2d3-1c1d-03e4-8fc58023dfc6",
- "fileSystemId": "246af2aa-f2d3-1c1d-03e4-8fc58023dfc6",
+ "mountTargetId": "719d81a4-a1c2-79f7-bedd-02051949063f",
+ "fileSystemId": "719d81a4-a1c2-79f7-bedd-02051949063f",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1689,89 +2224,79 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"encrypted": true,
- "smbAccessBasedEnumeration": "Disabled",
- "smbNonBrowsable": "Disabled",
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T11:40:39.4564795Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T11:40:39.4564795Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a2e023e0?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "306",
+ "Content-Length": "320",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:49:43 GMT",
+ "Date": "Fri, 22 Jul 2022 22:01:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "851c6d52-bc35-4732-abf6-a0594f24b947",
+ "x-ms-correlation-request-id": "8ed39c1c-375b-4ea1-b83c-5b162f9356b9",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T114943Z:851c6d52-bc35-4732-abf6-a0594f24b947"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T220154Z:8ed39c1c-375b-4ea1-b83c-5b162f9356b9"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a2e023e0\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-4-a2e023e0?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/12b4f0b6-3b67-4005-9bcf-ff9bbbc17090?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/10c403f5-bed7-4299-8de0-ef4bf03c0ac7?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 24 May 2022 11:49:46 GMT",
+ "Date": "Fri, 22 Jul 2022 22:01:56 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/12b4f0b6-3b67-4005-9bcf-ff9bbbc17090?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/10c403f5-bed7-4299-8de0-ef4bf03c0ac7?api-version=2022-03-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": "0e2425f3-1e6e-4e3c-a78b-29f27dbd3e00",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T114947Z:0e2425f3-1e6e-4e3c-a78b-29f27dbd3e00",
+ "x-ms-correlation-request-id": "c15ee50e-592c-4229-a427-402c086e614d",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14998",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T220156Z:c15ee50e-592c-4229-a427-402c086e614d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/12b4f0b6-3b67-4005-9bcf-ff9bbbc17090?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/10c403f5-bed7-4299-8de0-ef4bf03c0ac7?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1779,7 +2304,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:50:17 GMT",
+ "Date": "Fri, 22 Jul 2022 22:02:26 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1787,31 +2312,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ce246575-3557-4df7-a335-373d9fc0fa77",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T115017Z:ce246575-3557-4df7-a335-373d9fc0fa77",
+ "x-ms-correlation-request-id": "5865e7c1-5937-417d-aae1-bf9b5e66cdf6",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T220227Z:5865e7c1-5937-417d-aae1-bf9b5e66cdf6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/12b4f0b6-3b67-4005-9bcf-ff9bbbc17090",
- "name": "12b4f0b6-3b67-4005-9bcf-ff9bbbc17090",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/10c403f5-bed7-4299-8de0-ef4bf03c0ac7",
+ "name": "10c403f5-bed7-4299-8de0-ef4bf03c0ac7",
"status": "Deleting",
- "startTime": "2022-05-24T11:49:47.3696368Z",
+ "startTime": "2022-07-22T22:01:56.6393672Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/12b4f0b6-3b67-4005-9bcf-ff9bbbc17090?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/10c403f5-bed7-4299-8de0-ef4bf03c0ac7?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1819,7 +2344,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:50:48 GMT",
+ "Date": "Fri, 22 Jul 2022 22:02:56 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1827,31 +2352,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5582f96c-000d-4a87-aeea-647e6661d769",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T115048Z:5582f96c-000d-4a87-aeea-647e6661d769",
+ "x-ms-correlation-request-id": "c64eff3b-ff22-477c-ad20-b9c822999b80",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T220257Z:c64eff3b-ff22-477c-ad20-b9c822999b80",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/12b4f0b6-3b67-4005-9bcf-ff9bbbc17090",
- "name": "12b4f0b6-3b67-4005-9bcf-ff9bbbc17090",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/10c403f5-bed7-4299-8de0-ef4bf03c0ac7",
+ "name": "10c403f5-bed7-4299-8de0-ef4bf03c0ac7",
"status": "Succeeded",
- "startTime": "2022-05-24T11:49:47.3696368Z",
- "endTime": "2022-05-24T11:50:37.2100547Z",
+ "startTime": "2022-07-22T22:01:56.6393672Z",
+ "endTime": "2022-07-22T22:02:44.5629795Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/12b4f0b6-3b67-4005-9bcf-ff9bbbc17090?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/10c403f5-bed7-4299-8de0-ef4bf03c0ac7?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1859,7 +2384,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:50:48 GMT",
+ "Date": "Fri, 22 Jul 2022 22:02:56 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1867,25 +2392,25 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "715c7ceb-a30c-4b82-92b7-7468d4f8d354",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T115048Z:715c7ceb-a30c-4b82-92b7-7468d4f8d354",
+ "x-ms-correlation-request-id": "6b3fbe44-cafb-466e-bb05-2a8d3f72bc32",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T220257Z:6b3fbe44-cafb-466e-bb05-2a8d3f72bc32",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T11%3A50%3A28.0433612Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-22T22%3A01%3A56.6183183Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T11:44:55.3717088Z"
+ "CreatedOnDate": "2022-07-22T21:57:25.4444838Z"
},
"properties": {
- "fileSystemId": "316bb5b1-dfd6-ea97-7e5a-61e8afed8163",
+ "fileSystemId": "adb5a4d1-7479-f3e4-44c1-b0b967f7f5b5",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
+ "creationToken": "sdk-py-tests-vol-4-a2e023e0",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -1913,25 +2438,25 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "DELETED_baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_b3fda6c9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_02c713dd",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2",
- "poolId": "d06b2c89-5c75-1494-5388-d2ea68d0cb5c",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-4-a2e023e0",
+ "poolId": "450984db-c3b6-0df8-898f-f7c0a3550733",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "316bb5b1-dfd6-ea97-7e5a-61e8afed8163",
- "fileSystemId": "316bb5b1-dfd6-ea97-7e5a-61e8afed8163",
+ "mountTargetId": "adb5a4d1-7479-f3e4-44c1-b0b967f7f5b5",
+ "fileSystemId": "adb5a4d1-7479-f3e4-44c1-b0b967f7f5b5",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1950,89 +2475,79 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"encrypted": true,
- "smbAccessBasedEnumeration": "Disabled",
- "smbNonBrowsable": "Disabled",
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T11:44:58.6048134Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T11:44:58.6048134Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-4-a2e023e0?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "306",
+ "Content-Length": "320",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:54:14 GMT",
+ "Date": "Fri, 22 Jul 2022 22:06:24 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ae25707e-da44-42fe-a610-f0cd6d73edcd",
+ "x-ms-correlation-request-id": "c6c261d9-9ca8-47db-bfad-95f82c68a9a4",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T115415Z:ae25707e-da44-42fe-a610-f0cd6d73edcd"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T220624Z:c6c261d9-9ca8-47db-bfad-95f82c68a9a4"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-4-a2e023e0\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/e3209e0c-a585-48b2-a689-f1ea1dfbf36b?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c3f4494a-f4b0-4ab0-9b76-4208792f897f?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 24 May 2022 11:54:28 GMT",
+ "Date": "Fri, 22 Jul 2022 22:06:36 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e3209e0c-a585-48b2-a689-f1ea1dfbf36b?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c3f4494a-f4b0-4ab0-9b76-4208792f897f?api-version=2022-03-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": "87542efe-b188-4ad9-a1c8-1938064e67cc",
+ "x-ms-correlation-request-id": "74261d6a-db99-4888-beae-c2631c462eb5",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T115428Z:87542efe-b188-4ad9-a1c8-1938064e67cc",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T220637Z:74261d6a-db99-4888-beae-c2631c462eb5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e3209e0c-a585-48b2-a689-f1ea1dfbf36b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c3f4494a-f4b0-4ab0-9b76-4208792f897f?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2040,7 +2555,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:54:58 GMT",
+ "Date": "Fri, 22 Jul 2022 22:07:06 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2048,31 +2563,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e0703125-860e-458f-8f43-7462044bce66",
+ "x-ms-correlation-request-id": "840a235d-3d17-4d4f-ad6f-7db1a9f3b26e",
"x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T115458Z:e0703125-860e-458f-8f43-7462044bce66",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T220707Z:840a235d-3d17-4d4f-ad6f-7db1a9f3b26e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e3209e0c-a585-48b2-a689-f1ea1dfbf36b",
- "name": "e3209e0c-a585-48b2-a689-f1ea1dfbf36b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c3f4494a-f4b0-4ab0-9b76-4208792f897f",
+ "name": "c3f4494a-f4b0-4ab0-9b76-4208792f897f",
"status": "Succeeded",
- "startTime": "2022-05-24T11:54:28.0708378Z",
- "endTime": "2022-05-24T11:54:32.108181Z",
+ "startTime": "2022-07-22T22:06:36.9576796Z",
+ "endTime": "2022-07-22T22:06:37.3483323Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/e3209e0c-a585-48b2-a689-f1ea1dfbf36b?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c3f4494a-f4b0-4ab0-9b76-4208792f897f?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2080,7 +2595,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:54:58 GMT",
+ "Date": "Fri, 22 Jul 2022 22:07:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2088,211 +2603,203 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e6109364-cef4-426c-b787-fee164336b15",
+ "x-ms-correlation-request-id": "0e604596-e3f2-4618-b529-7860efcdecf5",
"x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T115459Z:e6109364-cef4-426c-b787-fee164336b15",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T220707Z:0e604596-e3f2-4618-b529-7860efcdecf5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T11%3A54%3A28.0782372Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-22T22%3A06%3A36.9457903Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T11:39:49.3946868Z"
+ "CreatedOnDate": "2022-07-22T21:52:04.8235287Z"
},
"properties": {
- "poolId": "d06b2c89-5c75-1494-5388-d2ea68d0cb5c",
+ "poolId": "450984db-c3b6-0df8-898f-f7c0a3550733",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1",
"qosType": "Auto",
"totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T11:39:52.2972472Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T11:39:52.2972472Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 11:55:08 GMT",
+ "Date": "Fri, 22 Jul 2022 22:07:16 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "376425f4-e3b8-42c3-9761-eb4591744338",
+ "x-ms-correlation-request-id": "27204da7-13a4-435e-81db-4d0e2b6f0395",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T115509Z:376425f4-e3b8-42c3-9761-eb4591744338"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T220717Z:27204da7-13a4-435e-81db-4d0e2b6f0395"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 11:55:20 GMT",
+ "Date": "Fri, 22 Jul 2022 22:07:27 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "03bb99a0-9e79-4c92-823a-f1f80cb71edf",
+ "x-ms-correlation-request-id": "b340afd8-6021-41bd-8e05-81d935fb7b47",
"x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T115520Z:03bb99a0-9e79-4c92-823a-f1f80cb71edf"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T220728Z:b340afd8-6021-41bd-8e05-81d935fb7b47"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 11:55:30 GMT",
+ "Date": "Fri, 22 Jul 2022 22:07:37 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8bbe64c8-4912-4b48-a195-418d98354ca1",
+ "x-ms-correlation-request-id": "bd36bd87-a609-481a-96f2-1289146eafee",
"x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T115531Z:8bbe64c8-4912-4b48-a195-418d98354ca1"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T220738Z:bd36bd87-a609-481a-96f2-1289146eafee"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 11:55:41 GMT",
+ "Date": "Fri, 22 Jul 2022 22:07:47 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "dc44e6b1-501e-465f-b033-b16c181a130f",
+ "x-ms-correlation-request-id": "32d934ac-0d17-4907-ac11-6b02ba62c368",
"x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T115541Z:dc44e6b1-501e-465f-b033-b16c181a130f"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T220748Z:32d934ac-0d17-4907-ac11-6b02ba62c368"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:55:51 GMT",
+ "Date": "Fri, 22 Jul 2022 22:07:57 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "402d0e4f-cb94-4628-8e1f-d551fdb7099a",
+ "x-ms-correlation-request-id": "85b953c7-0df7-4dec-b07b-806a9b36598f",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T115552Z:402d0e4f-cb94-4628-8e1f-d551fdb7099a"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T220758Z:85b953c7-0df7-4dec-b07b-806a9b36598f"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/2ebceaaa-36e4-457a-b12f-dfdf75156205?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d06e8421-c7fa-458c-babb-d6ae6f696ff2?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 24 May 2022 11:55:53 GMT",
+ "Date": "Fri, 22 Jul 2022 22:07:59 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2ebceaaa-36e4-457a-b12f-dfdf75156205?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d06e8421-c7fa-458c-babb-d6ae6f696ff2?api-version=2022-03-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": "03702ab3-46e9-4f95-9e0f-e9f692f507c3",
+ "x-ms-correlation-request-id": "031beb65-74a5-4343-9111-540fa1649e54",
"x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T115554Z:03702ab3-46e9-4f95-9e0f-e9f692f507c3",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T220800Z:031beb65-74a5-4343-9111-540fa1649e54",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2ebceaaa-36e4-457a-b12f-dfdf75156205?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d06e8421-c7fa-458c-babb-d6ae6f696ff2?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2300,7 +2807,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:56:24 GMT",
+ "Date": "Fri, 22 Jul 2022 22:08:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2308,31 +2815,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e87c6977-0c61-44fa-b551-e65807f642ef",
+ "x-ms-correlation-request-id": "7a19b5a9-2a6f-4c31-9281-b83e1ef32414",
"x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T115625Z:e87c6977-0c61-44fa-b551-e65807f642ef",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T220830Z:7a19b5a9-2a6f-4c31-9281-b83e1ef32414",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2ebceaaa-36e4-457a-b12f-dfdf75156205",
- "name": "2ebceaaa-36e4-457a-b12f-dfdf75156205",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d06e8421-c7fa-458c-babb-d6ae6f696ff2",
+ "name": "d06e8421-c7fa-458c-babb-d6ae6f696ff2",
"status": "Succeeded",
- "startTime": "2022-05-24T11:55:54.47565Z",
- "endTime": "2022-05-24T11:55:54.522526Z",
+ "startTime": "2022-07-22T22:07:59.9810542Z",
+ "endTime": "2022-07-22T22:08:00.043498Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2ebceaaa-36e4-457a-b12f-dfdf75156205?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d06e8421-c7fa-458c-babb-d6ae6f696ff2?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2340,7 +2847,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:56:24 GMT",
+ "Date": "Fri, 22 Jul 2022 22:08:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2348,19 +2855,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4146ac22-c562-468a-98d9-08bff66bcf27",
+ "x-ms-correlation-request-id": "8165a0e6-2a57-463b-b3c1-eb172967bdf6",
"x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T115625Z:4146ac22-c562-468a-98d9-08bff66bcf27",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T220830Z:8165a0e6-2a57-463b-b3c1-eb172967bdf6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T11%3A55%3A54.4741329Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-22T22%3A07%3A59.9805372Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T11:39:05.3545911Z"
+ "CreatedOnDate": "2022-07-22T21:51:29.8333063Z"
},
"properties": {
"encryption": {
@@ -2371,43 +2878,78 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T11:39:11.2657875Z",
+ "createdAt": "2022-07-22T21:51:31.7397713Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T11:39:11.2657875Z"
+ "lastModifiedAt": "2022-07-22T21:51:31.7397713Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 11:56:27 GMT",
+ "Date": "Fri, 22 Jul 2022 22:08:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "bc8a51a8-b88c-476c-b560-15ed1ee92ab8",
+ "x-ms-correlation-request-id": "41eb9f15-c9a6-4bf3-902a-fb88a3655924",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T115628Z:bc8a51a8-b88c-476c-b560-15ed1ee92ab8"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T220830Z:41eb9f15-c9a6-4bf3-902a-fb88a3655924"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0?api-version=2021-08-01",
+ "RequestMethod": "DELETE",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "0",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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/6dded1ee-3531-4e3f-a3e2-e785ba67b5d4?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "0",
+ "Date": "Fri, 22 Jul 2022 22:08:31 GMT",
+ "Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/6dded1ee-3531-4e3f-a3e2-e785ba67b5d4?api-version=2021-08-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": "46e46a47-70e6-48c0-b295-9a3aaceaba3f",
+ "x-ms-correlation-request-id": "c7b2f439-628f-44c3-997f-23dc686b48f0",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220722T220831Z:c7b2f439-628f-44c3-997f-23dc686b48f0"
+ },
+ "ResponseBody": null
}
],
"Variables": {}
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 ddb9c632f3f3..3d9e218bb9bc 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 24 May 2022 12:28:04 GMT",
+ "Date": "Mon, 25 Jul 2022 11:32: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.12794.5 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 24 May 2022 12:28:04 GMT",
+ "Date": "Mon, 25 Jul 2022 11:32: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.12794.4 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13201.7 - WEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "14584303-90bd-4880-9a04-b9ae99794228",
+ "client-request-id": "2a567c8b-df9d-4df2-9834-35a4177700fd",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "14584303-90bd-4880-9a04-b9ae99794228",
+ "client-request-id": "2a567c8b-df9d-4df2-9834-35a4177700fd",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:28:05 GMT",
+ "Date": "Mon, 25 Jul 2022 11:32:17 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12794.5 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - WEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,45 +213,585 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "93",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2",
+ "properties": {
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ }
+ }
+ },
+ "StatusCode": 201,
+ "ResponseHeaders": {
+ "Azure-AsyncNotification": "Enabled",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5267046b-752b-4d8e-8c83-79e9cc6cfa46?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "746",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 11:32:26 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Retry-After": "3",
+ "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": "eff7c633-1037-402a-8386-f98bba1da2e8",
+ "x-ms-correlation-request-id": "740de156-1a69-44a2-81c0-429deab9771e",
+ "x-ms-ratelimit-remaining-subscription-writes": "1199",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113227Z:740de156-1a69-44a2-81c0-429deab9771e"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-a12623c1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1",
+ "etag": "W/\u00224871545c-99e2-4018-876b-6723439bec06\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-25T11:32:21.9636738Z"
+ },
+ "properties": {
+ "provisioningState": "Updating",
+ "resourceGuid": "d408c770-390a-449e-a509-5b780364b51c",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5267046b-752b-4d8e-8c83-79e9cc6cfa46?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 11:32:30 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": "32db4e07-d462-42df-931b-45c26c97e73d",
+ "x-ms-correlation-request-id": "b5a41c33-7b11-4a70-ad13-6508b330638b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113231Z:b5a41c33-7b11-4a70-ad13-6508b330638b"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 11:32:30 GMT",
+ "ETag": "W/\u00223ee0eeeb-a2f5-48c6-9aa9-8d3838570313\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": "0ed2cd65-d2a3-4646-9304-9deb1419596e",
+ "x-ms-correlation-request-id": "7adc1366-7fc6-458b-a3db-dd2b4b94c029",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113231Z:7adc1366-7fc6-458b-a3db-dd2b4b94c029"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-a12623c1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1",
+ "etag": "W/\u00223ee0eeeb-a2f5-48c6-9aa9-8d3838570313\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-25T11:32:21.9636738Z"
+ },
+ "properties": {
+ "provisioningState": "Succeeded",
+ "resourceGuid": "d408c770-390a-449e-a509-5b780364b51c",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "151",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "RequestBody": {
+ "properties": {
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "properties": {
+ "serviceName": "Microsoft.Netapp/volumes"
+ }
+ }
+ ]
+ }
+ },
+ "StatusCode": 201,
+ "ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/627492fc-f165-4686-973e-f5c81696912a?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "1318",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 11:32:31 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Retry-After": "3",
+ "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": "a2ed25d9-c170-452b-b830-72cdd65d4175",
+ "x-ms-correlation-request-id": "200e954e-e009-4adc-a035-e450ed81d071",
+ "x-ms-ratelimit-remaining-subscription-writes": "1198",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113232Z:200e954e-e009-4adc-a035-e450ed81d071"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1/subnets/default",
+ "etag": "W/\u0022448bcc30-d927-4f24-a2ac-b89d6fb1f4c3\u0022",
+ "properties": {
+ "provisioningState": "Updating",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u0022448bcc30-d927-4f24-a2ac-b89d6fb1f4c3\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/627492fc-f165-4686-973e-f5c81696912a?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 11:32:35 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": "479beec4-bb9a-4a7d-8a39-4a42117fe084",
+ "x-ms-correlation-request-id": "ea1930eb-17cb-46c0-8603-6602156fe718",
+ "x-ms-ratelimit-remaining-subscription-reads": "11996",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113235Z:ea1930eb-17cb-46c0-8603-6602156fe718"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 11:32:36 GMT",
+ "ETag": "W/\u00226a7773d4-e5f4-4349-97b2-e63f397d1608\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": "697f843c-ec98-483f-835d-394159d34bad",
+ "x-ms-correlation-request-id": "27565bcb-7f2c-442a-aa39-d15760b22e75",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113236Z:27565bcb-7f2c-442a-aa39-d15760b22e75"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1/subnets/default",
+ "etag": "W/\u00226a7773d4-e5f4-4349-97b2-e63f397d1608\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u00226a7773d4-e5f4-4349-97b2-e63f397d1608\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "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.11.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": "Mon, 25 Jul 2022 11:32:35 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.13315.8 - NEULR2 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.11.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": "Mon, 25 Jul 2022 11:32:35 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.13201.7 - 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": "77971eea-199c-4181-b794-33c86882bf31",
+ "Connection": "keep-alive",
+ "Content-Length": "281",
+ "Content-Type": "application/x-www-form-urlencoded",
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.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.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
+ },
+ "RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "77971eea-199c-4181-b794-33c86882bf31",
+ "Content-Length": "114",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 11:32:35 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.13315.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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1?api-version=2022-03-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "23",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/a4f37026-9fc2-4799-b61b-4e342b66d1ff?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/df63058c-4326-4d2f-87dc-63155f49edc8?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "699",
+ "Content-Length": "702",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:28:21 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T12%3A28%3A19.9871606Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 11:32:41 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T11%3A32%3A40.0677938Z\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": "1a74fd93-acb2-44d1-a240-951c8f2826b8",
- "x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T122821Z:1a74fd93-acb2-44d1-a240-951c8f2826b8",
+ "x-ms-correlation-request-id": "b920a4bb-c354-4f75-96d3-cd7bfb859dba",
+ "x-ms-ratelimit-remaining-subscription-writes": "1197",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113241Z:b920a4bb-c354-4f75-96d3-cd7bfb859dba",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A28%3A19.9871606Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T11%3A32%3A40.0677938Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:28:12.8186080Z"
+ "CreatedOnDate": "2022-07-25T11:32:37.5098643Z"
},
"properties": {
"provisioningState": "Creating"
@@ -258,21 +799,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T12:28:18.6784703Z",
+ "createdAt": "2022-07-25T11:32:39.1090798Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:28:18.6784703Z"
+ "lastModifiedAt": "2022-07-25T11:32:39.1090798Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a4f37026-9fc2-4799-b61b-4e342b66d1ff?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/df63058c-4326-4d2f-87dc-63155f49edc8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +821,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:28:52 GMT",
+ "Date": "Mon, 25 Jul 2022 11:33:11 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +829,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9c8bb79d-fb05-4e2b-aa3c-9c1f2c9458c1",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T122852Z:9c8bb79d-fb05-4e2b-aa3c-9c1f2c9458c1",
+ "x-ms-correlation-request-id": "6d6dabfa-4a51-4284-b12a-802d99c03ad0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113311Z:6d6dabfa-4a51-4284-b12a-802d99c03ad0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a4f37026-9fc2-4799-b61b-4e342b66d1ff",
- "name": "a4f37026-9fc2-4799-b61b-4e342b66d1ff",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/df63058c-4326-4d2f-87dc-63155f49edc8",
+ "name": "df63058c-4326-4d2f-87dc-63155f49edc8",
"status": "Succeeded",
- "startTime": "2022-05-24T12:28:19.9931816Z",
- "endTime": "2022-05-24T12:28:20.0244324Z",
+ "startTime": "2022-07-25T11:32:40.0696528Z",
+ "endTime": "2022-07-25T11:32:40.1165027Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +861,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:28:54 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T12%3A28%3A20.0283419Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 11:33:11 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T11%3A32%3A40.12011Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,35 +870,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "23930507-46ba-451c-9708-b1d7fdd242d1",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T122855Z:23930507-46ba-451c-9708-b1d7fdd242d1",
+ "x-ms-correlation-request-id": "6646f027-7d38-44e2-8d00-fc61c61ecffa",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113312Z:6646f027-7d38-44e2-8d00-fc61c61ecffa",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A28%3A20.0283419Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T11%3A32%3A40.12011Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:28:12.8186080Z"
+ "CreatedOnDate": "2022-07-25T11:32:37.5098643Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -370,26 +911,26 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T12:28:18.6784703Z",
+ "createdAt": "2022-07-25T11:32:39.1090798Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:28:18.6784703Z"
+ "lastModifiedAt": "2022-07-25T11:32:39.1090798Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "150",
+ "Content-Length": "138",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"size": 4398046511104,
"serviceLevel": "Premium",
@@ -399,30 +940,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e33de2f-1e47-4c39-a8c9-e5218a8e88de?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1401fc76-fd34-4cdd-9940-afa6396a0588?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "917",
+ "Content-Length": "918",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:29:02 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T12%3A29%3A00.2022561Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 11:33:14 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T11%3A33%3A13.7846275Z\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": "7de38c85-78a8-40bc-b2ce-2c77830eb86c",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T122902Z:7de38c85-78a8-40bc-b2ce-2c77830eb86c",
+ "x-ms-correlation-request-id": "d80fc73c-0dd9-4fd4-b10f-0401342b798d",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113314Z:d80fc73c-0dd9-4fd4-b10f-0401342b798d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A29%3A00.2022561Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T11%3A33%3A13.7846275Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:28:56.4679672Z"
+ "CreatedOnDate": "2022-07-25T11:33:12.5337599Z"
},
"properties": {
"serviceLevel": "Premium",
@@ -436,21 +977,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T12:28:59.7720746Z",
+ "createdAt": "2022-07-25T11:33:13.6004983Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:28:59.7720746Z"
+ "lastModifiedAt": "2022-07-25T11:33:13.6004983Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e33de2f-1e47-4c39-a8c9-e5218a8e88de?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1401fc76-fd34-4cdd-9940-afa6396a0588?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -458,7 +999,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:29:32 GMT",
+ "Date": "Mon, 25 Jul 2022 11:33:44 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -466,31 +1007,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8be5db25-5869-4ef0-8499-0275e2d9c3d4",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T122932Z:8be5db25-5869-4ef0-8499-0275e2d9c3d4",
+ "x-ms-correlation-request-id": "fe147709-8afb-43c0-b190-995b307ea7d4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113344Z:fe147709-8afb-43c0-b190-995b307ea7d4",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e33de2f-1e47-4c39-a8c9-e5218a8e88de",
- "name": "8e33de2f-1e47-4c39-a8c9-e5218a8e88de",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1401fc76-fd34-4cdd-9940-afa6396a0588",
+ "name": "1401fc76-fd34-4cdd-9940-afa6396a0588",
"status": "Succeeded",
- "startTime": "2022-05-24T12:29:00.2083145Z",
- "endTime": "2022-05-24T12:29:00.8021371Z",
+ "startTime": "2022-07-25T11:33:13.7870329Z",
+ "endTime": "2022-07-25T11:33:14.0057379Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -498,8 +1039,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:29:32 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T12%3A29%3A00.7976889Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 11:33:44 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T11%3A33%3A13.9994599Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -507,22 +1048,22 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "67304f2d-2b5b-44b0-9e35-39b3322f7554",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T122933Z:67304f2d-2b5b-44b0-9e35-39b3322f7554",
+ "x-ms-correlation-request-id": "6c563284-a2af-46d0-841d-3cb36a47c498",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113345Z:6c563284-a2af-46d0-841d-3cb36a47c498",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A29%3A00.7976889Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T11%3A33%3A13.9994599Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:28:56.4679672Z"
+ "CreatedOnDate": "2022-07-25T11:33:12.5337599Z"
},
"properties": {
- "poolId": "df4df224-707e-8732-090c-5186da87c4c7",
+ "poolId": "cd2d6d7f-df00-fa2e-8eb3-53ae76faf899",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
@@ -531,38 +1072,30 @@
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T12:28:59.7720746Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:28:59.7720746Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a12623c1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "800",
+ "Content-Length": "779",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-a12623c1",
"serviceLevel": "Premium",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -576,45 +1109,44 @@
"avsDataStore": "Disabled",
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled"
+ "defaultGroupQuotaInKiBs": 0
}
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd7a081b-b008-4d04-ae06-53d4e5c8061b?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3426ac63-30f4-46e6-83f6-a77c714f90fd?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "1567",
+ "Content-Length": "1577",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:29:50 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T12%3A29%3A49.4987238Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 11:33:57 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T11%3A33%3A57.1489752Z\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": "514d6684-e292-472c-8c33-b94c806871ec",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T122950Z:514d6684-e292-472c-8c33-b94c806871ec",
+ "x-ms-correlation-request-id": "990d15cf-226c-483f-8cd8-4c51fb4233ea",
+ "x-ms-ratelimit-remaining-subscription-writes": "1195",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113357Z:990d15cf-226c-483f-8cd8-4c51fb4233ea",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A29%3A49.4987238Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T11%3A33%3A57.1489752Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:29:44.6803050Z"
+ "CreatedOnDate": "2022-07-25T11:33:55.7636792Z"
},
"properties": {
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-a12623c1",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -629,28 +1161,27 @@
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
"provisioningState": "Creating"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T12:29:46.9365926Z",
+ "createdAt": "2022-07-25T11:33:56.8137077Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:29:46.9365926Z"
+ "lastModifiedAt": "2022-07-25T11:33:56.8137077Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd7a081b-b008-4d04-ae06-53d4e5c8061b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3426ac63-30f4-46e6-83f6-a77c714f90fd?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -658,7 +1189,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:30:21 GMT",
+ "Date": "Mon, 25 Jul 2022 11:34:27 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -666,31 +1197,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c07f1035-d7b4-4b1a-a869-66376743dba4",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T123022Z:c07f1035-d7b4-4b1a-a869-66376743dba4",
+ "x-ms-correlation-request-id": "131c2333-a9d3-4980-b250-7571d4b19929",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113428Z:131c2333-a9d3-4980-b250-7571d4b19929",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd7a081b-b008-4d04-ae06-53d4e5c8061b",
- "name": "bd7a081b-b008-4d04-ae06-53d4e5c8061b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3426ac63-30f4-46e6-83f6-a77c714f90fd",
+ "name": "3426ac63-30f4-46e6-83f6-a77c714f90fd",
"status": "Creating",
- "startTime": "2022-05-24T12:29:49.4980731Z",
+ "startTime": "2022-07-25T11:33:57.1440564Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/bd7a081b-b008-4d04-ae06-53d4e5c8061b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3426ac63-30f4-46e6-83f6-a77c714f90fd?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -698,7 +1229,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:30:53 GMT",
+ "Date": "Mon, 25 Jul 2022 11:34:57 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -706,31 +1237,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5bed2473-376e-4972-a7f5-d9d776b8c698",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T123054Z:5bed2473-376e-4972-a7f5-d9d776b8c698",
+ "x-ms-correlation-request-id": "31590aff-d0bd-47f5-ba5c-a1145968d013",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113458Z:31590aff-d0bd-47f5-ba5c-a1145968d013",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd7a081b-b008-4d04-ae06-53d4e5c8061b",
- "name": "bd7a081b-b008-4d04-ae06-53d4e5c8061b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3426ac63-30f4-46e6-83f6-a77c714f90fd",
+ "name": "3426ac63-30f4-46e6-83f6-a77c714f90fd",
"status": "Creating",
- "startTime": "2022-05-24T12:29:49.4980731Z",
+ "startTime": "2022-07-25T11:33:57.1440564Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/bd7a081b-b008-4d04-ae06-53d4e5c8061b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3426ac63-30f4-46e6-83f6-a77c714f90fd?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -738,7 +1269,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:31:24 GMT",
+ "Date": "Mon, 25 Jul 2022 11:35:28 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -746,31 +1277,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "48794099-a730-43cc-89a9-a2c4a8bf8bc9",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T123124Z:48794099-a730-43cc-89a9-a2c4a8bf8bc9",
+ "x-ms-correlation-request-id": "a4896c81-06b2-4669-8b8c-d22fc4902401",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113529Z:a4896c81-06b2-4669-8b8c-d22fc4902401",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd7a081b-b008-4d04-ae06-53d4e5c8061b",
- "name": "bd7a081b-b008-4d04-ae06-53d4e5c8061b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3426ac63-30f4-46e6-83f6-a77c714f90fd",
+ "name": "3426ac63-30f4-46e6-83f6-a77c714f90fd",
"status": "Creating",
- "startTime": "2022-05-24T12:29:49.4980731Z",
+ "startTime": "2022-07-25T11:33:57.1440564Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/bd7a081b-b008-4d04-ae06-53d4e5c8061b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3426ac63-30f4-46e6-83f6-a77c714f90fd?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -778,7 +1309,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:31:54 GMT",
+ "Date": "Mon, 25 Jul 2022 11:35:58 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -786,31 +1317,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "349d0b98-1c5a-48d8-9486-afda66eb813c",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T123155Z:349d0b98-1c5a-48d8-9486-afda66eb813c",
+ "x-ms-correlation-request-id": "1f597231-00cf-45ff-a5b6-4a1d6b1901f9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113559Z:1f597231-00cf-45ff-a5b6-4a1d6b1901f9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd7a081b-b008-4d04-ae06-53d4e5c8061b",
- "name": "bd7a081b-b008-4d04-ae06-53d4e5c8061b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3426ac63-30f4-46e6-83f6-a77c714f90fd",
+ "name": "3426ac63-30f4-46e6-83f6-a77c714f90fd",
"status": "Creating",
- "startTime": "2022-05-24T12:29:49.4980731Z",
+ "startTime": "2022-07-25T11:33:57.1440564Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/bd7a081b-b008-4d04-ae06-53d4e5c8061b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3426ac63-30f4-46e6-83f6-a77c714f90fd?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -818,7 +1349,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:32:25 GMT",
+ "Date": "Mon, 25 Jul 2022 11:36:29 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -826,31 +1357,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c1781f19-403a-43cf-8613-5adc0bc4a548",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T123225Z:c1781f19-403a-43cf-8613-5adc0bc4a548",
+ "x-ms-correlation-request-id": "f3f4eccb-8c0b-4730-b02d-48f540c0de44",
+ "x-ms-ratelimit-remaining-subscription-reads": "11986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113629Z:f3f4eccb-8c0b-4730-b02d-48f540c0de44",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd7a081b-b008-4d04-ae06-53d4e5c8061b",
- "name": "bd7a081b-b008-4d04-ae06-53d4e5c8061b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3426ac63-30f4-46e6-83f6-a77c714f90fd",
+ "name": "3426ac63-30f4-46e6-83f6-a77c714f90fd",
"status": "Creating",
- "startTime": "2022-05-24T12:29:49.4980731Z",
+ "startTime": "2022-07-25T11:33:57.1440564Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/bd7a081b-b008-4d04-ae06-53d4e5c8061b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3426ac63-30f4-46e6-83f6-a77c714f90fd?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -858,7 +1389,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:32:56 GMT",
+ "Date": "Mon, 25 Jul 2022 11:36:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -866,31 +1397,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d63bf433-e49e-411a-bc75-c8fa37f41b16",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T123257Z:d63bf433-e49e-411a-bc75-c8fa37f41b16",
+ "x-ms-correlation-request-id": "7aa20678-46cb-4891-82a5-391461469fbd",
+ "x-ms-ratelimit-remaining-subscription-reads": "11985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113659Z:7aa20678-46cb-4891-82a5-391461469fbd",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd7a081b-b008-4d04-ae06-53d4e5c8061b",
- "name": "bd7a081b-b008-4d04-ae06-53d4e5c8061b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3426ac63-30f4-46e6-83f6-a77c714f90fd",
+ "name": "3426ac63-30f4-46e6-83f6-a77c714f90fd",
"status": "Creating",
- "startTime": "2022-05-24T12:29:49.4980731Z",
+ "startTime": "2022-07-25T11:33:57.1440564Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/bd7a081b-b008-4d04-ae06-53d4e5c8061b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3426ac63-30f4-46e6-83f6-a77c714f90fd?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -898,7 +1429,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:33:27 GMT",
+ "Date": "Mon, 25 Jul 2022 11:37:29 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -906,31 +1437,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4c275045-9c87-4140-aa9c-a3f4f2202881",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T123327Z:4c275045-9c87-4140-aa9c-a3f4f2202881",
+ "x-ms-correlation-request-id": "2c29d960-ad09-4ae6-a810-48cd934e1d31",
+ "x-ms-ratelimit-remaining-subscription-reads": "11984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113730Z:2c29d960-ad09-4ae6-a810-48cd934e1d31",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd7a081b-b008-4d04-ae06-53d4e5c8061b",
- "name": "bd7a081b-b008-4d04-ae06-53d4e5c8061b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3426ac63-30f4-46e6-83f6-a77c714f90fd",
+ "name": "3426ac63-30f4-46e6-83f6-a77c714f90fd",
"status": "Creating",
- "startTime": "2022-05-24T12:29:49.4980731Z",
+ "startTime": "2022-07-25T11:33:57.1440564Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/bd7a081b-b008-4d04-ae06-53d4e5c8061b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3426ac63-30f4-46e6-83f6-a77c714f90fd?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -938,7 +1469,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:33:58 GMT",
+ "Date": "Mon, 25 Jul 2022 11:37:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -946,31 +1477,71 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d85e411a-7a5c-4bab-a968-78e3121b582c",
- "x-ms-ratelimit-remaining-subscription-reads": "11988",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T123358Z:d85e411a-7a5c-4bab-a968-78e3121b582c",
+ "x-ms-correlation-request-id": "1dbd67b2-0a02-4dcc-8051-c59036f41fe4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11983",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113800Z:1dbd67b2-0a02-4dcc-8051-c59036f41fe4",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3426ac63-30f4-46e6-83f6-a77c714f90fd",
+ "name": "3426ac63-30f4-46e6-83f6-a77c714f90fd",
+ "status": "Creating",
+ "startTime": "2022-07-25T11:33:57.1440564Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/3426ac63-30f4-46e6-83f6-a77c714f90fd?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Mon, 25 Jul 2022 11:38: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": "342a799b-9d82-4a81-ad3b-e32497c0ee7f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113831Z:342a799b-9d82-4a81-ad3b-e32497c0ee7f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd7a081b-b008-4d04-ae06-53d4e5c8061b",
- "name": "bd7a081b-b008-4d04-ae06-53d4e5c8061b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3426ac63-30f4-46e6-83f6-a77c714f90fd",
+ "name": "3426ac63-30f4-46e6-83f6-a77c714f90fd",
"status": "Succeeded",
- "startTime": "2022-05-24T12:29:49.4980731Z",
- "endTime": "2022-05-24T12:33:52.4814456Z",
+ "startTime": "2022-07-25T11:33:57.1440564Z",
+ "endTime": "2022-07-25T11:38:06.0860838Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a12623c1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -978,8 +1549,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:33:58 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T12%3A33%3A52.4826593Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 11:38:31 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T11%3A38%3A06.0822106Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -987,24 +1558,24 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "51803fb1-38c7-434f-9cbc-082bf878f998",
- "x-ms-ratelimit-remaining-subscription-reads": "11987",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T123359Z:51803fb1-38c7-434f-9cbc-082bf878f998",
+ "x-ms-correlation-request-id": "5fe1fa95-5441-4426-a8b0-be623e93a80a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11981",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113832Z:5fe1fa95-5441-4426-a8b0-be623e93a80a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A33%3A52.4826593Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T11%3A38%3A06.0822106Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:29:44.6803050Z"
+ "CreatedOnDate": "2022-07-25T11:33:55.7636792Z"
},
"properties": {
- "fileSystemId": "9d362b9b-a354-878d-f5bd-ebfda68e52ff",
+ "fileSystemId": "169b0732-942a-2ce8-da6d-acdbf458244b",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-a12623c1",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1030,10 +1601,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_deb6c3c0",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_9162a164",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1045,9 +1616,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "9d362b9b-a354-878d-f5bd-ebfda68e52ff",
- "fileSystemId": "9d362b9b-a354-878d-f5bd-ebfda68e52ff",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "169b0732-942a-2ce8-da6d-acdbf458244b",
+ "fileSystemId": "169b0732-942a-2ce8-da6d-acdbf458244b",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1059,21 +1630,12 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
- "encrypted": true,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T12:29:46.9365926Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:29:46.9365926Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a12623c1?api-version=2022-03-01",
"RequestMethod": "PATCH",
"RequestHeaders": {
"Accept": "application/json",
@@ -1081,7 +1643,7 @@
"Connection": "keep-alive",
"Content-Length": "166",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
"properties": {
@@ -1094,37 +1656,37 @@
},
"StatusCode": 202,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c39b414a-7286-4a0c-994a-1ffefc5ca542?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/22d1b75b-73ef-45bc-b18d-2262452734c8?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "2386",
+ "Content-Length": "2131",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:33:59 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T12%3A34%3A00.0282896Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 11:38:32 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T11%3A38%3A32.6168418Z\u0027\u0022",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c39b414a-7286-4a0c-994a-1ffefc5ca542?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/22d1b75b-73ef-45bc-b18d-2262452734c8?api-version=2022-03-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": "939e1de2-2a79-4642-90ad-ecea2f297cc5",
- "x-ms-ratelimit-remaining-subscription-writes": "1196",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T123400Z:939e1de2-2a79-4642-90ad-ecea2f297cc5",
+ "x-ms-correlation-request-id": "5422c112-4863-4be6-96d8-b2d54cad33bc",
+ "x-ms-ratelimit-remaining-subscription-writes": "1194",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113832Z:5422c112-4863-4be6-96d8-b2d54cad33bc",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A34%3A00.0282896Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T11%3A38%3A32.6168418Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:29:44.6803050Z"
+ "CreatedOnDate": "2022-07-25T11:33:55.7636792Z"
},
"properties": {
"provisioningState": "Patching",
- "fileSystemId": "9d362b9b-a354-878d-f5bd-ebfda68e52ff",
+ "fileSystemId": "169b0732-942a-2ce8-da6d-acdbf458244b",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-a12623c1",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1150,10 +1712,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_deb6c3c0",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_9162a164",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1165,9 +1727,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "9d362b9b-a354-878d-f5bd-ebfda68e52ff",
- "fileSystemId": "9d362b9b-a354-878d-f5bd-ebfda68e52ff",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "169b0732-942a-2ce8-da6d-acdbf458244b",
+ "fileSystemId": "169b0732-942a-2ce8-da6d-acdbf458244b",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1178,27 +1740,18 @@
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T12:29:46.9365926Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:29:46.9365926Z"
+ "maximumNumberOfFiles": 100000000
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c39b414a-7286-4a0c-994a-1ffefc5ca542?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/22d1b75b-73ef-45bc-b18d-2262452734c8?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1206,7 +1759,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:34:30 GMT",
+ "Date": "Mon, 25 Jul 2022 11:39:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1214,31 +1767,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "59f09cf2-fed9-41ee-a6ce-89cc83488562",
- "x-ms-ratelimit-remaining-subscription-reads": "11986",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T123430Z:59f09cf2-fed9-41ee-a6ce-89cc83488562",
+ "x-ms-correlation-request-id": "19be2361-92d3-4140-b39d-687fb137a0db",
+ "x-ms-ratelimit-remaining-subscription-reads": "11980",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113903Z:19be2361-92d3-4140-b39d-687fb137a0db",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c39b414a-7286-4a0c-994a-1ffefc5ca542",
- "name": "c39b414a-7286-4a0c-994a-1ffefc5ca542",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/22d1b75b-73ef-45bc-b18d-2262452734c8",
+ "name": "22d1b75b-73ef-45bc-b18d-2262452734c8",
"status": "Succeeded",
- "startTime": "2022-05-24T12:34:00.0262311Z",
- "endTime": "2022-05-24T12:34:19.409588Z",
+ "startTime": "2022-07-25T11:38:32.6206909Z",
+ "endTime": "2022-07-25T11:38:35.635721Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/c39b414a-7286-4a0c-994a-1ffefc5ca542?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/22d1b75b-73ef-45bc-b18d-2262452734c8?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1246,7 +1799,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:34:31 GMT",
+ "Date": "Mon, 25 Jul 2022 11:39:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1254,25 +1807,26 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0419f5a1-af27-4a62-955c-aef93ec4e515",
- "x-ms-ratelimit-remaining-subscription-reads": "11985",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T123432Z:0419f5a1-af27-4a62-955c-aef93ec4e515",
+ "x-ms-correlation-request-id": "ac3b3675-7acf-4dfe-9d6e-4ed9d30cc464",
+ "x-ms-ratelimit-remaining-subscription-reads": "11979",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113903Z:ac3b3675-7acf-4dfe-9d6e-4ed9d30cc464",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A34%3A19.4130646Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T11%3A38%3A35.6360931Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:33:59.6096101Z"
+ "CreatedOnDate": "2022-07-25T11:38:32.3300831Z"
},
"properties": {
- "fileSystemId": "9d362b9b-a354-878d-f5bd-ebfda68e52ff",
+ "networkFeatures": "Basic",
+ "fileSystemId": "169b0732-942a-2ce8-da6d-acdbf458244b",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
+ "creationToken": "sdk-py-tests-vol-3-a12623c1",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 214748364800,
"usedBytes": 0,
"exportPolicy": {
@@ -1300,25 +1854,24 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_deb6c3c0",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_9162a164",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1/subnets/default",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "df4df224-707e-8732-090c-5186da87c4c7",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a12623c1",
+ "poolId": "cd2d6d7f-df00-fa2e-8eb3-53ae76faf899",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "9d362b9b-a354-878d-f5bd-ebfda68e52ff",
- "fileSystemId": "9d362b9b-a354-878d-f5bd-ebfda68e52ff",
+ "mountTargetId": "169b0732-942a-2ce8-da6d-acdbf458244b",
+ "fileSystemId": "169b0732-942a-2ce8-da6d-acdbf458244b",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 12.5,
@@ -1337,58 +1890,53 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"encrypted": true,
- "smbAccessBasedEnumeration": "Disabled",
- "smbNonBrowsable": "Disabled",
"provisioningState": "Succeeded"
},
"systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T12:29:46.9365926Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:33:59.8617453Z"
+ "lastModifiedAt": "2022-07-25T11:38:32.4747604Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a12623c1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/2c7e8cf3-d652-4744-a39e-02d17fa8e440?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/de9e8668-41ae-4e47-9540-2c03f1bfbb48?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 24 May 2022 12:34:33 GMT",
+ "Date": "Mon, 25 Jul 2022 11:39:04 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2c7e8cf3-d652-4744-a39e-02d17fa8e440?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/de9e8668-41ae-4e47-9540-2c03f1bfbb48?api-version=2022-03-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": "cf20a349-cf97-44de-a81d-ac918b5f4ef3",
+ "x-ms-correlation-request-id": "18ac5491-7503-4461-8242-e0ebf90d1dc0",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T123433Z:cf20a349-cf97-44de-a81d-ac918b5f4ef3",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113904Z:18ac5491-7503-4461-8242-e0ebf90d1dc0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2c7e8cf3-d652-4744-a39e-02d17fa8e440?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/de9e8668-41ae-4e47-9540-2c03f1bfbb48?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1396,7 +1944,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:35:03 GMT",
+ "Date": "Mon, 25 Jul 2022 11:39:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1404,31 +1952,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e80bb715-5199-4d86-bba9-f703891c4a4d",
- "x-ms-ratelimit-remaining-subscription-reads": "11984",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T123504Z:e80bb715-5199-4d86-bba9-f703891c4a4d",
+ "x-ms-correlation-request-id": "a29925d9-9dd9-40b2-8b99-4b202392ef40",
+ "x-ms-ratelimit-remaining-subscription-reads": "11978",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T113934Z:a29925d9-9dd9-40b2-8b99-4b202392ef40",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2c7e8cf3-d652-4744-a39e-02d17fa8e440",
- "name": "2c7e8cf3-d652-4744-a39e-02d17fa8e440",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/de9e8668-41ae-4e47-9540-2c03f1bfbb48",
+ "name": "de9e8668-41ae-4e47-9540-2c03f1bfbb48",
"status": "Deleting",
- "startTime": "2022-05-24T12:34:33.3781503Z",
+ "startTime": "2022-07-25T11:39:03.9723892Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/2c7e8cf3-d652-4744-a39e-02d17fa8e440?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/de9e8668-41ae-4e47-9540-2c03f1bfbb48?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1436,7 +1984,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:35:35 GMT",
+ "Date": "Mon, 25 Jul 2022 11:40:04 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1444,31 +1992,111 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1c1130f0-d2c9-43df-bf64-c9e3b4dcfc0a",
- "x-ms-ratelimit-remaining-subscription-reads": "11983",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T123535Z:1c1130f0-d2c9-43df-bf64-c9e3b4dcfc0a",
+ "x-ms-correlation-request-id": "343b9ee2-6da8-49c2-b1ad-bf4602594c95",
+ "x-ms-ratelimit-remaining-subscription-reads": "11977",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T114004Z:343b9ee2-6da8-49c2-b1ad-bf4602594c95",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/de9e8668-41ae-4e47-9540-2c03f1bfbb48",
+ "name": "de9e8668-41ae-4e47-9540-2c03f1bfbb48",
+ "status": "Deleting",
+ "startTime": "2022-07-25T11:39:03.9723892Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/de9e8668-41ae-4e47-9540-2c03f1bfbb48?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Mon, 25 Jul 2022 11:40: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": "9d4fdaf5-a76a-4e69-9b06-ca2103720cca",
+ "x-ms-ratelimit-remaining-subscription-reads": "11976",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T114035Z:9d4fdaf5-a76a-4e69-9b06-ca2103720cca",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/de9e8668-41ae-4e47-9540-2c03f1bfbb48",
+ "name": "de9e8668-41ae-4e47-9540-2c03f1bfbb48",
+ "status": "Deleting",
+ "startTime": "2022-07-25T11:39:03.9723892Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/de9e8668-41ae-4e47-9540-2c03f1bfbb48?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Mon, 25 Jul 2022 11:41: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": "be553f24-af40-424f-a423-07e7e4aadc63",
+ "x-ms-ratelimit-remaining-subscription-reads": "11975",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T114105Z:be553f24-af40-424f-a423-07e7e4aadc63",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2c7e8cf3-d652-4744-a39e-02d17fa8e440",
- "name": "2c7e8cf3-d652-4744-a39e-02d17fa8e440",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/de9e8668-41ae-4e47-9540-2c03f1bfbb48",
+ "name": "de9e8668-41ae-4e47-9540-2c03f1bfbb48",
"status": "Succeeded",
- "startTime": "2022-05-24T12:34:33.3781503Z",
- "endTime": "2022-05-24T12:35:23.3870364Z",
+ "startTime": "2022-07-25T11:39:03.9723892Z",
+ "endTime": "2022-07-25T11:40:51.3677475Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/2c7e8cf3-d652-4744-a39e-02d17fa8e440?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/de9e8668-41ae-4e47-9540-2c03f1bfbb48?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1476,7 +2104,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:35:36 GMT",
+ "Date": "Mon, 25 Jul 2022 11:41:05 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1484,25 +2112,26 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f5b862ad-d38a-4500-b745-43d86e64ed5b",
- "x-ms-ratelimit-remaining-subscription-reads": "11982",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T123536Z:f5b862ad-d38a-4500-b745-43d86e64ed5b",
+ "x-ms-correlation-request-id": "3e3427c5-7423-48bc-b340-c22dd3322253",
+ "x-ms-ratelimit-remaining-subscription-reads": "11974",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T114105Z:3e3427c5-7423-48bc-b340-c22dd3322253",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A35%3A14.2253266Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T11%3A39%3A03.9596889Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:33:59.6096101Z"
+ "CreatedOnDate": "2022-07-25T11:38:32.3300831Z"
},
"properties": {
- "fileSystemId": "9d362b9b-a354-878d-f5bd-ebfda68e52ff",
+ "networkFeatures": "Basic",
+ "fileSystemId": "169b0732-942a-2ce8-da6d-acdbf458244b",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
+ "creationToken": "sdk-py-tests-vol-3-a12623c1",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 214748364800,
"usedBytes": 0,
"exportPolicy": {
@@ -1530,25 +2159,24 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "DELETED_baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_deb6c3c0",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_9162a164",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1/subnets/default",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "df4df224-707e-8732-090c-5186da87c4c7",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a12623c1",
+ "poolId": "cd2d6d7f-df00-fa2e-8eb3-53ae76faf899",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "9d362b9b-a354-878d-f5bd-ebfda68e52ff",
- "fileSystemId": "9d362b9b-a354-878d-f5bd-ebfda68e52ff",
+ "mountTargetId": "169b0732-942a-2ce8-da6d-acdbf458244b",
+ "fileSystemId": "169b0732-942a-2ce8-da6d-acdbf458244b",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 12.5,
@@ -1567,89 +2195,84 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"encrypted": true,
- "smbAccessBasedEnumeration": "Disabled",
- "smbNonBrowsable": "Disabled",
"provisioningState": "Deleting"
},
"systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T12:29:46.9365926Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:33:59.8617453Z"
+ "lastModifiedAt": "2022-07-25T11:38:32.4747604Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a12623c1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "306",
+ "Content-Length": "320",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:39:02 GMT",
+ "Date": "Mon, 25 Jul 2022 11:44:28 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d92063f5-f447-44d7-8a2b-d1ae3f0b5bf6",
+ "x-ms-correlation-request-id": "de50a95e-516e-4ae5-b925-6f0aeda85a95",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T123903Z:d92063f5-f447-44d7-8a2b-d1ae3f0b5bf6"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T114428Z:de50a95e-516e-4ae5-b925-6f0aeda85a95"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a12623c1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/e1271b48-cadb-4d77-b811-80cb7369e7b3?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e881c9e-8561-4301-adab-018a355bca85?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 24 May 2022 12:39:16 GMT",
+ "Date": "Mon, 25 Jul 2022 11:44:39 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e1271b48-cadb-4d77-b811-80cb7369e7b3?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e881c9e-8561-4301-adab-018a355bca85?api-version=2022-03-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": "928eebf1-13c9-409e-8868-219b7a9e6ff3",
+ "x-ms-correlation-request-id": "634baa41-0b8e-481a-b0de-eba66befdd09",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T123917Z:928eebf1-13c9-409e-8868-219b7a9e6ff3",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T114439Z:634baa41-0b8e-481a-b0de-eba66befdd09",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e1271b48-cadb-4d77-b811-80cb7369e7b3?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e881c9e-8561-4301-adab-018a355bca85?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1657,7 +2280,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:39:47 GMT",
+ "Date": "Mon, 25 Jul 2022 11:45:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1665,31 +2288,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c64594ab-e1b1-4261-8458-c9d482786989",
- "x-ms-ratelimit-remaining-subscription-reads": "11980",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T123948Z:c64594ab-e1b1-4261-8458-c9d482786989",
+ "x-ms-correlation-request-id": "4758c498-475b-4431-b70d-857a062afa74",
+ "x-ms-ratelimit-remaining-subscription-reads": "11972",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T114510Z:4758c498-475b-4431-b70d-857a062afa74",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e1271b48-cadb-4d77-b811-80cb7369e7b3",
- "name": "e1271b48-cadb-4d77-b811-80cb7369e7b3",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e881c9e-8561-4301-adab-018a355bca85",
+ "name": "7e881c9e-8561-4301-adab-018a355bca85",
"status": "Succeeded",
- "startTime": "2022-05-24T12:39:17.4020424Z",
- "endTime": "2022-05-24T12:39:20.8395735Z",
+ "startTime": "2022-07-25T11:44:39.8561352Z",
+ "endTime": "2022-07-25T11:44:40.3718554Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/e1271b48-cadb-4d77-b811-80cb7369e7b3?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e881c9e-8561-4301-adab-018a355bca85?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1697,7 +2320,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:39:47 GMT",
+ "Date": "Mon, 25 Jul 2022 11:45:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1705,211 +2328,203 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d938fea5-73d8-4a88-b0d1-16e15f6e2e43",
- "x-ms-ratelimit-remaining-subscription-reads": "11979",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T123948Z:d938fea5-73d8-4a88-b0d1-16e15f6e2e43",
+ "x-ms-correlation-request-id": "d9357193-da07-44ac-a501-b92c0628c256",
+ "x-ms-ratelimit-remaining-subscription-reads": "11971",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T114510Z:d9357193-da07-44ac-a501-b92c0628c256",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A39%3A17.3985615Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T11%3A44%3A39.8452227Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:28:56.4679672Z"
+ "CreatedOnDate": "2022-07-25T11:33:12.5337599Z"
},
"properties": {
- "poolId": "df4df224-707e-8732-090c-5186da87c4c7",
+ "poolId": "cd2d6d7f-df00-fa2e-8eb3-53ae76faf899",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1",
"qosType": "Auto",
"totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T12:28:59.7720746Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:28:59.7720746Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 12:39:58 GMT",
+ "Date": "Mon, 25 Jul 2022 11:45:20 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a741eb73-a32f-49fd-8250-dd732ad55acc",
+ "x-ms-correlation-request-id": "81fb0904-9f37-419f-9394-c74556cdf9d2",
"x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T123959Z:a741eb73-a32f-49fd-8250-dd732ad55acc"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T114520Z:81fb0904-9f37-419f-9394-c74556cdf9d2"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 12:40:09 GMT",
+ "Date": "Mon, 25 Jul 2022 11:45:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8a95266d-7206-454e-82fd-8c9e2ed6755d",
+ "x-ms-correlation-request-id": "647e6f6f-b384-4c13-a26c-532c526bddf8",
"x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124010Z:8a95266d-7206-454e-82fd-8c9e2ed6755d"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T114531Z:647e6f6f-b384-4c13-a26c-532c526bddf8"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 12:40:20 GMT",
+ "Date": "Mon, 25 Jul 2022 11:45:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f34d1c15-2172-4d8c-87ac-1fc66a885399",
+ "x-ms-correlation-request-id": "aabab528-741f-4837-881d-ca8a99414ae5",
"x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124020Z:f34d1c15-2172-4d8c-87ac-1fc66a885399"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T114541Z:aabab528-741f-4837-881d-ca8a99414ae5"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 12:40:32 GMT",
+ "Date": "Mon, 25 Jul 2022 11:45:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "674474d1-bee3-4503-b936-82eaf7e7f178",
+ "x-ms-correlation-request-id": "12ab3577-2520-4b5c-8638-5e3a5f5b6a7e",
"x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124032Z:674474d1-bee3-4503-b936-82eaf7e7f178"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T114551Z:12ab3577-2520-4b5c-8638-5e3a5f5b6a7e"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:40:41 GMT",
+ "Date": "Mon, 25 Jul 2022 11: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": "9c3d8427-6054-4dcb-815d-8c49d8a468d4",
+ "x-ms-correlation-request-id": "9c08c2da-1f85-44ff-a97f-91d247875b75",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124042Z:9c3d8427-6054-4dcb-815d-8c49d8a468d4"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T114602Z:9c08c2da-1f85-44ff-a97f-91d247875b75"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/92b93a90-8961-4575-80b1-bba9135190a6?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e4178be-506c-40e5-a926-4f5c5f128e18?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 24 May 2022 12:40:44 GMT",
+ "Date": "Mon, 25 Jul 2022 11:46:02 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/92b93a90-8961-4575-80b1-bba9135190a6?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e4178be-506c-40e5-a926-4f5c5f128e18?api-version=2022-03-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": "0bd36b90-2d2f-4e0f-8b6e-857340c3a0a5",
+ "x-ms-correlation-request-id": "7fbdd718-804e-4932-a340-31686758d9a8",
"x-ms-ratelimit-remaining-subscription-deletes": "14993",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124044Z:0bd36b90-2d2f-4e0f-8b6e-857340c3a0a5",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T114603Z:7fbdd718-804e-4932-a340-31686758d9a8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/92b93a90-8961-4575-80b1-bba9135190a6?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e4178be-506c-40e5-a926-4f5c5f128e18?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1917,7 +2532,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:41:14 GMT",
+ "Date": "Mon, 25 Jul 2022 11:46:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1925,31 +2540,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5e9c774c-e233-4fbe-8eb3-b092ffb19db5",
- "x-ms-ratelimit-remaining-subscription-reads": "11979",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124115Z:5e9c774c-e233-4fbe-8eb3-b092ffb19db5",
+ "x-ms-correlation-request-id": "2aeae4a7-7991-451c-91a3-56e0a91ca598",
+ "x-ms-ratelimit-remaining-subscription-reads": "11969",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T114634Z:2aeae4a7-7991-451c-91a3-56e0a91ca598",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/92b93a90-8961-4575-80b1-bba9135190a6",
- "name": "92b93a90-8961-4575-80b1-bba9135190a6",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e4178be-506c-40e5-a926-4f5c5f128e18",
+ "name": "3e4178be-506c-40e5-a926-4f5c5f128e18",
"status": "Succeeded",
- "startTime": "2022-05-24T12:40:44.7160316Z",
- "endTime": "2022-05-24T12:40:44.7629011Z",
+ "startTime": "2022-07-25T11:46:03.6062971Z",
+ "endTime": "2022-07-25T11:46:03.6687983Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/92b93a90-8961-4575-80b1-bba9135190a6?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e4178be-506c-40e5-a926-4f5c5f128e18?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1957,7 +2572,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:41:14 GMT",
+ "Date": "Mon, 25 Jul 2022 11:46:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1965,19 +2580,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "88aee575-d29a-4874-bc35-4f4ffcedaae3",
- "x-ms-ratelimit-remaining-subscription-reads": "11978",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124115Z:88aee575-d29a-4874-bc35-4f4ffcedaae3",
+ "x-ms-correlation-request-id": "165a21a4-cffb-44bf-bc7e-4cda688c0978",
+ "x-ms-ratelimit-remaining-subscription-reads": "11968",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T114634Z:165a21a4-cffb-44bf-bc7e-4cda688c0978",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A40%3A44.7210212Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T11%3A46%3A03.6067411Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:28:12.8186080Z"
+ "CreatedOnDate": "2022-07-25T11:32:37.5098643Z"
},
"properties": {
"encryption": {
@@ -1988,43 +2603,78 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T12:28:18.6784703Z",
+ "createdAt": "2022-07-25T11:32:39.1090798Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:28:18.6784703Z"
+ "lastModifiedAt": "2022-07-25T11:32:39.1090798Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:41:18 GMT",
+ "Date": "Mon, 25 Jul 2022 11:46:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9512a2ee-3c11-479e-a557-39a1de4f8df1",
+ "x-ms-correlation-request-id": "c9d8f348-c589-4b1c-befb-84ca38dd18fe",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124118Z:9512a2ee-3c11-479e-a557-39a1de4f8df1"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T114634Z:c9d8f348-c589-4b1c-befb-84ca38dd18fe"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1?api-version=2021-08-01",
+ "RequestMethod": "DELETE",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "0",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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/5c74e87f-cd3c-4396-8394-c464f90fb08e?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "0",
+ "Date": "Mon, 25 Jul 2022 11:46:35 GMT",
+ "Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/5c74e87f-cd3c-4396-8394-c464f90fb08e?api-version=2021-08-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": "0922b260-d9d8-4b30-9038-d009654de6b1",
+ "x-ms-correlation-request-id": "8e3b2f04-44c7-4992-8ae3-77df5d6661a7",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T114635Z:8e3b2f04-44c7-4992-8ae3-77df5d6661a7"
+ },
+ "ResponseBody": null
}
],
"Variables": {}
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 abe0ef6cb871..182f90b53c19 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 24 May 2022 12:42:30 GMT",
+ "Date": "Mon, 25 Jul 2022 12:17:53 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.12794.5 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 24 May 2022 12:42:30 GMT",
+ "Date": "Mon, 25 Jul 2022 12:17: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.12744.11 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - WEULR2 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "47cad4aa-3eb2-476f-968b-81544fb8b456",
+ "client-request-id": "68c42a61-777e-422f-961d-8c1b21fd0096",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "47cad4aa-3eb2-476f-968b-81544fb8b456",
+ "client-request-id": "68c42a61-777e-422f-961d-8c1b21fd0096",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:42:30 GMT",
+ "Date": "Mon, 25 Jul 2022 12:17:54 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12794.5 - WEULR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - NEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,45 +213,585 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "93",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2",
+ "properties": {
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ }
+ }
+ },
+ "StatusCode": 201,
+ "ResponseHeaders": {
+ "Azure-AsyncNotification": "Enabled",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/666341df-ddf3-46cd-ba85-411f28075005?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "746",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 12:18:03 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Retry-After": "3",
+ "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": "212da472-ad82-4a9d-bf07-759587d59d2a",
+ "x-ms-correlation-request-id": "729b67a2-0f35-4288-9045-29ba55dc5014",
+ "x-ms-ratelimit-remaining-subscription-writes": "1199",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T121803Z:729b67a2-0f35-4288-9045-29ba55dc5014"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-7b9e2339",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339",
+ "etag": "W/\u00228a6e7b4e-d8ce-4a6a-b9f1-e3f033561fe6\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-25T12:17:57.7296433Z"
+ },
+ "properties": {
+ "provisioningState": "Updating",
+ "resourceGuid": "69a9ff60-2005-4217-ba1b-54f9e5329b37",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/666341df-ddf3-46cd-ba85-411f28075005?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 12:18:06 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": "ec4d5112-6fd7-470e-9e9c-3b9c2d3d4a05",
+ "x-ms-correlation-request-id": "e19d8c8d-7257-49aa-9f5f-254a51e6a236",
+ "x-ms-ratelimit-remaining-subscription-reads": "11999",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T121807Z:e19d8c8d-7257-49aa-9f5f-254a51e6a236"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 12:18:07 GMT",
+ "ETag": "W/\u002282eaadb1-b3df-4f6d-be3f-53127ed3ea93\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": "b231e000-089d-46c8-959e-99fc3b9e5c31",
+ "x-ms-correlation-request-id": "4f15e90e-44bb-414a-908b-ae4574980a2b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T121807Z:4f15e90e-44bb-414a-908b-ae4574980a2b"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-7b9e2339",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339",
+ "etag": "W/\u002282eaadb1-b3df-4f6d-be3f-53127ed3ea93\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-25T12:17:57.7296433Z"
+ },
+ "properties": {
+ "provisioningState": "Succeeded",
+ "resourceGuid": "69a9ff60-2005-4217-ba1b-54f9e5329b37",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "151",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "RequestBody": {
+ "properties": {
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "properties": {
+ "serviceName": "Microsoft.Netapp/volumes"
+ }
+ }
+ ]
+ }
+ },
+ "StatusCode": 201,
+ "ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/dc6a8fae-0b97-42bf-9b31-01254256ca35?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "1318",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 12:18:07 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Retry-After": "3",
+ "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": "7cbe4abd-a6c5-434d-8abb-89ba0f02a20f",
+ "x-ms-correlation-request-id": "ff4d0bc1-0ebf-4f05-a20e-16ecdb43f9d9",
+ "x-ms-ratelimit-remaining-subscription-writes": "1198",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T121808Z:ff4d0bc1-0ebf-4f05-a20e-16ecdb43f9d9"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339/subnets/default",
+ "etag": "W/\u00228164d642-59d4-41ed-a1b6-cdbedaae3aea\u0022",
+ "properties": {
+ "provisioningState": "Updating",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u00228164d642-59d4-41ed-a1b6-cdbedaae3aea\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/dc6a8fae-0b97-42bf-9b31-01254256ca35?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 12:18:11 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Transfer-Encoding": "chunked",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-arm-service-request-id": "271469f4-928f-4ca4-9ebb-10be6b005def",
+ "x-ms-correlation-request-id": "d3a9abba-fb9a-4d04-b91e-d823f0555b73",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T121811Z:d3a9abba-fb9a-4d04-b91e-d823f0555b73"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 12:18:11 GMT",
+ "ETag": "W/\u0022f49bf8db-b082-49d0-beca-f4869d4397a8\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": "6bddea66-51a1-45e4-81d9-28baacbcc934",
+ "x-ms-correlation-request-id": "2b18ef99-7933-4890-ae59-f975b49bae7b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11996",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T121812Z:2b18ef99-7933-4890-ae59-f975b49bae7b"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339/subnets/default",
+ "etag": "W/\u0022f49bf8db-b082-49d0-beca-f4869d4397a8\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u0022f49bf8db-b082-49d0-beca-f4869d4397a8\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "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.11.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": "Mon, 25 Jul 2022 12:18:11 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.13315.8 - NEULR1 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.11.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": "Mon, 25 Jul 2022 12:18: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.13201.7 - 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": "fc8be1f8-0680-4d2d-b112-961600af563d",
+ "Connection": "keep-alive",
+ "Content-Length": "281",
+ "Content-Type": "application/x-www-form-urlencoded",
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.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.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
+ },
+ "RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "fc8be1f8-0680-4d2d-b112-961600af563d",
+ "Content-Length": "114",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 12:18:12 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.13315.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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339?api-version=2022-03-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "23",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/74a43ce9-d4d2-4f01-b61b-76fc59c0aa38?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/19e461bd-cf31-469b-9107-631382bf0180?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "699",
+ "Content-Length": "702",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:42:45 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T12%3A42%3A44.2143537Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 12:18:16 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T12%3A18%3A16.3169068Z\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": "058e441d-efa0-4456-810f-54edb36bf477",
- "x-ms-ratelimit-remaining-subscription-writes": "1196",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124246Z:058e441d-efa0-4456-810f-54edb36bf477",
+ "x-ms-correlation-request-id": "40d2a9dc-4fec-4e83-b4ca-fa6059b329a2",
+ "x-ms-ratelimit-remaining-subscription-writes": "1197",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T121817Z:40d2a9dc-4fec-4e83-b4ca-fa6059b329a2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A42%3A44.2143537Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T12%3A18%3A16.3169068Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:42:37.7651085Z"
+ "CreatedOnDate": "2022-07-25T12:18:13.5553710Z"
},
"properties": {
"provisioningState": "Creating"
@@ -258,21 +799,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T12:42:42.8689412Z",
+ "createdAt": "2022-07-25T12:18:15.3284774Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:42:42.8689412Z"
+ "lastModifiedAt": "2022-07-25T12:18:15.3284774Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/74a43ce9-d4d2-4f01-b61b-76fc59c0aa38?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/19e461bd-cf31-469b-9107-631382bf0180?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +821,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:43:16 GMT",
+ "Date": "Mon, 25 Jul 2022 12:18:47 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +829,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "30657601-cb67-40aa-bb4a-539699f5d98e",
- "x-ms-ratelimit-remaining-subscription-reads": "11981",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124317Z:30657601-cb67-40aa-bb4a-539699f5d98e",
+ "x-ms-correlation-request-id": "aa7d28e2-4d2b-44b7-9247-60f8d54eae2c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T121847Z:aa7d28e2-4d2b-44b7-9247-60f8d54eae2c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/74a43ce9-d4d2-4f01-b61b-76fc59c0aa38",
- "name": "74a43ce9-d4d2-4f01-b61b-76fc59c0aa38",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/19e461bd-cf31-469b-9107-631382bf0180",
+ "name": "19e461bd-cf31-469b-9107-631382bf0180",
"status": "Succeeded",
- "startTime": "2022-05-24T12:42:44.209569Z",
- "endTime": "2022-05-24T12:42:44.2408167Z",
+ "startTime": "2022-07-25T12:18:16.3184108Z",
+ "endTime": "2022-07-25T12:18:16.3652985Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +861,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:43:23 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T12%3A42%3A44.2448438Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 12:18:48 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T12%3A18%3A16.3680736Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,35 +870,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "cb194f88-f6c8-4e13-9d30-a9829797ae26",
- "x-ms-ratelimit-remaining-subscription-reads": "11980",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124323Z:cb194f88-f6c8-4e13-9d30-a9829797ae26",
+ "x-ms-correlation-request-id": "513a5356-7b2c-462d-bd76-3f0a35a1e552",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T121848Z:513a5356-7b2c-462d-bd76-3f0a35a1e552",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A42%3A44.2448438Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T12%3A18%3A16.3680736Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:42:37.7651085Z"
+ "CreatedOnDate": "2022-07-25T12:18:13.5553710Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -370,26 +911,26 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T12:42:42.8689412Z",
+ "createdAt": "2022-07-25T12:18:15.3284774Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:42:42.8689412Z"
+ "lastModifiedAt": "2022-07-25T12:18:15.3284774Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "150",
+ "Content-Length": "138",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"size": 4398046511104,
"serviceLevel": "Premium",
@@ -399,30 +940,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7f7d6304-d62a-408b-b9b8-02b076f64a14?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/256ce62d-093e-44df-b522-ce60fff98aff?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "917",
+ "Content-Length": "918",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:43:38 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T12%3A43%3A34.3632907Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 12:18:51 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T12%3A18%3A50.1245479Z\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": "779e9173-8d64-4dce-bc33-aea2aacc152b",
- "x-ms-ratelimit-remaining-subscription-writes": "1195",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124338Z:779e9173-8d64-4dce-bc33-aea2aacc152b",
+ "x-ms-correlation-request-id": "3859b4f5-d890-4a11-be85-1a0959af2027",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T121851Z:3859b4f5-d890-4a11-be85-1a0959af2027",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A43%3A34.3632907Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T12%3A18%3A50.1245479Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:43:30.9753394Z"
+ "CreatedOnDate": "2022-07-25T12:18:48.7204380Z"
},
"properties": {
"serviceLevel": "Premium",
@@ -436,21 +977,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T12:43:33.9020506Z",
+ "createdAt": "2022-07-25T12:18:49.9346607Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:43:33.9020506Z"
+ "lastModifiedAt": "2022-07-25T12:18:49.9346607Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7f7d6304-d62a-408b-b9b8-02b076f64a14?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/256ce62d-093e-44df-b522-ce60fff98aff?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -458,7 +999,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:44:14 GMT",
+ "Date": "Mon, 25 Jul 2022 12:19:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -466,31 +1007,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8a8651f4-9e11-4321-8fe8-4fdecf68b617",
- "x-ms-ratelimit-remaining-subscription-reads": "11979",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124414Z:8a8651f4-9e11-4321-8fe8-4fdecf68b617",
+ "x-ms-correlation-request-id": "1c2f5617-e2b6-4b65-a50b-9897d0648966",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T121921Z:1c2f5617-e2b6-4b65-a50b-9897d0648966",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7f7d6304-d62a-408b-b9b8-02b076f64a14",
- "name": "7f7d6304-d62a-408b-b9b8-02b076f64a14",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/256ce62d-093e-44df-b522-ce60fff98aff",
+ "name": "256ce62d-093e-44df-b522-ce60fff98aff",
"status": "Succeeded",
- "startTime": "2022-05-24T12:43:34.3578003Z",
- "endTime": "2022-05-24T12:43:35.0772176Z",
+ "startTime": "2022-07-25T12:18:50.1279007Z",
+ "endTime": "2022-07-25T12:18:50.4091483Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -498,8 +1039,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:44:16 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T12%3A43%3A35.0794024Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 12:19:21 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T12%3A18%3A50.3992889Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -507,22 +1048,22 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "83bde29b-d0a5-4dbc-8270-a5d1326292da",
- "x-ms-ratelimit-remaining-subscription-reads": "11978",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124416Z:83bde29b-d0a5-4dbc-8270-a5d1326292da",
+ "x-ms-correlation-request-id": "5c57976b-d154-405a-b31d-4cf7484a5df5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T121921Z:5c57976b-d154-405a-b31d-4cf7484a5df5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A43%3A35.0794024Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T12%3A18%3A50.3992889Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:43:30.9753394Z"
+ "CreatedOnDate": "2022-07-25T12:18:48.7204380Z"
},
"properties": {
- "poolId": "0334d5de-459d-4e1e-2d1a-e2aa24fdb23f",
+ "poolId": "1fdef2eb-21ce-6bf4-6fcf-678f436cfb46",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
@@ -531,38 +1072,30 @@
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T12:43:33.9020506Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:43:33.9020506Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9e2339?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "800",
+ "Content-Length": "779",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-7b9e2339",
"serviceLevel": "Premium",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -576,45 +1109,44 @@
"avsDataStore": "Disabled",
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled"
+ "defaultGroupQuotaInKiBs": 0
}
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fde503ec-ad60-4db9-8ecd-c8cf6c7edba9?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67b07b2a-32c1-4bb1-a446-fa9e7052cf78?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "1567",
+ "Content-Length": "1577",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:44:36 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T12%3A44%3A35.8542058Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 12:19:34 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T12%3A19%3A33.7785513Z\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": "2ff60475-61f7-41ec-8000-55f4a6c4260d",
- "x-ms-ratelimit-remaining-subscription-writes": "1194",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124437Z:2ff60475-61f7-41ec-8000-55f4a6c4260d",
+ "x-ms-correlation-request-id": "10164bc4-3d2e-4484-91eb-44b4378ec519",
+ "x-ms-ratelimit-remaining-subscription-writes": "1195",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T121934Z:10164bc4-3d2e-4484-91eb-44b4378ec519",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A44%3A35.8542058Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T12%3A19%3A33.7785513Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:44:29.9578035Z"
+ "CreatedOnDate": "2022-07-25T12:19:32.2822738Z"
},
"properties": {
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-7b9e2339",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -629,108 +1161,27 @@
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
"provisioningState": "Creating"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T12:44:33.3578932Z",
+ "createdAt": "2022-07-25T12:19:33.4817784Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:44:33.3578932Z"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fde503ec-ad60-4db9-8ecd-c8cf6c7edba9?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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, 24 May 2022 12: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": "d80f5920-cf8f-446b-9cab-0fbf31772171",
- "x-ms-ratelimit-remaining-subscription-reads": "11977",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124508Z:d80f5920-cf8f-446b-9cab-0fbf31772171",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fde503ec-ad60-4db9-8ecd-c8cf6c7edba9",
- "name": "fde503ec-ad60-4db9-8ecd-c8cf6c7edba9",
- "status": "Creating",
- "startTime": "2022-05-24T12:44:35.8478965Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fde503ec-ad60-4db9-8ecd-c8cf6c7edba9?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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, 24 May 2022 12: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": "97ed19f8-fecf-4dd0-819e-2b7876d4f7f8",
- "x-ms-ratelimit-remaining-subscription-reads": "11976",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124538Z:97ed19f8-fecf-4dd0-819e-2b7876d4f7f8",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fde503ec-ad60-4db9-8ecd-c8cf6c7edba9",
- "name": "fde503ec-ad60-4db9-8ecd-c8cf6c7edba9",
- "status": "Creating",
- "startTime": "2022-05-24T12:44:35.8478965Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "lastModifiedAt": "2022-07-25T12:19:33.4817784Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fde503ec-ad60-4db9-8ecd-c8cf6c7edba9?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67b07b2a-32c1-4bb1-a446-fa9e7052cf78?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -738,7 +1189,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:46:10 GMT",
+ "Date": "Mon, 25 Jul 2022 12:20:04 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -746,31 +1197,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4f61cd4a-ba50-464f-80a7-5d489d584212",
- "x-ms-ratelimit-remaining-subscription-reads": "11975",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124610Z:4f61cd4a-ba50-464f-80a7-5d489d584212",
+ "x-ms-correlation-request-id": "05e640fa-46de-4d9e-a1a0-3e9b37a33666",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T122005Z:05e640fa-46de-4d9e-a1a0-3e9b37a33666",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fde503ec-ad60-4db9-8ecd-c8cf6c7edba9",
- "name": "fde503ec-ad60-4db9-8ecd-c8cf6c7edba9",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67b07b2a-32c1-4bb1-a446-fa9e7052cf78",
+ "name": "67b07b2a-32c1-4bb1-a446-fa9e7052cf78",
"status": "Creating",
- "startTime": "2022-05-24T12:44:35.8478965Z",
+ "startTime": "2022-07-25T12:19:33.7781615Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/fde503ec-ad60-4db9-8ecd-c8cf6c7edba9?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67b07b2a-32c1-4bb1-a446-fa9e7052cf78?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -778,7 +1229,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:46:39 GMT",
+ "Date": "Mon, 25 Jul 2022 12:20:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -786,31 +1237,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d51077d6-0e25-45a5-b178-2750ee13886b",
- "x-ms-ratelimit-remaining-subscription-reads": "11974",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124640Z:d51077d6-0e25-45a5-b178-2750ee13886b",
+ "x-ms-correlation-request-id": "8dd685aa-07c7-4d2f-b692-49c5f963a11d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T122035Z:8dd685aa-07c7-4d2f-b692-49c5f963a11d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fde503ec-ad60-4db9-8ecd-c8cf6c7edba9",
- "name": "fde503ec-ad60-4db9-8ecd-c8cf6c7edba9",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67b07b2a-32c1-4bb1-a446-fa9e7052cf78",
+ "name": "67b07b2a-32c1-4bb1-a446-fa9e7052cf78",
"status": "Creating",
- "startTime": "2022-05-24T12:44:35.8478965Z",
+ "startTime": "2022-07-25T12:19:33.7781615Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/fde503ec-ad60-4db9-8ecd-c8cf6c7edba9?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67b07b2a-32c1-4bb1-a446-fa9e7052cf78?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -818,7 +1269,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:47:11 GMT",
+ "Date": "Mon, 25 Jul 2022 12:21:08 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -826,31 +1277,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4e281cdd-973b-4f8d-a277-0517c26e2584",
- "x-ms-ratelimit-remaining-subscription-reads": "11973",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124711Z:4e281cdd-973b-4f8d-a277-0517c26e2584",
+ "x-ms-correlation-request-id": "6be5e7a5-30fe-4166-9f2b-b4575f27be86",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T122108Z:6be5e7a5-30fe-4166-9f2b-b4575f27be86",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fde503ec-ad60-4db9-8ecd-c8cf6c7edba9",
- "name": "fde503ec-ad60-4db9-8ecd-c8cf6c7edba9",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67b07b2a-32c1-4bb1-a446-fa9e7052cf78",
+ "name": "67b07b2a-32c1-4bb1-a446-fa9e7052cf78",
"status": "Creating",
- "startTime": "2022-05-24T12:44:35.8478965Z",
+ "startTime": "2022-07-25T12:19:33.7781615Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/fde503ec-ad60-4db9-8ecd-c8cf6c7edba9?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67b07b2a-32c1-4bb1-a446-fa9e7052cf78?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -858,7 +1309,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:47:43 GMT",
+ "Date": "Mon, 25 Jul 2022 12:21:39 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -866,31 +1317,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "960cf97b-8600-4356-9dc9-64e818802e0f",
- "x-ms-ratelimit-remaining-subscription-reads": "11972",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124743Z:960cf97b-8600-4356-9dc9-64e818802e0f",
+ "x-ms-correlation-request-id": "d6b5b38e-cbef-47c0-a7cc-5ca24c82c198",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T122139Z:d6b5b38e-cbef-47c0-a7cc-5ca24c82c198",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fde503ec-ad60-4db9-8ecd-c8cf6c7edba9",
- "name": "fde503ec-ad60-4db9-8ecd-c8cf6c7edba9",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67b07b2a-32c1-4bb1-a446-fa9e7052cf78",
+ "name": "67b07b2a-32c1-4bb1-a446-fa9e7052cf78",
"status": "Creating",
- "startTime": "2022-05-24T12:44:35.8478965Z",
+ "startTime": "2022-07-25T12:19:33.7781615Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/fde503ec-ad60-4db9-8ecd-c8cf6c7edba9?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67b07b2a-32c1-4bb1-a446-fa9e7052cf78?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -898,7 +1349,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:48:13 GMT",
+ "Date": "Mon, 25 Jul 2022 12:22:09 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -906,31 +1357,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e0ae2625-dee8-46d7-85cc-e22d8300c1da",
- "x-ms-ratelimit-remaining-subscription-reads": "11971",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124814Z:e0ae2625-dee8-46d7-85cc-e22d8300c1da",
+ "x-ms-correlation-request-id": "97637e02-68cb-4c14-8dac-8c50e65826d1",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T122209Z:97637e02-68cb-4c14-8dac-8c50e65826d1",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fde503ec-ad60-4db9-8ecd-c8cf6c7edba9",
- "name": "fde503ec-ad60-4db9-8ecd-c8cf6c7edba9",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67b07b2a-32c1-4bb1-a446-fa9e7052cf78",
+ "name": "67b07b2a-32c1-4bb1-a446-fa9e7052cf78",
"status": "Creating",
- "startTime": "2022-05-24T12:44:35.8478965Z",
+ "startTime": "2022-07-25T12:19:33.7781615Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/fde503ec-ad60-4db9-8ecd-c8cf6c7edba9?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67b07b2a-32c1-4bb1-a446-fa9e7052cf78?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -938,7 +1389,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:48:44 GMT",
+ "Date": "Mon, 25 Jul 2022 12:22:39 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -946,31 +1397,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a4766214-57dc-4a6c-b384-bdbf4216977d",
- "x-ms-ratelimit-remaining-subscription-reads": "11970",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124845Z:a4766214-57dc-4a6c-b384-bdbf4216977d",
+ "x-ms-correlation-request-id": "d7dee9c5-d509-4473-a8e2-386ac053e7f4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T122240Z:d7dee9c5-d509-4473-a8e2-386ac053e7f4",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fde503ec-ad60-4db9-8ecd-c8cf6c7edba9",
- "name": "fde503ec-ad60-4db9-8ecd-c8cf6c7edba9",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67b07b2a-32c1-4bb1-a446-fa9e7052cf78",
+ "name": "67b07b2a-32c1-4bb1-a446-fa9e7052cf78",
"status": "Creating",
- "startTime": "2022-05-24T12:44:35.8478965Z",
+ "startTime": "2022-07-25T12:19:33.7781615Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/fde503ec-ad60-4db9-8ecd-c8cf6c7edba9?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67b07b2a-32c1-4bb1-a446-fa9e7052cf78?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -978,7 +1429,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:49:15 GMT",
+ "Date": "Mon, 25 Jul 2022 12:23:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -986,31 +1437,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "eccacde6-d7e8-4b9c-bf7f-e00be189412b",
- "x-ms-ratelimit-remaining-subscription-reads": "11969",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124916Z:eccacde6-d7e8-4b9c-bf7f-e00be189412b",
+ "x-ms-correlation-request-id": "2a42f9ec-0f95-400b-b0c9-80c32ba02dc9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T122310Z:2a42f9ec-0f95-400b-b0c9-80c32ba02dc9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fde503ec-ad60-4db9-8ecd-c8cf6c7edba9",
- "name": "fde503ec-ad60-4db9-8ecd-c8cf6c7edba9",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67b07b2a-32c1-4bb1-a446-fa9e7052cf78",
+ "name": "67b07b2a-32c1-4bb1-a446-fa9e7052cf78",
"status": "Creating",
- "startTime": "2022-05-24T12:44:35.8478965Z",
+ "startTime": "2022-07-25T12:19:33.7781615Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/fde503ec-ad60-4db9-8ecd-c8cf6c7edba9?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67b07b2a-32c1-4bb1-a446-fa9e7052cf78?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1018,7 +1469,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:49:46 GMT",
+ "Date": "Mon, 25 Jul 2022 12:23:40 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1026,31 +1477,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7c8f0f32-259c-4803-b523-bbe4af2455af",
- "x-ms-ratelimit-remaining-subscription-reads": "11968",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124947Z:7c8f0f32-259c-4803-b523-bbe4af2455af",
+ "x-ms-correlation-request-id": "78fdc671-3b74-4130-a3a7-264fd359dbc4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T122340Z:78fdc671-3b74-4130-a3a7-264fd359dbc4",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fde503ec-ad60-4db9-8ecd-c8cf6c7edba9",
- "name": "fde503ec-ad60-4db9-8ecd-c8cf6c7edba9",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67b07b2a-32c1-4bb1-a446-fa9e7052cf78",
+ "name": "67b07b2a-32c1-4bb1-a446-fa9e7052cf78",
"status": "Succeeded",
- "startTime": "2022-05-24T12:44:35.8478965Z",
- "endTime": "2022-05-24T12:49:25.8857036Z",
+ "startTime": "2022-07-25T12:19:33.7781615Z",
+ "endTime": "2022-07-25T12:23:35.098488Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9e2339?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1058,8 +1509,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:49:48 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T12%3A49%3A25.8899994Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 12:23:40 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T12%3A23%3A35.0931158Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1067,24 +1518,24 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1c9070e7-dd6a-4aa2-ae22-0088daf4d347",
- "x-ms-ratelimit-remaining-subscription-reads": "11967",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124948Z:1c9070e7-dd6a-4aa2-ae22-0088daf4d347",
+ "x-ms-correlation-request-id": "66b7c619-6177-4ce5-9d69-9dec26fb1dfe",
+ "x-ms-ratelimit-remaining-subscription-reads": "11983",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T122341Z:66b7c619-6177-4ce5-9d69-9dec26fb1dfe",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A49%3A25.8899994Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T12%3A23%3A35.0931158Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:44:29.9578035Z"
+ "CreatedOnDate": "2022-07-25T12:19:32.2822738Z"
},
"properties": {
- "fileSystemId": "21faa914-6a79-350f-8f3b-1f266db8be6c",
+ "fileSystemId": "8e01e2f4-7884-63c1-ddad-3df73e1f7604",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-7b9e2339",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1110,10 +1561,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_6703fc63",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_9577d806",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1125,9 +1576,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "21faa914-6a79-350f-8f3b-1f266db8be6c",
- "fileSystemId": "21faa914-6a79-350f-8f3b-1f266db8be6c",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "8e01e2f4-7884-63c1-ddad-3df73e1f7604",
+ "fileSystemId": "8e01e2f4-7884-63c1-ddad-3df73e1f7604",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1139,32 +1590,23 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
- "encrypted": true,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T12:44:33.3578932Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:44:33.3578932Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "150",
+ "Content-Length": "138",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"size": 4398046511104,
"serviceLevel": "Premium",
@@ -1174,30 +1616,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f1452ae6-321d-4a0d-9019-0d7554c3680c?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/358d76f3-a2f1-4516-b94e-94149b34bc0d?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "917",
+ "Content-Length": "918",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:49:54 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T12%3A49%3A53.4025186Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 12:23:43 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T12%3A23%3A43.0598354Z\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": "d54c85fd-a4f1-4362-b0b0-93d16d3b4e5d",
- "x-ms-ratelimit-remaining-subscription-writes": "1193",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T124955Z:d54c85fd-a4f1-4362-b0b0-93d16d3b4e5d",
+ "x-ms-correlation-request-id": "10ef6ec6-2611-4c9a-9ffa-02daaff656c2",
+ "x-ms-ratelimit-remaining-subscription-writes": "1194",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T122344Z:10ef6ec6-2611-4c9a-9ffa-02daaff656c2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A49%3A53.4025186Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T12%3A23%3A43.0598354Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:49:49.3031181Z"
+ "CreatedOnDate": "2022-07-25T12:23:41.3607880Z"
},
"properties": {
"serviceLevel": "Premium",
@@ -1211,21 +1653,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T12:49:52.9628016Z",
+ "createdAt": "2022-07-25T12:23:42.8723991Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:49:52.9628016Z"
+ "lastModifiedAt": "2022-07-25T12:23:42.8723991Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f1452ae6-321d-4a0d-9019-0d7554c3680c?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/358d76f3-a2f1-4516-b94e-94149b34bc0d?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1233,7 +1675,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:50:26 GMT",
+ "Date": "Mon, 25 Jul 2022 12:24:13 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1241,31 +1683,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9f39be38-9afa-41e5-8dc9-5db06ad6849d",
- "x-ms-ratelimit-remaining-subscription-reads": "11966",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125026Z:9f39be38-9afa-41e5-8dc9-5db06ad6849d",
+ "x-ms-correlation-request-id": "4d7dbe62-a2cf-46fe-90b0-766a06651cae",
+ "x-ms-ratelimit-remaining-subscription-reads": "11982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T122414Z:4d7dbe62-a2cf-46fe-90b0-766a06651cae",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f1452ae6-321d-4a0d-9019-0d7554c3680c",
- "name": "f1452ae6-321d-4a0d-9019-0d7554c3680c",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/358d76f3-a2f1-4516-b94e-94149b34bc0d",
+ "name": "358d76f3-a2f1-4516-b94e-94149b34bc0d",
"status": "Succeeded",
- "startTime": "2022-05-24T12:49:53.3973875Z",
- "endTime": "2022-05-24T12:49:54.288011Z",
+ "startTime": "2022-07-25T12:23:43.0668993Z",
+ "endTime": "2022-07-25T12:23:43.2075934Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1273,8 +1715,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:50:27 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T12%3A49%3A54.2825537Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 12:24:14 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T12%3A23%3A43.200642Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1282,22 +1724,22 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "33b644a9-5ea1-45e5-b4a4-80a3ff98e8d6",
- "x-ms-ratelimit-remaining-subscription-reads": "11965",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125027Z:33b644a9-5ea1-45e5-b4a4-80a3ff98e8d6",
+ "x-ms-correlation-request-id": "1c3187b7-c502-4e36-ae8a-deb17160e399",
+ "x-ms-ratelimit-remaining-subscription-reads": "11981",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T122415Z:1c3187b7-c502-4e36-ae8a-deb17160e399",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A49%3A54.2825537Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T12%3A23%3A43.200642Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:49:49.3031181Z"
+ "CreatedOnDate": "2022-07-25T12:23:41.3607880Z"
},
"properties": {
- "poolId": "972cd7b1-8480-e02a-0982-0a300202f851",
+ "poolId": "f4610f09-e416-8312-25ea-c39c1c7bd7c1",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
@@ -1306,58 +1748,50 @@
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T12:49:52.9628016Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:49:52.9628016Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/poolChange?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9e2339/poolChange?api-version=2022-03-01",
"RequestMethod": "POST",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "209",
+ "Content-Length": "215",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "newPoolResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2"
+ "newPoolResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/8e4bdbbd-b6e5-4397-ab40-42b90e9f177c?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1264cdef-6ed9-49fe-8b9d-cc36a9d88e1c?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 24 May 2022 12:50:37 GMT",
+ "Date": "Mon, 25 Jul 2022 12:24:26 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e4bdbbd-b6e5-4397-ab40-42b90e9f177c?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1264cdef-6ed9-49fe-8b9d-cc36a9d88e1c?api-version=2022-03-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": "3a7f540c-241d-4c9a-9e73-f51e6dcc1cfc",
+ "x-ms-correlation-request-id": "1ff32c54-5cfe-4e69-ad6b-6b20cfdb7d31",
"x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125038Z:3a7f540c-241d-4c9a-9e73-f51e6dcc1cfc",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T122426Z:1ff32c54-5cfe-4e69-ad6b-6b20cfdb7d31",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e4bdbbd-b6e5-4397-ab40-42b90e9f177c?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1264cdef-6ed9-49fe-8b9d-cc36a9d88e1c?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1365,7 +1799,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:51:08 GMT",
+ "Date": "Mon, 25 Jul 2022 12:24:56 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1373,31 +1807,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "28acd1dd-c10e-4ce7-bb23-2c99ace61378",
- "x-ms-ratelimit-remaining-subscription-reads": "11964",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125109Z:28acd1dd-c10e-4ce7-bb23-2c99ace61378",
+ "x-ms-correlation-request-id": "0a3caa63-699d-4d50-90de-cba7cabee914",
+ "x-ms-ratelimit-remaining-subscription-reads": "11980",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T122456Z:0a3caa63-699d-4d50-90de-cba7cabee914",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e4bdbbd-b6e5-4397-ab40-42b90e9f177c",
- "name": "8e4bdbbd-b6e5-4397-ab40-42b90e9f177c",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1264cdef-6ed9-49fe-8b9d-cc36a9d88e1c",
+ "name": "1264cdef-6ed9-49fe-8b9d-cc36a9d88e1c",
"status": "Succeeded",
- "startTime": "2022-05-24T12:50:38.403042Z",
- "endTime": "2022-05-24T12:50:54.3775973Z",
+ "startTime": "2022-07-25T12:24:26.2618005Z",
+ "endTime": "2022-07-25T12:24:35.1192735Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/8e4bdbbd-b6e5-4397-ab40-42b90e9f177c?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1264cdef-6ed9-49fe-8b9d-cc36a9d88e1c?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1405,7 +1839,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:51:10 GMT",
+ "Date": "Mon, 25 Jul 2022 12:24:56 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1413,25 +1847,26 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a5ec20ef-f7f0-401e-9fd6-f4f9a1bc0ac2",
- "x-ms-ratelimit-remaining-subscription-reads": "11963",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125111Z:a5ec20ef-f7f0-401e-9fd6-f4f9a1bc0ac2",
+ "x-ms-correlation-request-id": "8250484e-0744-489c-b6a0-776c0f5b6fc6",
+ "x-ms-ratelimit-remaining-subscription-reads": "11979",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T122457Z:8250484e-0744-489c-b6a0-776c0f5b6fc6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-2/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A50%3A54.3707539Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T12%3A24%3A35.0900011Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:44:29.9578035Z"
+ "CreatedOnDate": "2022-07-25T12:19:32.2822738Z"
},
"properties": {
- "fileSystemId": "21faa914-6a79-350f-8f3b-1f266db8be6c",
+ "networkFeatures": "Basic",
+ "fileSystemId": "8e01e2f4-7884-63c1-ddad-3df73e1f7604",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
+ "creationToken": "sdk-py-tests-vol-3-7b9e2339",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -1459,25 +1894,24 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_6703fc63",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_9577d806",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339/subnets/default",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-1",
- "poolId": "972cd7b1-8480-e02a-0982-0a300202f851",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-3-7b9e2339",
+ "poolId": "f4610f09-e416-8312-25ea-c39c1c7bd7c1",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "21faa914-6a79-350f-8f3b-1f266db8be6c",
- "fileSystemId": "21faa914-6a79-350f-8f3b-1f266db8be6c",
+ "mountTargetId": "8e01e2f4-7884-63c1-ddad-3df73e1f7604",
+ "fileSystemId": "8e01e2f4-7884-63c1-ddad-3df73e1f7604",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1496,20 +1930,18 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"encrypted": true,
- "smbAccessBasedEnumeration": "Disabled",
- "smbNonBrowsable": "Disabled",
"provisioningState": "Succeeded"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-3-7b9e2339?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1517,8 +1949,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:51:12 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T12%3A50%3A54.3707539Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 12:24:57 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T12%3A24%3A35.0900011Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1526,25 +1958,25 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "00a1c270-b058-432f-8e7d-6b2871d5e654",
- "x-ms-ratelimit-remaining-subscription-reads": "11962",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125112Z:00a1c270-b058-432f-8e7d-6b2871d5e654",
+ "x-ms-correlation-request-id": "6dc9cd09-7ff8-4044-bee6-2a92f13003cd",
+ "x-ms-ratelimit-remaining-subscription-reads": "11978",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T122457Z:6dc9cd09-7ff8-4044-bee6-2a92f13003cd",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-2/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A50%3A54.3707539Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T12%3A24%3A35.0900011Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:44:29.9578035Z"
+ "CreatedOnDate": "2022-07-25T12:19:32.2822738Z"
},
"properties": {
"provisioningState": "Succeeded",
- "fileSystemId": "21faa914-6a79-350f-8f3b-1f266db8be6c",
+ "fileSystemId": "8e01e2f4-7884-63c1-ddad-3df73e1f7604",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-7b9e2339",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1570,10 +2002,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_6703fc63",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_9577d806",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1585,9 +2017,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "21faa914-6a79-350f-8f3b-1f266db8be6c",
- "fileSystemId": "21faa914-6a79-350f-8f3b-1f266db8be6c",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "8e01e2f4-7884-63c1-ddad-3df73e1f7604",
+ "fileSystemId": "8e01e2f4-7884-63c1-ddad-3df73e1f7604",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1598,19 +2030,18 @@
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true
+ "maximumNumberOfFiles": 100000000
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1618,7 +2049,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:51:13 GMT",
+ "Date": "Mon, 25 Jul 2022 12:24:57 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1626,9 +2057,9 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "da6ed929-b4b7-427e-ade0-d1496ba64b19",
- "x-ms-ratelimit-remaining-subscription-reads": "11961",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125114Z:da6ed929-b4b7-427e-ade0-d1496ba64b19",
+ "x-ms-correlation-request-id": "722101ad-065d-48d8-8686-d8552cc0730f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11977",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T122458Z:722101ad-065d-48d8-8686-d8552cc0730f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -1636,43 +2067,43 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-3-7b9e2339?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/870c1722-3e3a-489a-a53c-d853170ff48b?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a4cc0cfb-c2fa-4b2a-890d-592251d368c5?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 24 May 2022 12:51:15 GMT",
+ "Date": "Mon, 25 Jul 2022 12:24:58 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/870c1722-3e3a-489a-a53c-d853170ff48b?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a4cc0cfb-c2fa-4b2a-890d-592251d368c5?api-version=2022-03-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": "4071257f-7b99-4a2a-9a53-9f6751b5b7f4",
- "x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125116Z:4071257f-7b99-4a2a-9a53-9f6751b5b7f4",
+ "x-ms-correlation-request-id": "da13fbfc-7976-4b56-9ecb-ec610e477ff8",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14999",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T122458Z:da13fbfc-7976-4b56-9ecb-ec610e477ff8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/870c1722-3e3a-489a-a53c-d853170ff48b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a4cc0cfb-c2fa-4b2a-890d-592251d368c5?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1680,7 +2111,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:51:45 GMT",
+ "Date": "Mon, 25 Jul 2022 12:25:29 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1688,31 +2119,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e43b9b9b-7d8d-48b3-b0e2-cab75f72ac20",
- "x-ms-ratelimit-remaining-subscription-reads": "11960",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125146Z:e43b9b9b-7d8d-48b3-b0e2-cab75f72ac20",
+ "x-ms-correlation-request-id": "5e822ffd-699b-4066-9641-6f67bdc0ae0e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11976",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T122529Z:5e822ffd-699b-4066-9641-6f67bdc0ae0e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/870c1722-3e3a-489a-a53c-d853170ff48b",
- "name": "870c1722-3e3a-489a-a53c-d853170ff48b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a4cc0cfb-c2fa-4b2a-890d-592251d368c5",
+ "name": "a4cc0cfb-c2fa-4b2a-890d-592251d368c5",
"status": "Deleting",
- "startTime": "2022-05-24T12:51:16.0674712Z",
+ "startTime": "2022-07-25T12:24:58.6523709Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/870c1722-3e3a-489a-a53c-d853170ff48b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a4cc0cfb-c2fa-4b2a-890d-592251d368c5?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1720,7 +2151,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:52:17 GMT",
+ "Date": "Mon, 25 Jul 2022 12:25:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1728,31 +2159,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "77d67fee-5b59-457f-b02e-f0029ce7c7c5",
- "x-ms-ratelimit-remaining-subscription-reads": "11959",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125218Z:77d67fee-5b59-457f-b02e-f0029ce7c7c5",
+ "x-ms-correlation-request-id": "304d2500-8b81-4171-be97-0330fc412392",
+ "x-ms-ratelimit-remaining-subscription-reads": "11975",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T122559Z:304d2500-8b81-4171-be97-0330fc412392",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/870c1722-3e3a-489a-a53c-d853170ff48b",
- "name": "870c1722-3e3a-489a-a53c-d853170ff48b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a4cc0cfb-c2fa-4b2a-890d-592251d368c5",
+ "name": "a4cc0cfb-c2fa-4b2a-890d-592251d368c5",
"status": "Deleting",
- "startTime": "2022-05-24T12:51:16.0674712Z",
+ "startTime": "2022-07-25T12:24:58.6523709Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/870c1722-3e3a-489a-a53c-d853170ff48b?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a4cc0cfb-c2fa-4b2a-890d-592251d368c5?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1760,7 +2191,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:52:49 GMT",
+ "Date": "Mon, 25 Jul 2022 12:26:29 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1768,31 +2199,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "47b604a1-9771-4604-a1ce-0639f037b07f",
- "x-ms-ratelimit-remaining-subscription-reads": "11958",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125250Z:47b604a1-9771-4604-a1ce-0639f037b07f",
+ "x-ms-correlation-request-id": "5bec3a01-6fa1-46ff-a3ff-01769d7316e3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11974",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T122629Z:5bec3a01-6fa1-46ff-a3ff-01769d7316e3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/870c1722-3e3a-489a-a53c-d853170ff48b",
- "name": "870c1722-3e3a-489a-a53c-d853170ff48b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a4cc0cfb-c2fa-4b2a-890d-592251d368c5",
+ "name": "a4cc0cfb-c2fa-4b2a-890d-592251d368c5",
"status": "Succeeded",
- "startTime": "2022-05-24T12:51:16.0674712Z",
- "endTime": "2022-05-24T12:52:25.8590451Z",
+ "startTime": "2022-07-25T12:24:58.6523709Z",
+ "endTime": "2022-07-25T12:26:03.7423386Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/870c1722-3e3a-489a-a53c-d853170ff48b?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a4cc0cfb-c2fa-4b2a-890d-592251d368c5?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1800,7 +2231,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:52:51 GMT",
+ "Date": "Mon, 25 Jul 2022 12:26:29 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1808,25 +2239,26 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9013011b-e3f7-4b3a-a76f-a2c41e938076",
- "x-ms-ratelimit-remaining-subscription-reads": "11957",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125252Z:9013011b-e3f7-4b3a-a76f-a2c41e938076",
+ "x-ms-correlation-request-id": "f488c793-3f16-4c59-9cc1-30031f5d035f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11973",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T122630Z:f488c793-3f16-4c59-9cc1-30031f5d035f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-2/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A52%3A16.7070788Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T12%3A24%3A58.6290072Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:44:29.9578035Z"
+ "CreatedOnDate": "2022-07-25T12:19:32.2822738Z"
},
"properties": {
- "fileSystemId": "21faa914-6a79-350f-8f3b-1f266db8be6c",
+ "networkFeatures": "Basic",
+ "fileSystemId": "8e01e2f4-7884-63c1-ddad-3df73e1f7604",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
+ "creationToken": "sdk-py-tests-vol-3-7b9e2339",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -1854,25 +2286,24 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "DELETED_baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_6703fc63",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_9577d806",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339/subnets/default",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-1",
- "poolId": "972cd7b1-8480-e02a-0982-0a300202f851",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-3-7b9e2339",
+ "poolId": "f4610f09-e416-8312-25ea-c39c1c7bd7c1",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "21faa914-6a79-350f-8f3b-1f266db8be6c",
- "fileSystemId": "21faa914-6a79-350f-8f3b-1f266db8be6c",
+ "mountTargetId": "8e01e2f4-7884-63c1-ddad-3df73e1f7604",
+ "fileSystemId": "8e01e2f4-7884-63c1-ddad-3df73e1f7604",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1891,81 +2322,79 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"encrypted": true,
- "smbAccessBasedEnumeration": "Disabled",
- "smbNonBrowsable": "Disabled",
"provisioningState": "Deleting"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-3-7b9e2339?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "306",
+ "Content-Length": "320",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:56:19 GMT",
+ "Date": "Mon, 25 Jul 2022 12:29:52 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f39a8734-c00a-47de-a2a4-528ed4d7d65d",
+ "x-ms-correlation-request-id": "1b2b7008-e17e-497e-a729-2820d1b6431b",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125620Z:f39a8734-c00a-47de-a2a4-528ed4d7d65d"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T122953Z:1b2b7008-e17e-497e-a729-2820d1b6431b"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-3-7b9e2339\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/74b7c38b-4c9e-4b5a-a75b-a9f7c1a0e05e?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a822f4c5-c8aa-442a-ad82-7f0a2df2c017?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 24 May 2022 12:56:33 GMT",
+ "Date": "Mon, 25 Jul 2022 12:30:05 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/74b7c38b-4c9e-4b5a-a75b-a9f7c1a0e05e?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a822f4c5-c8aa-442a-ad82-7f0a2df2c017?api-version=2022-03-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": "1c0076e2-40e1-4c50-b42d-e0fdd331230f",
+ "x-ms-correlation-request-id": "19e135d8-c0cd-4fc2-a8a3-0dc5d849c6d0",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125633Z:1c0076e2-40e1-4c50-b42d-e0fdd331230f",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T123005Z:19e135d8-c0cd-4fc2-a8a3-0dc5d849c6d0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/74b7c38b-4c9e-4b5a-a75b-a9f7c1a0e05e?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a822f4c5-c8aa-442a-ad82-7f0a2df2c017?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1973,7 +2402,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:57:03 GMT",
+ "Date": "Mon, 25 Jul 2022 12:30:35 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1981,31 +2410,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6b70963d-52b5-4f23-b52f-c651232d762d",
+ "x-ms-correlation-request-id": "0608fa9e-e329-42a4-951b-cf7b738cc866",
"x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125704Z:6b70963d-52b5-4f23-b52f-c651232d762d",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T123035Z:0608fa9e-e329-42a4-951b-cf7b738cc866",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/74b7c38b-4c9e-4b5a-a75b-a9f7c1a0e05e",
- "name": "74b7c38b-4c9e-4b5a-a75b-a9f7c1a0e05e",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a822f4c5-c8aa-442a-ad82-7f0a2df2c017",
+ "name": "a822f4c5-c8aa-442a-ad82-7f0a2df2c017",
"status": "Succeeded",
- "startTime": "2022-05-24T12:56:33.8483057Z",
- "endTime": "2022-05-24T12:56:37.4920995Z",
+ "startTime": "2022-07-25T12:30:05.4526282Z",
+ "endTime": "2022-07-25T12:30:05.7651905Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/74b7c38b-4c9e-4b5a-a75b-a9f7c1a0e05e?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a822f4c5-c8aa-442a-ad82-7f0a2df2c017?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2013,7 +2442,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:57:05 GMT",
+ "Date": "Mon, 25 Jul 2022 12:30:35 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2021,211 +2450,203 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "83b82673-2d88-4bfa-bf28-c4dc52620559",
+ "x-ms-correlation-request-id": "9229b650-5a94-4648-8214-992d78127b9e",
"x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125705Z:83b82673-2d88-4bfa-bf28-c4dc52620559",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T123036Z:9229b650-5a94-4648-8214-992d78127b9e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A56%3A33.8432331Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T12%3A30%3A05.4439645Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:43:30.9753394Z"
+ "CreatedOnDate": "2022-07-25T12:18:48.7204380Z"
},
"properties": {
- "poolId": "0334d5de-459d-4e1e-2d1a-e2aa24fdb23f",
+ "poolId": "1fdef2eb-21ce-6bf4-6fcf-678f436cfb46",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1",
"qosType": "Auto",
"totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T12:43:33.9020506Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:43:33.9020506Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 12:57:17 GMT",
+ "Date": "Mon, 25 Jul 2022 12:30:46 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7ef16344-4feb-4c53-af3f-c69952830b4a",
+ "x-ms-correlation-request-id": "d8ec3964-bba0-4917-affc-3b5e5b1da5c4",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125717Z:7ef16344-4feb-4c53-af3f-c69952830b4a"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T123046Z:d8ec3964-bba0-4917-affc-3b5e5b1da5c4"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 12:57:28 GMT",
+ "Date": "Mon, 25 Jul 2022 12: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": "7a6cb235-75a6-44dc-a808-285905ea0f37",
+ "x-ms-correlation-request-id": "eff0bbfc-236e-473d-bc61-1fef0c2a202b",
"x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125729Z:7a6cb235-75a6-44dc-a808-285905ea0f37"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T123056Z:eff0bbfc-236e-473d-bc61-1fef0c2a202b"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 12:57:40 GMT",
+ "Date": "Mon, 25 Jul 2022 12:31:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0521695b-1e5b-41f1-8242-d64b7c3c8c42",
+ "x-ms-correlation-request-id": "1de2d3e0-9e2d-4e6b-a708-02e9aaceba60",
"x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125740Z:0521695b-1e5b-41f1-8242-d64b7c3c8c42"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T123108Z:1de2d3e0-9e2d-4e6b-a708-02e9aaceba60"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 12:57:51 GMT",
+ "Date": "Mon, 25 Jul 2022 12:31:17 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e92ff60a-3214-4d5a-b3a8-57b870de0d8b",
+ "x-ms-correlation-request-id": "f0ef5d7e-52eb-4955-92a8-584613fdbee9",
"x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125751Z:e92ff60a-3214-4d5a-b3a8-57b870de0d8b"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T123118Z:f0ef5d7e-52eb-4955-92a8-584613fdbee9"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:58:01 GMT",
+ "Date": "Mon, 25 Jul 2022 12:31:28 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7292165b-e84d-4d47-b956-00a22fb31791",
+ "x-ms-correlation-request-id": "f0217e6c-1e0f-4ec7-a020-d30ba266055d",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125802Z:7292165b-e84d-4d47-b956-00a22fb31791"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T123128Z:f0217e6c-1e0f-4ec7-a020-d30ba266055d"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/6b7b6088-90b7-47aa-b07f-e9c7d601cc72?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d663cc36-08c5-4466-b579-2a7758f82f39?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 24 May 2022 12:58:15 GMT",
+ "Date": "Mon, 25 Jul 2022 12:31:39 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6b7b6088-90b7-47aa-b07f-e9c7d601cc72?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d663cc36-08c5-4466-b579-2a7758f82f39?api-version=2022-03-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": "39b56513-7b5d-433c-be12-0fcc32b3d55e",
+ "x-ms-correlation-request-id": "5433dc91-d365-4d34-96df-2afffd247ddf",
"x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125815Z:39b56513-7b5d-433c-be12-0fcc32b3d55e",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T123140Z:5433dc91-d365-4d34-96df-2afffd247ddf",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6b7b6088-90b7-47aa-b07f-e9c7d601cc72?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d663cc36-08c5-4466-b579-2a7758f82f39?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2233,7 +2654,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:58:45 GMT",
+ "Date": "Mon, 25 Jul 2022 12:32:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2241,31 +2662,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ed360277-d930-457b-bae2-9489616680b3",
+ "x-ms-correlation-request-id": "866b4e8e-5ad9-48fb-b4bd-ceaa5f47540f",
"x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125846Z:ed360277-d930-457b-bae2-9489616680b3",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T123210Z:866b4e8e-5ad9-48fb-b4bd-ceaa5f47540f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6b7b6088-90b7-47aa-b07f-e9c7d601cc72",
- "name": "6b7b6088-90b7-47aa-b07f-e9c7d601cc72",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d663cc36-08c5-4466-b579-2a7758f82f39",
+ "name": "d663cc36-08c5-4466-b579-2a7758f82f39",
"status": "Succeeded",
- "startTime": "2022-05-24T12:58:15.6222487Z",
- "endTime": "2022-05-24T12:58:18.7537232Z",
+ "startTime": "2022-07-25T12:31:40.0795988Z",
+ "endTime": "2022-07-25T12:31:40.4816182Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/6b7b6088-90b7-47aa-b07f-e9c7d601cc72?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d663cc36-08c5-4466-b579-2a7758f82f39?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2273,7 +2694,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:58:46 GMT",
+ "Date": "Mon, 25 Jul 2022 12:32:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2281,211 +2702,203 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "dcf0157f-2117-4af1-81d4-92e5b0d43317",
+ "x-ms-correlation-request-id": "d424d52a-be90-4cc1-9b50-c395dcd1bdf7",
"x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125846Z:dcf0157f-2117-4af1-81d4-92e5b0d43317",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T123210Z:d424d52a-be90-4cc1-9b50-c395dcd1bdf7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A58%3A15.6233232Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T12%3A31%3A40.0647934Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:49:49.3031181Z"
+ "CreatedOnDate": "2022-07-25T12:23:41.3607880Z"
},
"properties": {
- "poolId": "972cd7b1-8480-e02a-0982-0a300202f851",
+ "poolId": "f4610f09-e416-8312-25ea-c39c1c7bd7c1",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2",
"qosType": "Auto",
"totalThroughputMibps": 256.0,
"utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T12:49:52.9628016Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:49:52.9628016Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 12:58:57 GMT",
+ "Date": "Mon, 25 Jul 2022 12:32:20 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "05d1f02d-a713-43d1-a8e3-ccc03e8e525e",
+ "x-ms-correlation-request-id": "85c7ea7f-0026-4cc8-91b9-916ef158f112",
"x-ms-ratelimit-remaining-subscription-deletes": "14993",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125857Z:05d1f02d-a713-43d1-a8e3-ccc03e8e525e"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T123221Z:85c7ea7f-0026-4cc8-91b9-916ef158f112"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 12:59:08 GMT",
+ "Date": "Mon, 25 Jul 2022 12: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": "a6002ab2-854e-46ee-ac39-ca5a08a65ecc",
+ "x-ms-correlation-request-id": "96a06fdc-69bd-487f-bb5c-005b1ebf72db",
"x-ms-ratelimit-remaining-subscription-deletes": "14992",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125908Z:a6002ab2-854e-46ee-ac39-ca5a08a65ecc"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T123231Z:96a06fdc-69bd-487f-bb5c-005b1ebf72db"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 12:59:20 GMT",
+ "Date": "Mon, 25 Jul 2022 12:32:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f78d9609-ab4d-4579-bfc2-da4c0ee9770c",
+ "x-ms-correlation-request-id": "2da233ca-9825-4ba5-9c57-62f6534d344d",
"x-ms-ratelimit-remaining-subscription-deletes": "14991",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125920Z:f78d9609-ab4d-4579-bfc2-da4c0ee9770c"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T123241Z:2da233ca-9825-4ba5-9c57-62f6534d344d"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 12:59:31 GMT",
+ "Date": "Mon, 25 Jul 2022 12:32:52 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "877e366e-d087-4fe0-aa39-96d194d3fdb8",
+ "x-ms-correlation-request-id": "7bee4334-e70e-42a0-8b06-72387fe02cac",
"x-ms-ratelimit-remaining-subscription-deletes": "14990",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125931Z:877e366e-d087-4fe0-aa39-96d194d3fdb8"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T123252Z:7bee4334-e70e-42a0-8b06-72387fe02cac"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:59:42 GMT",
+ "Date": "Mon, 25 Jul 2022 12:33:02 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "35db0aa4-de23-424d-b3be-ca982d2c20b8",
+ "x-ms-correlation-request-id": "892c86a8-a912-421f-b81a-3be60e5ebfcb",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125942Z:35db0aa4-de23-424d-b3be-ca982d2c20b8"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T123302Z:892c86a8-a912-421f-b81a-3be60e5ebfcb"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/1b69abe9-f967-4d6f-8a53-6c381a1c993c?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2985bfc0-c016-44fd-b3e1-6982b816a073?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 24 May 2022 12:59:45 GMT",
+ "Date": "Mon, 25 Jul 2022 12:33:03 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1b69abe9-f967-4d6f-8a53-6c381a1c993c?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2985bfc0-c016-44fd-b3e1-6982b816a073?api-version=2022-03-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": "8483ef78-ce69-4411-84e9-c52a66e2eb5e",
+ "x-ms-correlation-request-id": "02d1235b-4a25-4e26-8607-408d25f92699",
"x-ms-ratelimit-remaining-subscription-deletes": "14989",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T125946Z:8483ef78-ce69-4411-84e9-c52a66e2eb5e",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T123304Z:02d1235b-4a25-4e26-8607-408d25f92699",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1b69abe9-f967-4d6f-8a53-6c381a1c993c?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2985bfc0-c016-44fd-b3e1-6982b816a073?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2493,7 +2906,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 13:00:16 GMT",
+ "Date": "Mon, 25 Jul 2022 12:33:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2501,31 +2914,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "24d0d060-0f84-4214-8303-cf4e95c4c6ff",
+ "x-ms-correlation-request-id": "ac4aea3d-de20-43c2-a71b-d0fa7529e3d9",
"x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T130016Z:24d0d060-0f84-4214-8303-cf4e95c4c6ff",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T123334Z:ac4aea3d-de20-43c2-a71b-d0fa7529e3d9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1b69abe9-f967-4d6f-8a53-6c381a1c993c",
- "name": "1b69abe9-f967-4d6f-8a53-6c381a1c993c",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2985bfc0-c016-44fd-b3e1-6982b816a073",
+ "name": "2985bfc0-c016-44fd-b3e1-6982b816a073",
"status": "Succeeded",
- "startTime": "2022-05-24T12:59:45.9073316Z",
- "endTime": "2022-05-24T12:59:45.9385954Z",
+ "startTime": "2022-07-25T12:33:03.9595706Z",
+ "endTime": "2022-07-25T12:33:04.0220097Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1b69abe9-f967-4d6f-8a53-6c381a1c993c?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2985bfc0-c016-44fd-b3e1-6982b816a073?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2533,7 +2946,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 13:00:16 GMT",
+ "Date": "Mon, 25 Jul 2022 12:33:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2541,19 +2954,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e03a3b51-c163-43ff-901d-92f3d78995f5",
+ "x-ms-correlation-request-id": "2e718c3a-03dd-4bcf-be93-26b53e30befc",
"x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T130017Z:e03a3b51-c163-43ff-901d-92f3d78995f5",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T123334Z:2e718c3a-03dd-4bcf-be93-26b53e30befc",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A59%3A45.900063Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T12%3A33%3A03.9575331Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:42:37.7651085Z"
+ "CreatedOnDate": "2022-07-25T12:18:13.5553710Z"
},
"properties": {
"encryption": {
@@ -2564,41 +2977,41 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T12:42:42.8689412Z",
+ "createdAt": "2022-07-25T12:18:15.3284774Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:42:42.8689412Z"
+ "lastModifiedAt": "2022-07-25T12:18:15.3284774Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 13:00:19 GMT",
+ "Date": "Mon, 25 Jul 2022 12:33:34 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a83891e8-ef60-41fe-b530-6656335772aa",
+ "x-ms-correlation-request-id": "272d2dab-cb71-454c-a250-93b208287784",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T130020Z:a83891e8-ef60-41fe-b530-6656335772aa"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T123335Z:272d2dab-cb71-454c-a250-93b208287784"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
}
}
}
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 59dbbcd4207c..c6cb1988eef6 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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 24 May 2022 12:13:35 GMT",
+ "Date": "Mon, 25 Jul 2022 10:34:22 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.12794.5 - KRSLR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.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.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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, 24 May 2022 12:13:37 GMT",
+ "Date": "Mon, 25 Jul 2022 10:34: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.12744.11 - KRSLR2 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - WEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,27 +172,28 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "d9d0df03-0e49-46ca-a456-23c9aea5258e",
+ "client-request-id": "ec3e98a2-b262-48d5-85fe-5e5642fcddcf",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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.12.0"
+ "x-client-ver": "1.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
},
"RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "d9d0df03-0e49-46ca-a456-23c9aea5258e",
+ "client-request-id": "ec3e98a2-b262-48d5-85fe-5e5642fcddcf",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:13:38 GMT",
+ "Date": "Mon, 25 Jul 2022 10:34:23 GMT",
"Expires": "-1",
"P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022",
"Pragma": "no-cache",
@@ -200,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.12794.5 - KRSLR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13315.8 - WEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -212,45 +213,585 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "35",
+ "Content-Length": "93",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage"
+ "location": "westus2",
+ "properties": {
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ }
+ }
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e97c26aa-9269-4982-bb78-3e606531a852?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/2bb59ee6-cb1e-4fae-be07-8562c762c581?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Length": "699",
+ "Content-Length": "746",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:13:59 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T12%3A13%3A57.5648648Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 10:34:35 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Retry-After": "3",
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b319af2e-8a00-4689-b937-7eab7a37d717",
+ "x-ms-arm-service-request-id": "3d6e445b-d8ef-4ffd-9b15-a4e63e9cb3b4",
+ "x-ms-correlation-request-id": "577f3e0a-4bd5-46c1-9c1b-bf03614dc20e",
"x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T121359Z:b319af2e-8a00-4689-b937-7eab7a37d717",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T103435Z:577f3e0a-4bd5-46c1-9c1b-bf03614dc20e"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-c6cd2434",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434",
+ "etag": "W/\u00229c02b477-c380-49f7-a9e4-ed0cd2d2d96f\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-25T10:34:27.7083244Z"
+ },
+ "properties": {
+ "provisioningState": "Updating",
+ "resourceGuid": "f20983be-937e-41e9-b41a-3382c419d323",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2bb59ee6-cb1e-4fae-be07-8562c762c581?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 10:34:38 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": "e0c6487c-0777-475d-8ef3-28e6c8aa0a26",
+ "x-ms-correlation-request-id": "403d4390-d3b2-46c6-b007-7ac2c52f0578",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T103439Z:403d4390-d3b2-46c6-b007-7ac2c52f0578"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 10:34:39 GMT",
+ "ETag": "W/\u002235aa3ed4-f508-49b0-a66b-062e2a568599\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": "cab04b5b-750a-4023-8381-b2bc3873e044",
+ "x-ms-correlation-request-id": "95ba9811-8e25-4ff7-9670-7171a596a005",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T103439Z:95ba9811-8e25-4ff7-9670-7171a596a005"
+ },
+ "ResponseBody": {
+ "name": "sdk-python-tests-vnet-westus2-c6cd2434",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434",
+ "etag": "W/\u002235aa3ed4-f508-49b0-a66b-062e2a568599\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-25T10:34:27.7083244Z"
+ },
+ "properties": {
+ "provisioningState": "Succeeded",
+ "resourceGuid": "f20983be-937e-41e9-b41a-3382c419d323",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "151",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "RequestBody": {
+ "properties": {
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "properties": {
+ "serviceName": "Microsoft.Netapp/volumes"
+ }
+ }
+ ]
+ }
+ },
+ "StatusCode": 201,
+ "ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/22640d1f-31b7-40e0-81e2-cf7c8dec9ed7?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "1318",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 10:34:39 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Retry-After": "3",
+ "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": "08a8406c-36da-460c-bb40-fa044eeb2252",
+ "x-ms-correlation-request-id": "630bfa40-a62e-406a-94d0-9e18352c407d",
+ "x-ms-ratelimit-remaining-subscription-writes": "1198",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T103440Z:630bfa40-a62e-406a-94d0-9e18352c407d"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434/subnets/default",
+ "etag": "W/\u0022ecf6b482-7eb9-417f-b35e-aa2c1357ea69\u0022",
+ "properties": {
+ "provisioningState": "Updating",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u0022ecf6b482-7eb9-417f-b35e-aa2c1357ea69\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/22640d1f-31b7-40e0-81e2-cf7c8dec9ed7?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 10:34:43 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Transfer-Encoding": "chunked",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-arm-service-request-id": "aff96d76-1594-4b20-b154-aa0540708008",
+ "x-ms-correlation-request-id": "1edf3808-78cb-4e70-b9bf-551f1e8494e3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11996",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T103443Z:1edf3808-78cb-4e70-b9bf-551f1e8494e3"
+ },
+ "ResponseBody": {
+ "status": "Succeeded"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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": "Mon, 25 Jul 2022 10:34:43 GMT",
+ "ETag": "W/\u002288567984-c924-4355-af74-242eb2217546\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": "0c3ace23-6361-4896-8a88-e464b71a4328",
+ "x-ms-correlation-request-id": "6e8f21de-239d-4604-a390-f21ca4e54f55",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T103444Z:6e8f21de-239d-4604-a390-f21ca4e54f55"
+ },
+ "ResponseBody": {
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434/subnets/default",
+ "etag": "W/\u002288567984-c924-4355-af74-242eb2217546\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u002288567984-c924-4355-af74-242eb2217546\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
+ }
+ },
+ {
+ "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.11.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": "Mon, 25 Jul 2022 10:34:43 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.13315.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.11.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": "Mon, 25 Jul 2022 10:34:43 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.13201.7 - WEULR2 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": "38046279-3ab8-47dd-aa78-e67960864a53",
+ "Connection": "keep-alive",
+ "Content-Length": "281",
+ "Content-Type": "application/x-www-form-urlencoded",
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.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.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
+ },
+ "RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "38046279-3ab8-47dd-aa78-e67960864a53",
+ "Content-Length": "114",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 10:34:43 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.13315.8 - NEULR1 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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434?api-version=2022-03-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "23",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/0bacdb84-0927-44dc-9ed2-57e9f0ddb057?api-version=2022-03-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "702",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Mon, 25 Jul 2022 10:34:49 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T10%3A34%3A48.9546517Z\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": "522893cf-a471-4102-8d8a-9d46f30d4c2f",
+ "x-ms-ratelimit-remaining-subscription-writes": "1197",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T103450Z:522893cf-a471-4102-8d8a-9d46f30d4c2f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A13%3A57.5648648Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T10%3A34%3A48.9546517Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:13:47.5533123Z"
+ "CreatedOnDate": "2022-07-25T10:34:46.1825109Z"
},
"properties": {
"provisioningState": "Creating"
@@ -258,21 +799,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T12:13:56.2280773Z",
+ "createdAt": "2022-07-25T10:34:48.0299282Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:13:56.2280773Z"
+ "lastModifiedAt": "2022-07-25T10:34:48.0299282Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e97c26aa-9269-4982-bb78-3e606531a852?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bacdb84-0927-44dc-9ed2-57e9f0ddb057?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -280,7 +821,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:14:31 GMT",
+ "Date": "Mon, 25 Jul 2022 10:35:20 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -288,31 +829,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "002f5d14-79a8-49b3-9862-74bd20b0a519",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T121431Z:002f5d14-79a8-49b3-9862-74bd20b0a519",
+ "x-ms-correlation-request-id": "d5594500-fbba-4554-b2a7-50fcd728c42a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T103520Z:d5594500-fbba-4554-b2a7-50fcd728c42a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e97c26aa-9269-4982-bb78-3e606531a852",
- "name": "e97c26aa-9269-4982-bb78-3e606531a852",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bacdb84-0927-44dc-9ed2-57e9f0ddb057",
+ "name": "0bacdb84-0927-44dc-9ed2-57e9f0ddb057",
"status": "Succeeded",
- "startTime": "2022-05-24T12:13:57.560339Z",
- "endTime": "2022-05-24T12:13:57.5915903Z",
+ "startTime": "2022-07-25T10:34:48.9518046Z",
+ "endTime": "2022-07-25T10:34:49.0143113Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -320,8 +861,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:14:32 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T12%3A13%3A57.5947457Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 10:35:20 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T10%3A34%3A49.0179678Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -329,35 +870,35 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a7f11aee-802f-4a1e-b27c-9cff767e7a3f",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T121433Z:a7f11aee-802f-4a1e-b27c-9cff767e7a3f",
+ "x-ms-correlation-request-id": "30b6c4d5-596c-41b3-ab66-fdbd3d372d41",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T103521Z:30b6c4d5-596c-41b3-ab66-fdbd3d372d41",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A13%3A57.5947457Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T10%3A34%3A49.0179678Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:13:47.5533123Z"
+ "CreatedOnDate": "2022-07-25T10:34:46.1825109Z"
},
"properties": {
"activeDirectories": [
{
- "activeDirectoryId": "6411f198-b5fc-ad07-113d-56dd4da0e462",
- "username": "testadmin",
+ "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b",
+ "username": "sdkuser",
"password": "****************",
- "domain": "testdomain.local",
- "dns": "10.0.2.4,10.0.2.5",
+ "domain": "sdkdomain",
+ "dns": "192.0.2.2",
"status": "Created",
- "smbServerName": "testsmb",
+ "smbServerName": "SDKSMBSeNa",
"organizationalUnit": "CN=Computers",
"aesEncryption": false,
"ldapSigning": false,
"ldapOverTLS": false,
- "allowLocalNfsUsersWithLdap": false,
+ "allowLocalNFSUsersWithLdap": false,
"encryptDCConnections": false,
"ldapSearchScope": {}
}
@@ -370,26 +911,26 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T12:13:56.2280773Z",
+ "createdAt": "2022-07-25T10:34:48.0299282Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:13:56.2280773Z"
+ "lastModifiedAt": "2022-07-25T10:34:48.0299282Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "150",
+ "Content-Length": "138",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
"size": 4398046511104,
"serviceLevel": "Premium",
@@ -399,30 +940,30 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bc28a0ce-8515-44a2-a991-15f6e57ede62?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/45ede218-e6e6-4f7f-aee5-adc2246d1e9a?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "917",
+ "Content-Length": "918",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:14:38 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T12%3A14%3A37.4810477Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 10:35:23 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T10%3A35%3A22.5263953Z\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": "7ad3b788-e021-48e1-8253-4ed90d0af591",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T121439Z:7ad3b788-e021-48e1-8253-4ed90d0af591",
+ "x-ms-correlation-request-id": "02a5be6a-92f1-4703-979c-a9b20ad3c385",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T103523Z:02a5be6a-92f1-4703-979c-a9b20ad3c385",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A14%3A37.4810477Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T10%3A35%3A22.5263953Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:14:34.7917502Z"
+ "CreatedOnDate": "2022-07-25T10:35:21.2924419Z"
},
"properties": {
"serviceLevel": "Premium",
@@ -436,21 +977,21 @@
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T12:14:37.0445335Z",
+ "createdAt": "2022-07-25T10:35:22.3463534Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:14:37.0445335Z"
+ "lastModifiedAt": "2022-07-25T10:35:22.3463534Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bc28a0ce-8515-44a2-a991-15f6e57ede62?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/45ede218-e6e6-4f7f-aee5-adc2246d1e9a?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -458,7 +999,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:15:09 GMT",
+ "Date": "Mon, 25 Jul 2022 10:35:53 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -466,31 +1007,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "608894f3-2344-4a5b-8be7-b0b8a6045bcb",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T121510Z:608894f3-2344-4a5b-8be7-b0b8a6045bcb",
+ "x-ms-correlation-request-id": "3257e39e-77da-46ea-9dc3-46855747a8ed",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T103553Z:3257e39e-77da-46ea-9dc3-46855747a8ed",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bc28a0ce-8515-44a2-a991-15f6e57ede62",
- "name": "bc28a0ce-8515-44a2-a991-15f6e57ede62",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/45ede218-e6e6-4f7f-aee5-adc2246d1e9a",
+ "name": "45ede218-e6e6-4f7f-aee5-adc2246d1e9a",
"status": "Succeeded",
- "startTime": "2022-05-24T12:14:37.4814546Z",
- "endTime": "2022-05-24T12:14:38.0283621Z",
+ "startTime": "2022-07-25T10:35:22.5276086Z",
+ "endTime": "2022-07-25T10:35:22.7935985Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -498,8 +1039,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:15:10 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T12%3A14%3A38.0213228Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 10:35:53 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T10%3A35%3A22.7844236Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -507,22 +1048,22 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "110b34bc-2f2b-44e3-b1a6-0b771c266e1f",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T121511Z:110b34bc-2f2b-44e3-b1a6-0b771c266e1f",
+ "x-ms-correlation-request-id": "498da592-ce4d-494d-9917-644b015ab2b1",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T103554Z:498da592-ce4d-494d-9917-644b015ab2b1",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A14%3A38.0213228Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T10%3A35%3A22.7844236Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:14:34.7917502Z"
+ "CreatedOnDate": "2022-07-25T10:35:21.2924419Z"
},
"properties": {
- "poolId": "72d233a1-23a8-25ce-1846-e622b16f4143",
+ "poolId": "10de9416-fe4e-72d6-6df9-abdf1b0750f1",
"serviceLevel": "Premium",
"size": 4398046511104,
"qosType": "Auto",
@@ -531,38 +1072,30 @@
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T12:14:37.0445335Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:14:37.0445335Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c6cd2434?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "800",
+ "Content-Length": "779",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-c6cd2434",
"serviceLevel": "Premium",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -576,45 +1109,44 @@
"avsDataStore": "Disabled",
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled"
+ "defaultGroupQuotaInKiBs": 0
}
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eb80ee16-b6a1-4a0a-bd77-c99590b7f03e?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c7271a01-fda3-43f5-bf49-aa20e2cbf897?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Length": "1567",
+ "Content-Length": "1577",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:15:29 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T12%3A15%3A27.8857297Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 10:36:06 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T10%3A36%3A05.9434965Z\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": "073d9241-a07a-4cea-bda8-52507e000918",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T121529Z:073d9241-a07a-4cea-bda8-52507e000918",
+ "x-ms-correlation-request-id": "0023b898-bd15-41e7-af49-5ab18724640e",
+ "x-ms-ratelimit-remaining-subscription-writes": "1195",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T103606Z:0023b898-bd15-41e7-af49-5ab18724640e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A15%3A27.8857297Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T10%3A36%3A05.9434965Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:15:22.2097996Z"
+ "CreatedOnDate": "2022-07-25T10:36:04.5486400Z"
},
"properties": {
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-c6cd2434",
"usageThreshold": 107374182400,
"protocolTypes": [
"NFSv3"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -629,28 +1161,27 @@
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
"provisioningState": "Creating"
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"createdByType": "Application",
- "createdAt": "2022-05-24T12:15:25.4198376Z",
+ "createdAt": "2022-07-25T10:36:05.6571037Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:15:25.4198376Z"
+ "lastModifiedAt": "2022-07-25T10:36:05.6571037Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eb80ee16-b6a1-4a0a-bd77-c99590b7f03e?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c7271a01-fda3-43f5-bf49-aa20e2cbf897?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -658,7 +1189,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:16:01 GMT",
+ "Date": "Mon, 25 Jul 2022 10:36:37 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -666,31 +1197,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "94f2d05e-e611-4e8a-b6bc-941196669fa9",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T121602Z:94f2d05e-e611-4e8a-b6bc-941196669fa9",
+ "x-ms-correlation-request-id": "50d3dc7b-c1a2-4c00-9f5c-a0ba3d4fc92c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T103637Z:50d3dc7b-c1a2-4c00-9f5c-a0ba3d4fc92c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eb80ee16-b6a1-4a0a-bd77-c99590b7f03e",
- "name": "eb80ee16-b6a1-4a0a-bd77-c99590b7f03e",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c7271a01-fda3-43f5-bf49-aa20e2cbf897",
+ "name": "c7271a01-fda3-43f5-bf49-aa20e2cbf897",
"status": "Creating",
- "startTime": "2022-05-24T12:15:27.8885072Z",
+ "startTime": "2022-07-25T10:36:05.9363275Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/eb80ee16-b6a1-4a0a-bd77-c99590b7f03e?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c7271a01-fda3-43f5-bf49-aa20e2cbf897?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -698,7 +1229,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:16:32 GMT",
+ "Date": "Mon, 25 Jul 2022 10:37:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -706,31 +1237,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9d9a76ba-4a20-423b-bf05-a83f3f7097a1",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T121633Z:9d9a76ba-4a20-423b-bf05-a83f3f7097a1",
+ "x-ms-correlation-request-id": "a1428fda-263e-4074-863a-b228e1d836a2",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T103707Z:a1428fda-263e-4074-863a-b228e1d836a2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eb80ee16-b6a1-4a0a-bd77-c99590b7f03e",
- "name": "eb80ee16-b6a1-4a0a-bd77-c99590b7f03e",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c7271a01-fda3-43f5-bf49-aa20e2cbf897",
+ "name": "c7271a01-fda3-43f5-bf49-aa20e2cbf897",
"status": "Creating",
- "startTime": "2022-05-24T12:15:27.8885072Z",
+ "startTime": "2022-07-25T10:36:05.9363275Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/eb80ee16-b6a1-4a0a-bd77-c99590b7f03e?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c7271a01-fda3-43f5-bf49-aa20e2cbf897?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -738,7 +1269,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:17:04 GMT",
+ "Date": "Mon, 25 Jul 2022 10:37:37 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -746,31 +1277,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7230347a-baab-4898-ad17-b2dcfe1ee931",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T121705Z:7230347a-baab-4898-ad17-b2dcfe1ee931",
+ "x-ms-correlation-request-id": "ff8ac1dc-bff9-4150-b638-f71577d7dcc7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T103737Z:ff8ac1dc-bff9-4150-b638-f71577d7dcc7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eb80ee16-b6a1-4a0a-bd77-c99590b7f03e",
- "name": "eb80ee16-b6a1-4a0a-bd77-c99590b7f03e",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c7271a01-fda3-43f5-bf49-aa20e2cbf897",
+ "name": "c7271a01-fda3-43f5-bf49-aa20e2cbf897",
"status": "Creating",
- "startTime": "2022-05-24T12:15:27.8885072Z",
+ "startTime": "2022-07-25T10:36:05.9363275Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/eb80ee16-b6a1-4a0a-bd77-c99590b7f03e?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c7271a01-fda3-43f5-bf49-aa20e2cbf897?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -778,7 +1309,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:17:35 GMT",
+ "Date": "Mon, 25 Jul 2022 10:38:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -786,31 +1317,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "670d4453-7314-4c6b-9abd-018d7f1b2497",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T121736Z:670d4453-7314-4c6b-9abd-018d7f1b2497",
+ "x-ms-correlation-request-id": "c863637c-21ab-45d1-a922-0dfe15971f65",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T103808Z:c863637c-21ab-45d1-a922-0dfe15971f65",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eb80ee16-b6a1-4a0a-bd77-c99590b7f03e",
- "name": "eb80ee16-b6a1-4a0a-bd77-c99590b7f03e",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c7271a01-fda3-43f5-bf49-aa20e2cbf897",
+ "name": "c7271a01-fda3-43f5-bf49-aa20e2cbf897",
"status": "Creating",
- "startTime": "2022-05-24T12:15:27.8885072Z",
+ "startTime": "2022-07-25T10:36:05.9363275Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/eb80ee16-b6a1-4a0a-bd77-c99590b7f03e?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c7271a01-fda3-43f5-bf49-aa20e2cbf897?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -818,7 +1349,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:18:06 GMT",
+ "Date": "Mon, 25 Jul 2022 10:38:37 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -826,31 +1357,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7e0498da-98c8-4561-9b1d-285e179ac402",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T121806Z:7e0498da-98c8-4561-9b1d-285e179ac402",
+ "x-ms-correlation-request-id": "2c1be46e-dc1a-4807-a377-77b24420fdcd",
+ "x-ms-ratelimit-remaining-subscription-reads": "11986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T103838Z:2c1be46e-dc1a-4807-a377-77b24420fdcd",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eb80ee16-b6a1-4a0a-bd77-c99590b7f03e",
- "name": "eb80ee16-b6a1-4a0a-bd77-c99590b7f03e",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c7271a01-fda3-43f5-bf49-aa20e2cbf897",
+ "name": "c7271a01-fda3-43f5-bf49-aa20e2cbf897",
"status": "Creating",
- "startTime": "2022-05-24T12:15:27.8885072Z",
+ "startTime": "2022-07-25T10:36:05.9363275Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/eb80ee16-b6a1-4a0a-bd77-c99590b7f03e?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c7271a01-fda3-43f5-bf49-aa20e2cbf897?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -858,7 +1389,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:18:36 GMT",
+ "Date": "Mon, 25 Jul 2022 10:39:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -866,31 +1397,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2d60e02b-2663-491e-a40b-5f07aa6bc937",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T121837Z:2d60e02b-2663-491e-a40b-5f07aa6bc937",
+ "x-ms-correlation-request-id": "3b1c9702-57a8-4f25-b537-8eb9625197ee",
+ "x-ms-ratelimit-remaining-subscription-reads": "11985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T103908Z:3b1c9702-57a8-4f25-b537-8eb9625197ee",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eb80ee16-b6a1-4a0a-bd77-c99590b7f03e",
- "name": "eb80ee16-b6a1-4a0a-bd77-c99590b7f03e",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c7271a01-fda3-43f5-bf49-aa20e2cbf897",
+ "name": "c7271a01-fda3-43f5-bf49-aa20e2cbf897",
"status": "Creating",
- "startTime": "2022-05-24T12:15:27.8885072Z",
+ "startTime": "2022-07-25T10:36:05.9363275Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/eb80ee16-b6a1-4a0a-bd77-c99590b7f03e?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c7271a01-fda3-43f5-bf49-aa20e2cbf897?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -898,7 +1429,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:19:07 GMT",
+ "Date": "Mon, 25 Jul 2022 10:39:38 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -906,31 +1437,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7f576d4d-96e0-470a-b4ae-205905935198",
- "x-ms-ratelimit-remaining-subscription-reads": "11988",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T121908Z:7f576d4d-96e0-470a-b4ae-205905935198",
+ "x-ms-correlation-request-id": "d36e4261-85a0-4b2c-88c2-bbc30e335440",
+ "x-ms-ratelimit-remaining-subscription-reads": "11984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T103939Z:d36e4261-85a0-4b2c-88c2-bbc30e335440",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eb80ee16-b6a1-4a0a-bd77-c99590b7f03e",
- "name": "eb80ee16-b6a1-4a0a-bd77-c99590b7f03e",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c7271a01-fda3-43f5-bf49-aa20e2cbf897",
+ "name": "c7271a01-fda3-43f5-bf49-aa20e2cbf897",
"status": "Creating",
- "startTime": "2022-05-24T12:15:27.8885072Z",
+ "startTime": "2022-07-25T10:36:05.9363275Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/eb80ee16-b6a1-4a0a-bd77-c99590b7f03e?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c7271a01-fda3-43f5-bf49-aa20e2cbf897?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -938,7 +1469,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:19:38 GMT",
+ "Date": "Mon, 25 Jul 2022 10:40:08 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -946,31 +1477,71 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fc3c43a3-3e51-4bd5-a736-d36fe1d4024e",
- "x-ms-ratelimit-remaining-subscription-reads": "11987",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T121938Z:fc3c43a3-3e51-4bd5-a736-d36fe1d4024e",
+ "x-ms-correlation-request-id": "ea833e9e-dea0-4f9f-9348-823c557a86b2",
+ "x-ms-ratelimit-remaining-subscription-reads": "11983",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T104009Z:ea833e9e-dea0-4f9f-9348-823c557a86b2",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c7271a01-fda3-43f5-bf49-aa20e2cbf897",
+ "name": "c7271a01-fda3-43f5-bf49-aa20e2cbf897",
+ "status": "Creating",
+ "startTime": "2022-07-25T10:36:05.9363275Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/c7271a01-fda3-43f5-bf49-aa20e2cbf897?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Mon, 25 Jul 2022 10:40: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": "79c9466c-607e-4875-8eea-409ddc7701b9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T104040Z:79c9466c-607e-4875-8eea-409ddc7701b9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eb80ee16-b6a1-4a0a-bd77-c99590b7f03e",
- "name": "eb80ee16-b6a1-4a0a-bd77-c99590b7f03e",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c7271a01-fda3-43f5-bf49-aa20e2cbf897",
+ "name": "c7271a01-fda3-43f5-bf49-aa20e2cbf897",
"status": "Succeeded",
- "startTime": "2022-05-24T12:15:27.8885072Z",
- "endTime": "2022-05-24T12:19:30.9737266Z",
+ "startTime": "2022-07-25T10:36:05.9363275Z",
+ "endTime": "2022-07-25T10:40:09.6930808Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c6cd2434?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -978,8 +1549,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:19:39 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T12%3A19%3A30.9686866Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 10:40:41 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T10%3A40%3A09.6853626Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -987,24 +1558,24 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d4a1e202-8750-4d2a-b875-c31d84f57653",
- "x-ms-ratelimit-remaining-subscription-reads": "11986",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T121939Z:d4a1e202-8750-4d2a-b875-c31d84f57653",
+ "x-ms-correlation-request-id": "81b7366d-a7a3-4708-9b37-d73bb8c0a03c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11981",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T104041Z:81b7366d-a7a3-4708-9b37-d73bb8c0a03c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A19%3A30.9686866Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T10%3A40%3A09.6853626Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:15:22.2097996Z"
+ "CreatedOnDate": "2022-07-25T10:36:04.5486400Z"
},
"properties": {
- "fileSystemId": "cb5452db-6ab8-30a2-59ec-0c59487e15ae",
+ "fileSystemId": "52c68c35-bf53-338f-69a2-93be862ad441",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-c6cd2434",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1030,10 +1601,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_29d86460",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_19a60a35",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1045,9 +1616,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "cb5452db-6ab8-30a2-59ec-0c59487e15ae",
- "fileSystemId": "cb5452db-6ab8-30a2-59ec-0c59487e15ae",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "52c68c35-bf53-338f-69a2-93be862ad441",
+ "fileSystemId": "52c68c35-bf53-338f-69a2-93be862ad441",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1059,37 +1630,28 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"maximumNumberOfFiles": 100000000,
- "encrypted": true,
"provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T12:15:25.4198376Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:15:25.4198376Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c6cd2434?api-version=2022-03-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "772",
+ "Content-Length": "783",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "southcentralusstage",
+ "location": "westus2",
"properties": {
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-c6cd2434",
"serviceLevel": "Premium",
"usageThreshold": 214748364800,
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1109,12 +1671,12 @@
},
"StatusCode": 200,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/34dbafea-8030-4d29-b0c4-dd3c7ae65668?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f35a715e-e7fb-42ba-b7bc-cf535641fabf?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:19:42 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T12%3A19%3A41.1308046Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 10:40:43 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T10%3A40%3A41.5339285Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1122,25 +1684,25 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4ed2f4bb-49db-42b7-b3b0-8332a1211f0c",
- "x-ms-ratelimit-remaining-subscription-writes": "1196",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T121943Z:4ed2f4bb-49db-42b7-b3b0-8332a1211f0c",
+ "x-ms-correlation-request-id": "3bc974a6-5a12-4a19-9014-c5fd7a5c8e66",
+ "x-ms-ratelimit-remaining-subscription-writes": "1194",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T104043Z:3bc974a6-5a12-4a19-9014-c5fd7a5c8e66",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A19%3A41.1308046Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T10%3A40%3A41.5339285Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:15:22.2097996Z"
+ "CreatedOnDate": "2022-07-25T10:36:04.5486400Z"
},
"properties": {
"provisioningState": "Updating",
- "fileSystemId": "cb5452db-6ab8-30a2-59ec-0c59487e15ae",
+ "fileSystemId": "52c68c35-bf53-338f-69a2-93be862ad441",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-c6cd2434",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1166,10 +1728,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_29d86460",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_19a60a35",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "42698678-d0a3-a4da-5347-f9836ac1cd13",
+ "networkSiblingSetId": "964a1b1c-ce1a-475e-3b4c-4f01b1c8c366",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1181,9 +1743,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "cb5452db-6ab8-30a2-59ec-0c59487e15ae",
- "fileSystemId": "cb5452db-6ab8-30a2-59ec-0c59487e15ae",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "52c68c35-bf53-338f-69a2-93be862ad441",
+ "fileSystemId": "52c68c35-bf53-338f-69a2-93be862ad441",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 6.25,
@@ -1194,27 +1756,18 @@
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T12:15:25.4198376Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:15:25.4198376Z"
+ "maximumNumberOfFiles": 100000000
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/34dbafea-8030-4d29-b0c4-dd3c7ae65668?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f35a715e-e7fb-42ba-b7bc-cf535641fabf?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1222,7 +1775,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:20:14 GMT",
+ "Date": "Mon, 25 Jul 2022 10:41:13 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1230,31 +1783,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "def61f10-4057-4ed7-ac85-b6e67dac88ae",
- "x-ms-ratelimit-remaining-subscription-reads": "11985",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T122014Z:def61f10-4057-4ed7-ac85-b6e67dac88ae",
+ "x-ms-correlation-request-id": "424a93b6-b2c6-4456-8d40-fd7a8d3b209c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11980",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T104113Z:424a93b6-b2c6-4456-8d40-fd7a8d3b209c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/34dbafea-8030-4d29-b0c4-dd3c7ae65668",
- "name": "34dbafea-8030-4d29-b0c4-dd3c7ae65668",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f35a715e-e7fb-42ba-b7bc-cf535641fabf",
+ "name": "f35a715e-e7fb-42ba-b7bc-cf535641fabf",
"status": "Succeeded",
- "startTime": "2022-05-24T12:19:41.1308968Z",
- "endTime": "2022-05-24T12:19:52.4224234Z",
+ "startTime": "2022-07-25T10:40:41.5337325Z",
+ "endTime": "2022-07-25T10:40:48.028111Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c6cd2434?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1262,8 +1815,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:20:16 GMT",
- "ETag": "W/\u0022datetime\u00272022-05-24T12%3A19%3A52.4152724Z\u0027\u0022",
+ "Date": "Mon, 25 Jul 2022 10:41:13 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-25T10%3A40%3A48.025171Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1271,31 +1824,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "bfc751ef-ac3a-44a4-abf6-2f139b23ab9a",
- "x-ms-ratelimit-remaining-subscription-reads": "11984",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T122016Z:bfc751ef-ac3a-44a4-abf6-2f139b23ab9a",
+ "x-ms-correlation-request-id": "0314b164-076c-4402-964a-fc16c1a2d114",
+ "x-ms-ratelimit-remaining-subscription-reads": "11979",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T104114Z:0314b164-076c-4402-964a-fc16c1a2d114",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A19%3A52.4152724Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T10%3A40%3A48.025171Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:19:40.4996641Z"
+ "CreatedOnDate": "2022-07-25T10:40:41.2319872Z"
},
"properties": {
"provisioningState": "Succeeded",
- "fileSystemId": "cb5452db-6ab8-30a2-59ec-0c59487e15ae",
+ "fileSystemId": "52c68c35-bf53-338f-69a2-93be862ad441",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-c6cd2434",
"usageThreshold": 214748364800,
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_29d86460",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_19a60a35",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434/subnets/default",
"networkFeatures": "Basic",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1307,9 +1860,9 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "cb5452db-6ab8-30a2-59ec-0c59487e15ae",
- "fileSystemId": "cb5452db-6ab8-30a2-59ec-0c59487e15ae",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "52c68c35-bf53-338f-69a2-93be862ad441",
+ "fileSystemId": "52c68c35-bf53-338f-69a2-93be862ad441",
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 12.5,
@@ -1319,57 +1872,53 @@
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "encrypted": true
+ "maximumNumberOfFiles": 100000000
},
"systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T12:15:25.4198376Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:19:40.9690353Z"
+ "lastModifiedAt": "2022-07-25T10:40:41.3897446Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c6cd2434?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/southcentralusstage/operationResults/ce249892-3670-4c36-b6a4-66462b5f8e39?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3be848bd-58d1-46eb-8b0b-270765c1db6b?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 24 May 2022 12:20:18 GMT",
+ "Date": "Mon, 25 Jul 2022 10:41:14 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ce249892-3670-4c36-b6a4-66462b5f8e39?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3be848bd-58d1-46eb-8b0b-270765c1db6b?api-version=2022-03-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": "35a99223-84fe-4777-8ab6-8cf1b7b80a6f",
+ "x-ms-correlation-request-id": "bbcf49c7-3d7f-4e87-8858-51094ce26058",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T122018Z:35a99223-84fe-4777-8ab6-8cf1b7b80a6f",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T104114Z:bbcf49c7-3d7f-4e87-8858-51094ce26058",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ce249892-3670-4c36-b6a4-66462b5f8e39?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3be848bd-58d1-46eb-8b0b-270765c1db6b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1377,7 +1926,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:20:48 GMT",
+ "Date": "Mon, 25 Jul 2022 10:41:44 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1385,31 +1934,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4fd4d5a5-f94c-488c-af7c-cb1d562ee18f",
- "x-ms-ratelimit-remaining-subscription-reads": "11983",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T122049Z:4fd4d5a5-f94c-488c-af7c-cb1d562ee18f",
+ "x-ms-correlation-request-id": "51b09119-a2d3-4807-944e-4015aa9bd86b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11978",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T104145Z:51b09119-a2d3-4807-944e-4015aa9bd86b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ce249892-3670-4c36-b6a4-66462b5f8e39",
- "name": "ce249892-3670-4c36-b6a4-66462b5f8e39",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3be848bd-58d1-46eb-8b0b-270765c1db6b",
+ "name": "3be848bd-58d1-46eb-8b0b-270765c1db6b",
"status": "Deleting",
- "startTime": "2022-05-24T12:20:18.3935269Z",
+ "startTime": "2022-07-25T10:41:14.5762556Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/ce249892-3670-4c36-b6a4-66462b5f8e39?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3be848bd-58d1-46eb-8b0b-270765c1db6b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1417,7 +1966,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:21:19 GMT",
+ "Date": "Mon, 25 Jul 2022 10:42:14 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1425,31 +1974,71 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "47b3ced3-9865-49c5-8966-48e3aba5b1e9",
- "x-ms-ratelimit-remaining-subscription-reads": "11982",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T122119Z:47b3ced3-9865-49c5-8966-48e3aba5b1e9",
+ "x-ms-correlation-request-id": "16e4e3c0-faed-4c12-ad92-0116bce55388",
+ "x-ms-ratelimit-remaining-subscription-reads": "11977",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T104215Z:16e4e3c0-faed-4c12-ad92-0116bce55388",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3be848bd-58d1-46eb-8b0b-270765c1db6b",
+ "name": "3be848bd-58d1-46eb-8b0b-270765c1db6b",
+ "status": "Deleting",
+ "startTime": "2022-07-25T10:41:14.5762556Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/3be848bd-58d1-46eb-8b0b-270765c1db6b?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Mon, 25 Jul 2022 10:42: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": "bebf2278-1939-4d2b-9f1b-6e085ac03922",
+ "x-ms-ratelimit-remaining-subscription-reads": "11976",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T104245Z:bebf2278-1939-4d2b-9f1b-6e085ac03922",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ce249892-3670-4c36-b6a4-66462b5f8e39",
- "name": "ce249892-3670-4c36-b6a4-66462b5f8e39",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3be848bd-58d1-46eb-8b0b-270765c1db6b",
+ "name": "3be848bd-58d1-46eb-8b0b-270765c1db6b",
"status": "Succeeded",
- "startTime": "2022-05-24T12:20:18.3935269Z",
- "endTime": "2022-05-24T12:21:03.7678951Z",
+ "startTime": "2022-07-25T10:41:14.5762556Z",
+ "endTime": "2022-07-25T10:42:39.565382Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/southcentralusstage/operationResults/ce249892-3670-4c36-b6a4-66462b5f8e39?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3be848bd-58d1-46eb-8b0b-270765c1db6b?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1457,7 +2046,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:21:20 GMT",
+ "Date": "Mon, 25 Jul 2022 10:42:45 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1465,46 +2054,46 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "23c774f3-9b98-4078-ae6d-5f02f83b00e7",
- "x-ms-ratelimit-remaining-subscription-reads": "11981",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T122120Z:23c774f3-9b98-4078-ae6d-5f02f83b00e7",
+ "x-ms-correlation-request-id": "1ba67cbc-c699-4f21-a8d7-46b3dc85ac60",
+ "x-ms-ratelimit-remaining-subscription-reads": "11975",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T104245Z:1ba67cbc-c699-4f21-a8d7-46b3dc85ac60",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-05-24T12%3A20%3A58.6429379Z\u0027\u0022",
- "location": "southcentralusstage",
+ "etag": "W/\u0022datetime\u00272022-07-25T10%3A41%3A14.5698075Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-05-24T12:19:40.4996641Z"
+ "CreatedOnDate": "2022-07-25T10:40:41.2319872Z"
},
"properties": {
- "fileSystemId": "cb5452db-6ab8-30a2-59ec-0c59487e15ae",
+ "fileSystemId": "52c68c35-bf53-338f-69a2-93be862ad441",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "93ade68e-e530-11e9-a696-c27beff6b5ea",
+ "creationToken": "sdk-py-tests-vol-3-c6cd2434",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 214748364800,
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "DELETED_baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_29d86460",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_19a60a35",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "72d233a1-23a8-25ce-1846-e622b16f4143",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c6cd2434",
+ "poolId": "10de9416-fe4e-72d6-6df9-abdf1b0750f1",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "cb5452db-6ab8-30a2-59ec-0c59487e15ae",
- "fileSystemId": "cb5452db-6ab8-30a2-59ec-0c59487e15ae",
+ "mountTargetId": "52c68c35-bf53-338f-69a2-93be862ad441",
+ "fileSystemId": "52c68c35-bf53-338f-69a2-93be862ad441",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
"throughputMibps": 12.5,
@@ -1522,433 +2111,292 @@
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
"encrypted": true,
- "smbAccessBasedEnumeration": "Disabled",
- "smbNonBrowsable": "Disabled",
"provisioningState": "Deleting"
},
"systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T12:15:25.4198376Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
"lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:19:40.9690353Z"
+ "lastModifiedAt": "2022-07-25T10:40:41.3897446Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
- "RequestMethod": "DELETE",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
- },
- "RequestBody": null,
- "StatusCode": 202,
- "ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/102b61b5-f396-4797-99d8-32d94877eb74?api-version=2022-01-01",
- "Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Tue, 24 May 2022 12:25:27 GMT",
- "Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/102b61b5-f396-4797-99d8-32d94877eb74?api-version=2022-01-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": "666e52d2-501a-48e9-8df7-a4db00cf7f2b",
- "x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T122528Z:666e52d2-501a-48e9-8df7-a4db00cf7f2b",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": null
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/102b61b5-f396-4797-99d8-32d94877eb74?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c6cd2434?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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": "320",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:25:57 GMT",
+ "Date": "Mon, 25 Jul 2022 10:46: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": "3113b2ac-6d70-439e-a3b0-16b056cb6edf",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T122558Z:3113b2ac-6d70-439e-a3b0-16b056cb6edf",
- "X-Powered-By": "ASP.NET"
+ "x-ms-correlation-request-id": "a3dcb95a-5307-410b-9a1a-9d8c8ffc4de4",
+ "x-ms-failure-cause": "gateway",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T104611Z:a3dcb95a-5307-410b-9a1a-9d8c8ffc4de4"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/102b61b5-f396-4797-99d8-32d94877eb74",
- "name": "102b61b5-f396-4797-99d8-32d94877eb74",
- "status": "Succeeded",
- "startTime": "2022-05-24T12:25:27.8861147Z",
- "endTime": "2022-05-24T12:25:31.2926176Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "error": {
+ "code": "ResourceNotFound",
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c6cd2434\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/102b61b5-f396-4797-99d8-32d94877eb74?api-version=2022-01-01\u0026operationResultResponseType=Location",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-vol-3-c6cd2434/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
+ "RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "0",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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, 24 May 2022 12:25:58 GMT",
+ "Date": "Mon, 25 Jul 2022 10:46: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": "6bb1713c-4860-4c83-8aaf-a09ea24dbdfc",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T122558Z:6bb1713c-4860-4c83-8aaf-a09ea24dbdfc",
- "X-Powered-By": "ASP.NET"
+ "x-ms-correlation-request-id": "c0bb8c09-d36b-4947-89a5-f08695b9ed7d",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14999",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T104622Z:c0bb8c09-d36b-4947-89a5-f08695b9ed7d"
},
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools",
- "etag": "W/\u0022datetime\u00272022-05-24T12%3A25%3A27.880107Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-24T12:14:34.7917502Z"
- },
- "properties": {
- "poolId": "72d233a1-23a8-25ce-1846-e622b16f4143",
- "serviceLevel": "Premium",
- "size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "qosType": "Auto",
- "totalThroughputMibps": 256.0,
- "utilizedThroughputMibps": 0.0,
- "encryptionType": "Single",
- "coolAccess": false,
- "provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T12:14:37.0445335Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:14:37.0445335Z"
- }
- }
+ "ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-vol-3-c6cd2434/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 12:26:09 GMT",
+ "Date": "Mon, 25 Jul 2022 10:46:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f64a048c-b7e9-4038-99e0-f0a40f6bd739",
+ "x-ms-correlation-request-id": "ab775040-85bb-4b7b-8578-1b310e66c6d5",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T122609Z:f64a048c-b7e9-4038-99e0-f0a40f6bd739"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T104633Z:ab775040-85bb-4b7b-8578-1b310e66c6d5"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-vol-3-c6cd2434/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 12:26:20 GMT",
+ "Date": "Mon, 25 Jul 2022 10:46:43 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d2669785-af85-4a03-8631-777da7efb415",
+ "x-ms-correlation-request-id": "a94a1797-12f8-4ded-a622-d2ed05e06ee9",
"x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T122621Z:d2669785-af85-4a03-8631-777da7efb415"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T104644Z:a94a1797-12f8-4ded-a622-d2ed05e06ee9"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-vol-3-c6cd2434/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 12:26:31 GMT",
+ "Date": "Mon, 25 Jul 2022 10:46:53 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "faab328e-4aa0-495d-8e8a-e4dc25af48b3",
+ "x-ms-correlation-request-id": "1830401c-6c06-4163-8daa-4c2cf1320e91",
"x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T122631Z:faab328e-4aa0-495d-8e8a-e4dc25af48b3"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T104654Z:1830401c-6c06-4163-8daa-4c2cf1320e91"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-vol-3-c6cd2434/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Tue, 24 May 2022 12:26:42 GMT",
+ "Date": "Mon, 25 Jul 2022 10:47:04 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "25e77b53-73d5-4be3-957e-44474c7bcddc",
+ "x-ms-correlation-request-id": "d30a3402-2d8d-4e78-8718-b5421633ffc2",
"x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T122642Z:25e77b53-73d5-4be3-957e-44474c7bcddc"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T104704Z:d30a3402-2d8d-4e78-8718-b5421633ffc2"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-vol-3-c6cd2434/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "284",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:26:52 GMT",
+ "Date": "Mon, 25 Jul 2022 10:47:14 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "20a48b54-89d7-43bc-adf5-6376a094c627",
+ "x-ms-correlation-request-id": "0b717c01-89e0-4507-80d4-15465ecca33e",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T122653Z:20a48b54-89d7-43bc-adf5-6376a094c627"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T104715Z:0b717c01-89e0-4507-80d4-15465ecca33e"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-vol-3-c6cd2434/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-vol-3-c6cd2434?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
- "StatusCode": 202,
+ "StatusCode": 204,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/65eac8b7-14e1-4382-b5e8-64b6df51dd63?api-version=2022-01-01",
"Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Tue, 24 May 2022 12:26:55 GMT",
+ "Date": "Mon, 25 Jul 2022 10:47:15 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/65eac8b7-14e1-4382-b5e8-64b6df51dd63?api-version=2022-01-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": "a38168da-938e-4040-8823-735ccce57710",
+ "x-ms-correlation-request-id": "49ee3ba3-25cc-493a-8c92-8cbd3ad1464a",
"x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T122655Z:a38168da-938e-4040-8823-735ccce57710",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T104715Z:49ee3ba3-25cc-493a-8c92-8cbd3ad1464a"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/65eac8b7-14e1-4382-b5e8-64b6df51dd63?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.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, 24 May 2022 12:27: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": "dbcb3ea5-7bae-4d2d-8925-55a3b1a5defb",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T122726Z:dbcb3ea5-7bae-4d2d-8925-55a3b1a5defb",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/65eac8b7-14e1-4382-b5e8-64b6df51dd63",
- "name": "65eac8b7-14e1-4382-b5e8-64b6df51dd63",
- "status": "Succeeded",
- "startTime": "2022-05-24T12:26:55.7855366Z",
- "endTime": "2022-05-24T12:26:55.8168149Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/65eac8b7-14e1-4382-b5e8-64b6df51dd63?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-vol-3-c6cd2434?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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": "250",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:27:27 GMT",
+ "Date": "Mon, 25 Jul 2022 10:47: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": "c8e577d4-d8c8-49a8-bdf4-983a0bbcc5de",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T122727Z:c8e577d4-d8c8-49a8-bdf4-983a0bbcc5de",
- "X-Powered-By": "ASP.NET"
+ "x-ms-correlation-request-id": "a28ad848-fea6-46b9-b789-d6c150b8c745",
+ "x-ms-failure-cause": "gateway",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T104715Z:a28ad848-fea6-46b9-b789-d6c150b8c745"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
- "type": "Microsoft.NetApp/netAppAccounts",
- "etag": "W/\u0022datetime\u00272022-05-24T12%3A26%3A55.7892318Z\u0027\u0022",
- "location": "southcentralusstage",
- "tags": {
- "CreatedOnDate": "2022-05-24T12:13:47.5533123Z"
- },
- "properties": {
- "encryption": {
- "keySource": "Microsoft.NetApp"
- },
- "provisioningState": "Deleting"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdByType": "Application",
- "createdAt": "2022-05-24T12:13:56.2280773Z",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedByType": "Application",
- "lastModifiedAt": "2022-05-24T12:13:56.2280773Z"
+ "error": {
+ "code": "ResourceNotFound",
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-vol-3-c6cd2434\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434?api-version=2021-08-01",
+ "RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.8.10 (macOS-12.3.1-x86_64-i386-64bit)"
+ "Content-Length": "0",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
- "StatusCode": 404,
+ "StatusCode": 202,
"ResponseHeaders": {
+ "Azure-AsyncNotification": "Enabled",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1edc2035-9a3c-4caa-86a0-026a601a1f44?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Length": "243",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Tue, 24 May 2022 12:27:29 GMT",
+ "Content-Length": "0",
+ "Date": "Mon, 25 Jul 2022 10:47:16 GMT",
"Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/1edc2035-9a3c-4caa-86a0-026a601a1f44?api-version=2021-08-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-correlation-request-id": "896ddddf-e043-465a-a907-2fe6bc8f3f73",
- "x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "UAECENTRAL:20220524T122730Z:896ddddf-e043-465a-a907-2fe6bc8f3f73"
+ "x-ms-arm-service-request-id": "5a7ffa96-282d-476e-b74e-905f7159ee60",
+ "x-ms-correlation-request-id": "ad68727c-f20c-472f-8120-08fe39bb7476",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220725T104716Z:ad68727c-f20c-472f-8120-08fe39bb7476"
},
- "ResponseBody": {
- "error": {
- "code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
- }
- }
+ "ResponseBody": null
}
],
"Variables": {}
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 5dd0b1ca459f..af6a85748b5c 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.0b2 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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": "Thu, 09 Jun 2022 08:39:43 GMT",
+ "Date": "Wed, 27 Jul 2022 22:10:53 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.12851.7 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - 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.0b2 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.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": "Thu, 09 Jun 2022 08:39:43 GMT",
+ "Date": "Wed, 27 Jul 2022 22:10:53 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.12851.7 - WEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - WEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -172,16 +172,16 @@
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
- "client-request-id": "9d171664-6267-455b-8c0e-a77892004b8c",
+ "client-request-id": "bca1d9fb-9ecf-4b90-82bc-48a16332c167",
"Connection": "keep-alive",
"Content-Length": "281",
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "cookie;",
- "User-Agent": "azsdk-python-identity/1.11.0b2 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)",
+ "User-Agent": "azsdk-python-identity/1.11.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-ms-lib-capability": "retry-after, h429"
@@ -190,10 +190,10 @@
"StatusCode": 200,
"ResponseHeaders": {
"Cache-Control": "no-store, no-cache",
- "client-request-id": "9d171664-6267-455b-8c0e-a77892004b8c",
+ "client-request-id": "bca1d9fb-9ecf-4b90-82bc-48a16332c167",
"Content-Length": "114",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:39:43 GMT",
+ "Date": "Wed, 27 Jul 2022 22:10:53 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.12851.7 - NEULR1 ProdSlices",
+ "x-ms-ests-server": "2.1.13355.6 - NEULR1 ProdSlices",
"X-XSS-Protection": "0"
},
"ResponseBody": {
@@ -213,72 +213,79 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "22",
+ "Content-Length": "93",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "eastus"
+ "location": "westus2",
+ "properties": {
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ }
+ }
},
- "StatusCode": 200,
+ "StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a501b7bb-b880-4ad8-84ed-5c9be514fb4f?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/214bc809-7c9e-458d-a37e-2d3d22e36480?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "752",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:39:49 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A39%3A48.1138491Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:11:02 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Retry-After": "3",
+ "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": "53253d9f-98b0-4ea7-89a6-89901c4f4567",
+ "x-ms-arm-service-request-id": "e4b4a95b-c309-436d-ba82-ee50dc441738",
+ "x-ms-correlation-request-id": "d0da712d-fe8b-44b6-aee1-63645364411a",
"x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T083949Z:53253d9f-98b0-4ea7-89a6-89901c4f4567",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221103Z:d0da712d-fe8b-44b6-aee1-63645364411a"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
- "type": "Microsoft.NetApp/netAppAccounts",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A39%3A48.1138491Z\u0027\u0022",
- "location": "eastus",
+ "name": "sdk-python-tests-vnet-westus2-b2-86eb264b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b",
+ "etag": "W/\u00224bc74d85-71aa-4074-a6f2-8483e4620b83\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-06-08T13:30:55.6084191Z"
+ "CreatedOnDate": "2022-07-27T22:10:57.0366477Z"
},
"properties": {
"provisioningState": "Updating",
- "encryption": {
- "keySource": "Microsoft.NetApp"
- }
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-06-08T13:30:57.4753284Z",
- "createdByType": "Application",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-06-08T13:30:57.4753284Z",
- "lastModifiedByType": "Application"
+ "resourceGuid": "7f5e23d7-6e02-496c-b7e2-671c496e5967",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a501b7bb-b880-4ad8-84ed-5c9be514fb4f?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/214bc809-7c9e-458d-a37e-2d3d22e36480?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -286,39 +293,34 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:40:19 GMT",
+ "Date": "Wed, 27 Jul 2022 22:11:06 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "554366ac-7e15-455e-ae6c-a04154704fa7",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084020Z:554366ac-7e15-455e-ae6c-a04154704fa7",
- "X-Powered-By": "ASP.NET"
+ "x-ms-arm-service-request-id": "eeceb25f-a3e8-40fd-9f32-97c916cb241e",
+ "x-ms-correlation-request-id": "299619f3-8c86-4c0d-bc2b-23b7fd2816c8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11876",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221106Z:299619f3-8c86-4c0d-bc2b-23b7fd2816c8"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a501b7bb-b880-4ad8-84ed-5c9be514fb4f",
- "name": "a501b7bb-b880-4ad8-84ed-5c9be514fb4f",
- "status": "Succeeded",
- "startTime": "2022-06-09T08:39:48.1167541Z",
- "endTime": "2022-06-09T08:39:48.5230306Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
- }
+ "status": "Succeeded"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -326,116 +328,129 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:40:19 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A39%3A48.5236087Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:11:06 GMT",
+ "ETag": "W/\u0022fb2681bd-c3e0-4eba-b182-de0ed532d21d\u0022",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "a72d810d-c566-4aa2-ac09-706208910bd4",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084020Z:a72d810d-c566-4aa2-ac09-706208910bd4",
- "X-Powered-By": "ASP.NET"
+ "x-ms-arm-service-request-id": "85d4360d-aa9f-4065-8cfb-4bcf9acb2b25",
+ "x-ms-correlation-request-id": "4ecd172f-5ff6-459a-87cc-39fd3b124588",
+ "x-ms-ratelimit-remaining-subscription-reads": "11875",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221107Z:4ecd172f-5ff6-459a-87cc-39fd3b124588"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
- "type": "Microsoft.NetApp/netAppAccounts",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A39%3A48.5236087Z\u0027\u0022",
- "location": "eastus",
+ "name": "sdk-python-tests-vnet-westus2-b2-86eb264b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b",
+ "etag": "W/\u0022fb2681bd-c3e0-4eba-b182-de0ed532d21d\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:10:57.0366477Z"
+ },
"properties": {
"provisioningState": "Succeeded",
- "encryption": {
- "keySource": "Microsoft.NetApp"
- }
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-06-08T13:30:57.4753284Z",
- "createdByType": "Application",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-06-09T08:39:47.4919499Z",
- "lastModifiedByType": "Application"
+ "resourceGuid": "7f5e23d7-6e02-496c-b7e2-671c496e5967",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "137",
+ "Content-Length": "151",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "eastus",
"properties": {
- "size": 4398046511104,
- "serviceLevel": "Premium",
- "coolAccess": false,
- "encryptionType": "Single"
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "properties": {
+ "serviceName": "Microsoft.Netapp/volumes"
+ }
+ }
+ ]
}
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d1e19ae0-263c-4ce1-b22e-827cca1127aa?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/592b4fe2-9a9c-4ab4-8404-427f5e6aabc8?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Length": "902",
+ "Content-Length": "1324",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:40:22 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A40%3A21.9770212Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:11:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Retry-After": "3",
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3e35e2c1-d267-46b5-ae4a-7596035b46f5",
+ "x-ms-arm-service-request-id": "58ef3f65-e6d1-4f1b-aed1-e5a00627c8f6",
+ "x-ms-correlation-request-id": "01ebf9e1-76f6-444c-affa-4f708bba5047",
"x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084022Z:3e35e2c1-d267-46b5-ae4a-7596035b46f5",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221107Z:01ebf9e1-76f6-444c-affa-4f708bba5047"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A40%3A21.9770212Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:40:20.7622365Z"
- },
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
+ "etag": "W/\u00221c9087bc-83d7-475e-824f-3901d201d373\u0022",
"properties": {
- "serviceLevel": "Premium",
- "size": 4398046511104,
- "totalThroughputMibps": 0.0,
- "utilizedThroughputMibps": 0.0,
- "encryptionType": "Single",
- "coolAccess": false,
- "provisioningState": "Creating"
+ "provisioningState": "Updating",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u00221c9087bc-83d7-475e-824f-3901d201d373\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
},
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-06-09T08:40:21.710967Z",
- "createdByType": "Application",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-06-09T08:40:21.710967Z",
- "lastModifiedByType": "Application"
- }
+ "type": "Microsoft.Network/virtualNetworks/subnets"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d1e19ae0-263c-4ce1-b22e-827cca1127aa?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/592b4fe2-9a9c-4ab4-8404-427f5e6aabc8?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -443,39 +458,34 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:40:52 GMT",
+ "Date": "Wed, 27 Jul 2022 22:11:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "808f070d-c395-47b9-a313-92a5c2aee166",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084052Z:808f070d-c395-47b9-a313-92a5c2aee166",
- "X-Powered-By": "ASP.NET"
+ "x-ms-arm-service-request-id": "05712f4f-0b40-45c0-b9df-82dadbaebef6",
+ "x-ms-correlation-request-id": "24e0df9f-e993-44d0-b476-ac24d2e2105d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11874",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221111Z:24e0df9f-e993-44d0-b476-ac24d2e2105d"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d1e19ae0-263c-4ce1-b22e-827cca1127aa",
- "name": "d1e19ae0-263c-4ce1-b22e-827cca1127aa",
- "status": "Succeeded",
- "startTime": "2022-06-09T08:40:21.9815321Z",
- "endTime": "2022-06-09T08:40:22.1690396Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
- }
+ "status": "Succeeded"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -483,149 +493,127 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:40:52 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A40%3A22.1658827Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:11:10 GMT",
+ "ETag": "W/\u0022b111eeab-87a6-4750-9ba8-805f2d32bc57\u0022",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "83426ff6-3bf2-46bb-b7ab-8db24adae1b6",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084053Z:83426ff6-3bf2-46bb-b7ab-8db24adae1b6",
- "X-Powered-By": "ASP.NET"
+ "x-ms-arm-service-request-id": "def595d1-9390-4cd6-b244-1788baf9bf31",
+ "x-ms-correlation-request-id": "95d9dacf-3247-49ba-9812-1a4dafcd34ec",
+ "x-ms-ratelimit-remaining-subscription-reads": "11873",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221111Z:95d9dacf-3247-49ba-9812-1a4dafcd34ec"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A40%3A22.1658827Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:40:20.7622365Z"
- },
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
+ "etag": "W/\u0022b111eeab-87a6-4750-9ba8-805f2d32bc57\u0022",
"properties": {
- "poolId": "34b26013-f1c9-a827-2cf1-f37459591c16",
- "serviceLevel": "Premium",
- "size": 4398046511104,
- "qosType": "Auto",
- "totalThroughputMibps": 262.144,
- "utilizedThroughputMibps": 0.0,
- "encryptionType": "Single",
- "coolAccess": false,
- "provisioningState": "Succeeded"
- }
+ "provisioningState": "Succeeded",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u0022b111eeab-87a6-4750-9ba8-805f2d32bc57\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b?api-version=2021-08-01",
"RequestMethod": "PUT",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "755",
+ "Content-Length": "93",
"Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": {
- "location": "eastus",
+ "location": "eastus2",
"properties": {
- "creationToken": "sdk-py-tests-vol-1",
- "serviceLevel": "Premium",
- "usageThreshold": 107374182400,
- "protocolTypes": [
- "NFSv3"
- ],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "coolAccess": false,
- "unixPermissions": "0770",
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ }
}
},
"StatusCode": 201,
"ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/88e367be-0856-4f27-91d7-ca6becc10143?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/94d750ae-ec22-478f-aa29-5f81d59245d6?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Length": "1524",
+ "Content-Length": "742",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:41:04 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A41%3A04.7456318Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:11:14 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Retry-After": "3",
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a5a791f6-fb2c-4fe8-b5bf-5a0ec5325bf0",
+ "x-ms-arm-service-request-id": "830be51a-6ad1-4389-b9e0-b3f53d6332d4",
+ "x-ms-correlation-request-id": "95304ee4-8717-4c07-a7c0-b88f6922358d",
"x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084105Z:a5a791f6-fb2c-4fe8-b5bf-5a0ec5325bf0",
- "X-Powered-By": "ASP.NET"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221115Z:95304ee4-8717-4c07-a7c0-b88f6922358d"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A41%3A04.7456318Z\u0027\u0022",
- "location": "eastus",
+ "name": "sdk-python-tests-vnet-R-b2-86eb264b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b",
+ "etag": "W/\u00227f857dfd-0cea-4cd2-af2c-27a70a24d3e1\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "eastus2",
"tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
+ "CreatedOnDate": "2022-07-27T22:11:11.8094327Z"
},
"properties": {
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "usageThreshold": 107374182400,
- "protocolTypes": [
- "NFSv3"
- ],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Creating"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-06-09T08:41:04.2894728Z",
- "createdByType": "Application",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-06-09T08:41:04.2894728Z",
- "lastModifiedByType": "Application"
+ "provisioningState": "Updating",
+ "resourceGuid": "5fd171b0-812f-4ec9-907c-173925829665",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/88e367be-0856-4f27-91d7-ca6becc10143?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/94d750ae-ec22-478f-aa29-5f81d59245d6?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -633,39 +621,34 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:41:34 GMT",
+ "Date": "Wed, 27 Jul 2022 22:11:17 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "06aa25c3-f63d-49ef-9eeb-1e7c97cb3ec5",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084135Z:06aa25c3-f63d-49ef-9eeb-1e7c97cb3ec5",
- "X-Powered-By": "ASP.NET"
+ "x-ms-arm-service-request-id": "1862a4cb-0a46-4b61-91ab-284690f52369",
+ "x-ms-correlation-request-id": "e912efd4-cd0c-4ca4-9e62-92a614e7ab78",
+ "x-ms-ratelimit-remaining-subscription-reads": "11872",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221118Z:e912efd4-cd0c-4ca4-9e62-92a614e7ab78"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/88e367be-0856-4f27-91d7-ca6becc10143",
- "name": "88e367be-0856-4f27-91d7-ca6becc10143",
- "status": "Creating",
- "startTime": "2022-06-09T08:41:04.7490513Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
+ "status": "Succeeded"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/88e367be-0856-4f27-91d7-ca6becc10143?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -673,79 +656,129 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:42:05 GMT",
+ "Date": "Wed, 27 Jul 2022 22:11:17 GMT",
+ "ETag": "W/\u002205bf493c-a327-46dd-b05b-cbd36445ccf8\u0022",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "e8871b98-179c-4d9b-b11d-b33111f2c3fa",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084205Z:e8871b98-179c-4d9b-b11d-b33111f2c3fa",
- "X-Powered-By": "ASP.NET"
+ "x-ms-arm-service-request-id": "579c20a0-36aa-4220-870d-9cadceaa4acb",
+ "x-ms-correlation-request-id": "08484486-2e66-44aa-b617-5b57c5ac6ecb",
+ "x-ms-ratelimit-remaining-subscription-reads": "11871",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221118Z:08484486-2e66-44aa-b617-5b57c5ac6ecb"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/88e367be-0856-4f27-91d7-ca6becc10143",
- "name": "88e367be-0856-4f27-91d7-ca6becc10143",
- "status": "Creating",
- "startTime": "2022-06-09T08:41:04.7490513Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
+ "name": "sdk-python-tests-vnet-R-b2-86eb264b",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b",
+ "etag": "W/\u002205bf493c-a327-46dd-b05b-cbd36445ccf8\u0022",
+ "type": "Microsoft.Network/virtualNetworks",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:11:11.8094327Z"
+ },
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "provisioningState": "Succeeded",
+ "resourceGuid": "5fd171b0-812f-4ec9-907c-173925829665",
+ "addressSpace": {
+ "addressPrefixes": [
+ "10.0.0.0/16"
+ ]
+ },
+ "subnets": [],
+ "virtualNetworkPeerings": [],
+ "enableDdosProtection": false
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/88e367be-0856-4f27-91d7-ca6becc10143?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default?api-version=2021-08-01",
+ "RequestMethod": "PUT",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "Content-Length": "151",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "RequestBody": null,
- "StatusCode": 200,
+ "RequestBody": {
+ "properties": {
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "properties": {
+ "serviceName": "Microsoft.Netapp/volumes"
+ }
+ }
+ ]
+ }
+ },
+ "StatusCode": 201,
"ResponseHeaders": {
+ "azure-asyncoperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/b8cf5970-ce75-452a-9eb1-b474f1dbbd2b?api-version=2021-08-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "1316",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:42:35 GMT",
+ "Date": "Wed, 27 Jul 2022 22:11:18 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Retry-After": "3",
+ "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": "4bc614e5-7c6c-4756-8d1e-85ac47b742c2",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084236Z:4bc614e5-7c6c-4756-8d1e-85ac47b742c2",
- "X-Powered-By": "ASP.NET"
+ "x-ms-arm-service-request-id": "4f8e2dd0-f808-410a-b210-4f5a60a1c963",
+ "x-ms-correlation-request-id": "35877210-1cc5-44e2-a0bd-b667ef1c733a",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221119Z:35877210-1cc5-44e2-a0bd-b667ef1c733a"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/88e367be-0856-4f27-91d7-ca6becc10143",
- "name": "88e367be-0856-4f27-91d7-ca6becc10143",
- "status": "Creating",
- "startTime": "2022-06-09T08:41:04.7490513Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default",
+ "etag": "W/\u0022432fe07b-c607-48af-acc9-048b983cd61c\u0022",
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
+ "provisioningState": "Updating",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u0022432fe07b-c607-48af-acc9-048b983cd61c\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/88e367be-0856-4f27-91d7-ca6becc10143?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/b8cf5970-ce75-452a-9eb1-b474f1dbbd2b?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -753,39 +786,34 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:43:05 GMT",
+ "Date": "Wed, 27 Jul 2022 22:11:22 GMT",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "bf5ba228-0a5e-4e6c-9510-26ecb75ef134",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084306Z:bf5ba228-0a5e-4e6c-9510-26ecb75ef134",
- "X-Powered-By": "ASP.NET"
+ "x-ms-arm-service-request-id": "0ff68aa6-3a4d-46b9-8b69-048e89471e03",
+ "x-ms-correlation-request-id": "ea283a2a-1d6e-41f9-85ae-1c8772d1cca4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11870",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221122Z:ea283a2a-1d6e-41f9-85ae-1c8772d1cca4"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/88e367be-0856-4f27-91d7-ca6becc10143",
- "name": "88e367be-0856-4f27-91d7-ca6becc10143",
- "status": "Creating",
- "startTime": "2022-06-09T08:41:04.7490513Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
+ "status": "Succeeded"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/88e367be-0856-4f27-91d7-ca6becc10143?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default?api-version=2021-08-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -793,79 +821,5656 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:43:36 GMT",
+ "Date": "Wed, 27 Jul 2022 22:11:22 GMT",
+ "ETag": "W/\u002219a1cc96-f0db-4700-84d7-24792e3053df\u0022",
"Expires": "-1",
"Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "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": "eccc87dd-6dd2-4d1f-8c0e-045176c5542f",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084336Z:eccc87dd-6dd2-4d1f-8c0e-045176c5542f",
- "X-Powered-By": "ASP.NET"
+ "x-ms-arm-service-request-id": "b55fc3a2-d517-4cc1-a6c6-98226cc09c50",
+ "x-ms-correlation-request-id": "76ffa9b0-0a26-4347-80f2-a94815fb9886",
+ "x-ms-ratelimit-remaining-subscription-reads": "11869",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221122Z:76ffa9b0-0a26-4347-80f2-a94815fb9886"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/88e367be-0856-4f27-91d7-ca6becc10143",
- "name": "88e367be-0856-4f27-91d7-ca6becc10143",
- "status": "Creating",
- "startTime": "2022-06-09T08:41:04.7490513Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
+ "name": "default",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default",
+ "etag": "W/\u002219a1cc96-f0db-4700-84d7-24792e3053df\u0022",
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
+ "provisioningState": "Succeeded",
+ "addressPrefix": "10.0.0.0/24",
+ "delegations": [
+ {
+ "name": "netAppVolumes",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default/delegations/netAppVolumes",
+ "etag": "W/\u002219a1cc96-f0db-4700-84d7-24792e3053df\u0022",
+ "properties": {
+ "provisioningState": "Succeeded",
+ "serviceName": "Microsoft.Netapp/volumes",
+ "actions": [
+ "Microsoft.Network/networkinterfaces/*",
+ "Microsoft.Network/virtualNetworks/subnets/join/action"
+ ]
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets/delegations"
+ }
+ ],
+ "purpose": "HostedWorkloads",
+ "privateEndpointNetworkPolicies": "Disabled",
+ "privateLinkServiceNetworkPolicies": "Enabled"
+ },
+ "type": "Microsoft.Network/virtualNetworks/subnets"
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/88e367be-0856-4f27-91d7-ca6becc10143?api-version=2022-01-01",
+ "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-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-identity/1.11.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "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": "Thu, 09 Jun 2022 08:44:06 GMT",
- "Expires": "-1",
- "Pragma": "no-cache",
- "Server": "Microsoft-IIS/10.0",
+ "Date": "Wed, 27 Jul 2022 22:11:22 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.13355.6 - WEULR2 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.11.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": "Wed, 27 Jul 2022 22:11: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.13355.6 - 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": "95788b73-53b2-43d8-9c56-2063ae658e23",
+ "Connection": "keep-alive",
+ "Content-Length": "281",
+ "Content-Type": "application/x-www-form-urlencoded",
+ "Cookie": "cookie;",
+ "User-Agent": "azsdk-python-identity/1.11.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.18.0",
+ "x-ms-lib-capability": "retry-after, h429"
+ },
+ "RequestBody": "client_id=c6c4faba-2b22-44d9-80a4-71ff5b71f811\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=%7BQR%5B%2B%40avhE%2B3qiyY1Xf\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": "95788b73-53b2-43d8-9c56-2063ae658e23",
+ "Content-Length": "114",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Wed, 27 Jul 2022 22:11:23 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.13355.6 - WEULR2 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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b?api-version=2022-03-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "23",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/d66b9521-f2e1-4d33-8010-0bf4e62a7731?api-version=2022-03-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "706",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Wed, 27 Jul 2022 22:11:26 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A11%3A26.1504891Z\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": "d829e61f-5a6b-4d05-acad-b05c25f92d84",
+ "x-ms-ratelimit-remaining-subscription-writes": "1195",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221127Z:d829e61f-5a6b-4d05-acad-b05c25f92d84",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T22%3A11%3A26.1504891Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:11:24.1280050Z"
+ },
+ "properties": {
+ "provisioningState": "Creating"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-27T22:11:25.209172Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T22:11:25.209172Z"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d66b9521-f2e1-4d33-8010-0bf4e62a7731?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:11: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": "7f71287b-5eba-4d31-9fc4-a9c01bbb0f9a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11868",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221157Z:7f71287b-5eba-4d31-9fc4-a9c01bbb0f9a",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d66b9521-f2e1-4d33-8010-0bf4e62a7731",
+ "name": "d66b9521-f2e1-4d33-8010-0bf4e62a7731",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T22:11:26.1445206Z",
+ "endTime": "2022-07-27T22:11:26.1914718Z",
+ "percentComplete": 100.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:11:57 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A11%3A26.1965694Z\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": "02779ba6-7157-443d-b076-07e4f1381e91",
+ "x-ms-ratelimit-remaining-subscription-reads": "11867",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221157Z:02779ba6-7157-443d-b076-07e4f1381e91",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T22%3A11%3A26.1965694Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:11:24.1280050Z"
+ },
+ "properties": {
+ "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"
+ },
+ "provisioningState": "Succeeded"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-27T22:11:25.209172Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T22:11:25.209172Z"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "138",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "RequestBody": {
+ "location": "westus2",
+ "properties": {
+ "size": 4398046511104,
+ "serviceLevel": "Premium",
+ "coolAccess": false,
+ "encryptionType": "Single"
+ }
+ },
+ "StatusCode": 201,
+ "ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/23407f64-c6f5-4af0-9adf-7159886a6207?api-version=2022-03-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "924",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Wed, 27 Jul 2022 22:11:59 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A11%3A59.4614955Z\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": "6aeade7f-5a8e-479d-8e4d-f18ebb8a45b4",
+ "x-ms-ratelimit-remaining-subscription-writes": "1194",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221200Z:6aeade7f-5a8e-479d-8e4d-f18ebb8a45b4",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T22%3A11%3A59.4614955Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:11:58.1116055Z"
+ },
+ "properties": {
+ "serviceLevel": "Premium",
+ "size": 4398046511104,
+ "totalThroughputMibps": 0.0,
+ "utilizedThroughputMibps": 0.0,
+ "encryptionType": "Single",
+ "coolAccess": false,
+ "provisioningState": "Creating"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-27T22:11:59.2658491Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T22:11:59.2658491Z"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/23407f64-c6f5-4af0-9adf-7159886a6207?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:12: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": "d801fa9b-25fd-4a94-b40b-70f4df78e6ef",
+ "x-ms-ratelimit-remaining-subscription-reads": "11866",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221230Z:d801fa9b-25fd-4a94-b40b-70f4df78e6ef",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/23407f64-c6f5-4af0-9adf-7159886a6207",
+ "name": "23407f64-c6f5-4af0-9adf-7159886a6207",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T22:11:59.4651248Z",
+ "endTime": "2022-07-27T22:11:59.7619843Z",
+ "percentComplete": 100.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:12:30 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A11%3A59.7571641Z\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": "39df6b1e-5ad8-4652-b571-58d629b74d28",
+ "x-ms-ratelimit-remaining-subscription-reads": "11865",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221231Z:39df6b1e-5ad8-4652-b571-58d629b74d28",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T22%3A11%3A59.7571641Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:11:58.1116055Z"
+ },
+ "properties": {
+ "poolId": "8feaea52-0b7c-d598-c547-8a80256cefae",
+ "serviceLevel": "Premium",
+ "size": 4398046511104,
+ "qosType": "Auto",
+ "totalThroughputMibps": 256.0,
+ "utilizedThroughputMibps": 0.0,
+ "encryptionType": "Single",
+ "coolAccess": false,
+ "provisioningState": "Succeeded"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "785",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "RequestBody": {
+ "location": "westus2",
+ "properties": {
+ "creationToken": "sdk-py-tests-vol-3-b2-86eb264b",
+ "serviceLevel": "Premium",
+ "usageThreshold": 107374182400,
+ "protocolTypes": [
+ "NFSv3"
+ ],
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
+ "networkFeatures": "Basic",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "coolAccess": false,
+ "unixPermissions": "0770",
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0
+ }
+ },
+ "StatusCode": 201,
+ "ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/79cacbab-f6f2-4396-9c45-01e286c5b2e0?api-version=2022-03-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "1593",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Wed, 27 Jul 2022 22:12:43 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A12%3A43.26751Z\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": "e605c7a4-45af-479e-a9ac-b8e311b00aed",
+ "x-ms-ratelimit-remaining-subscription-writes": "1193",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221244Z:e605c7a4-45af-479e-a9ac-b8e311b00aed",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T22%3A12%3A43.26751Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:12:41.7418774Z"
+ },
+ "properties": {
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-3-b2-86eb264b",
+ "usageThreshold": 107374182400,
+ "protocolTypes": [
+ "NFSv3"
+ ],
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
+ "networkFeatures": "Basic",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Creating"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-27T22:12:42.9660947Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T22:12:42.9660947Z"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/79cacbab-f6f2-4396-9c45-01e286c5b2e0?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:13: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": "20f8aa68-8e8b-4ced-af81-9be5ecaed4fb",
+ "x-ms-ratelimit-remaining-subscription-reads": "11864",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221314Z:20f8aa68-8e8b-4ced-af81-9be5ecaed4fb",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/79cacbab-f6f2-4396-9c45-01e286c5b2e0",
+ "name": "79cacbab-f6f2-4396-9c45-01e286c5b2e0",
+ "status": "Creating",
+ "startTime": "2022-07-27T22:12:43.2625546Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/79cacbab-f6f2-4396-9c45-01e286c5b2e0?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:13: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": "5ea8ca9b-3097-4725-bb81-86ebee1ea704",
+ "x-ms-ratelimit-remaining-subscription-reads": "11863",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221344Z:5ea8ca9b-3097-4725-bb81-86ebee1ea704",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/79cacbab-f6f2-4396-9c45-01e286c5b2e0",
+ "name": "79cacbab-f6f2-4396-9c45-01e286c5b2e0",
+ "status": "Creating",
+ "startTime": "2022-07-27T22:12:43.2625546Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/79cacbab-f6f2-4396-9c45-01e286c5b2e0?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:14: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": "0c831820-c7c7-4f9c-8911-de129e51a89a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11862",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221415Z:0c831820-c7c7-4f9c-8911-de129e51a89a",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/79cacbab-f6f2-4396-9c45-01e286c5b2e0",
+ "name": "79cacbab-f6f2-4396-9c45-01e286c5b2e0",
+ "status": "Creating",
+ "startTime": "2022-07-27T22:12:43.2625546Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/79cacbab-f6f2-4396-9c45-01e286c5b2e0?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:14: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": "c7b45af3-0156-4d2a-bce6-3c426062a74e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11861",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221445Z:c7b45af3-0156-4d2a-bce6-3c426062a74e",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/79cacbab-f6f2-4396-9c45-01e286c5b2e0",
+ "name": "79cacbab-f6f2-4396-9c45-01e286c5b2e0",
+ "status": "Creating",
+ "startTime": "2022-07-27T22:12:43.2625546Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/79cacbab-f6f2-4396-9c45-01e286c5b2e0?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22: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": "defe6fd8-375b-43f3-aec4-5cbe9dddd367",
+ "x-ms-ratelimit-remaining-subscription-reads": "11861",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221515Z:defe6fd8-375b-43f3-aec4-5cbe9dddd367",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/79cacbab-f6f2-4396-9c45-01e286c5b2e0",
+ "name": "79cacbab-f6f2-4396-9c45-01e286c5b2e0",
+ "status": "Creating",
+ "startTime": "2022-07-27T22:12:43.2625546Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/79cacbab-f6f2-4396-9c45-01e286c5b2e0?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:15: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": "e18c4c09-cb2c-4745-bbbc-a80acc3caedc",
+ "x-ms-ratelimit-remaining-subscription-reads": "11860",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221546Z:e18c4c09-cb2c-4745-bbbc-a80acc3caedc",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/79cacbab-f6f2-4396-9c45-01e286c5b2e0",
+ "name": "79cacbab-f6f2-4396-9c45-01e286c5b2e0",
+ "status": "Creating",
+ "startTime": "2022-07-27T22:12:43.2625546Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/79cacbab-f6f2-4396-9c45-01e286c5b2e0?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:16: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": "1f2fe0dd-2bd6-4b6f-b311-c7ccf98e1a55",
+ "x-ms-ratelimit-remaining-subscription-reads": "11859",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221616Z:1f2fe0dd-2bd6-4b6f-b311-c7ccf98e1a55",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/79cacbab-f6f2-4396-9c45-01e286c5b2e0",
+ "name": "79cacbab-f6f2-4396-9c45-01e286c5b2e0",
+ "status": "Creating",
+ "startTime": "2022-07-27T22:12:43.2625546Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/79cacbab-f6f2-4396-9c45-01e286c5b2e0?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:16: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": "5349dcd4-3e50-4cc3-b706-6309c4b8bd25",
+ "x-ms-ratelimit-remaining-subscription-reads": "11858",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221647Z:5349dcd4-3e50-4cc3-b706-6309c4b8bd25",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/79cacbab-f6f2-4396-9c45-01e286c5b2e0",
+ "name": "79cacbab-f6f2-4396-9c45-01e286c5b2e0",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T22:12:43.2625546Z",
+ "endTime": "2022-07-27T22:16:46.4825471Z",
+ "percentComplete": 100.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:16:47 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A16%3A46.472609Z\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": "04f6b1c9-d913-41f9-9033-f26a7ebd6783",
+ "x-ms-ratelimit-remaining-subscription-reads": "11857",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221647Z:04f6b1c9-d913-41f9-9033-f26a7ebd6783",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T22%3A16%3A46.472609Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:12:41.7418774Z"
+ },
+ "properties": {
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "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_d673703a",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b?api-version=2022-03-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "23",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/f300b97b-8b96-4ee9-b69d-b9e0f2336457?api-version=2022-03-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "710",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Wed, 27 Jul 2022 22:16:51 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A16%3A50.9186974Z\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": "e21802fe-b53f-483d-9dcf-30e1678a4d3b",
+ "x-ms-ratelimit-remaining-subscription-writes": "1192",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221652Z:e21802fe-b53f-483d-9dcf-30e1678a4d3b",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A16%3A50.9186974Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:16:48.1679951Z"
+ },
+ "properties": {
+ "provisioningState": "Creating"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-27T22:16:50.2303411Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T22:16:50.2303411Z"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/f300b97b-8b96-4ee9-b69d-b9e0f2336457?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:17: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": "8499f401-88b6-4a7c-8bbe-284bf2cb211a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11856",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221722Z:8499f401-88b6-4a7c-8bbe-284bf2cb211a",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/f300b97b-8b96-4ee9-b69d-b9e0f2336457",
+ "name": "f300b97b-8b96-4ee9-b69d-b9e0f2336457",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T22:16:50.9259574Z",
+ "endTime": "2022-07-27T22:16:50.9572045Z",
+ "percentComplete": 100.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:17:22 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A16%3A50.9559986Z\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": "3a2da012-8aca-4325-8a57-a5e018b1b8d3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11855",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221722Z:3a2da012-8aca-4325-8a57-a5e018b1b8d3",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A16%3A50.9559986Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:16:48.1679951Z"
+ },
+ "properties": {
+ "activeDirectories": [
+ {
+ "activeDirectoryId": "e511366b-8040-9153-7856-5971cc5472e1",
+ "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"
+ },
+ "provisioningState": "Succeeded"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-27T22:16:50.2303411Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T22:16:50.2303411Z"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2?api-version=2022-03-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "138",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "RequestBody": {
+ "location": "eastus2",
+ "properties": {
+ "size": 4398046511104,
+ "serviceLevel": "Premium",
+ "coolAccess": false,
+ "encryptionType": "Single"
+ }
+ },
+ "StatusCode": 201,
+ "ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/b9ad395f-acbe-4e25-9cab-54260e80c260?api-version=2022-03-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "926",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Wed, 27 Jul 2022 22:17:25 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A17%3A24.3499525Z\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": "da445169-65c0-450c-a5ef-66f134295614",
+ "x-ms-ratelimit-remaining-subscription-writes": "1191",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221725Z:da445169-65c0-450c-a5ef-66f134295614",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A17%3A24.3499525Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:17:23.0934336Z"
+ },
+ "properties": {
+ "serviceLevel": "Premium",
+ "size": 4398046511104,
+ "totalThroughputMibps": 0.0,
+ "utilizedThroughputMibps": 0.0,
+ "encryptionType": "Single",
+ "coolAccess": false,
+ "provisioningState": "Creating"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-27T22:17:24.2082025Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T22:17:24.2082025Z"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/b9ad395f-acbe-4e25-9cab-54260e80c260?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:17: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": "5dc89dab-e466-4fd7-8b2d-7d047110275f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11854",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221755Z:5dc89dab-e466-4fd7-8b2d-7d047110275f",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/b9ad395f-acbe-4e25-9cab-54260e80c260",
+ "name": "b9ad395f-acbe-4e25-9cab-54260e80c260",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T22:17:24.3538393Z",
+ "endTime": "2022-07-27T22:17:24.6201528Z",
+ "percentComplete": 100.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:17:55 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A17%3A24.6032868Z\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": "9dae32ab-7e41-4474-9920-5df436d4fc6f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11853",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221756Z:9dae32ab-7e41-4474-9920-5df436d4fc6f",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A17%3A24.6032868Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:17:23.0934336Z"
+ },
+ "properties": {
+ "poolId": "baf5f62f-d27a-ee2f-b673-bf029c38ead3",
+ "serviceLevel": "Premium",
+ "size": 4398046511104,
+ "qosType": "Auto",
+ "totalThroughputMibps": 256.0,
+ "utilizedThroughputMibps": 0.0,
+ "encryptionType": "Single",
+ "coolAccess": false,
+ "provisioningState": "Succeeded"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
+ "RequestMethod": "PUT",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "1205",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "RequestBody": {
+ "location": "eastus2",
+ "properties": {
+ "creationToken": "sdk-py-tests-vol-4-b2-86eb264b",
+ "serviceLevel": "Premium",
+ "usageThreshold": 107374182400,
+ "protocolTypes": [
+ "NFSv3"
+ ],
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default",
+ "networkFeatures": "Basic",
+ "volumeType": "DataProtection",
+ "dataProtection": {
+ "replication": {
+ "endpointType": "dst",
+ "replicationSchedule": "_10minutely",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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"
+ }
+ },
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "coolAccess": false,
+ "unixPermissions": "0770",
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled"
+ }
+ },
+ "StatusCode": 201,
+ "ResponseHeaders": {
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fd1b5c1c-584d-4ce0-9710-3307649aab80?api-version=2022-03-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "2005",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Wed, 27 Jul 2022 22:18:08 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A18%3A07.8788815Z\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": "61208342-0835-4e25-a5fa-165c9558ac2c",
+ "x-ms-ratelimit-remaining-subscription-writes": "1190",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221808Z:61208342-0835-4e25-a5fa-165c9558ac2c",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A18%3A07.8788815Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
+ },
+ "properties": {
+ "volumeType": "DataProtection",
+ "dataProtection": {
+ "replication": {
+ "endPointType": "Dst",
+ "replicationSchedule": "_10minutely",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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"
+ }
+ },
+ "serviceLevel": "Premium",
+ "creationToken": "sdk-py-tests-vol-4-b2-86eb264b",
+ "usageThreshold": 107374182400,
+ "protocolTypes": [
+ "NFSv3"
+ ],
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default",
+ "networkFeatures": "Basic",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Creating"
+ },
+ "systemData": {
+ "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "createdByType": "Application",
+ "createdAt": "2022-07-27T22:18:07.6416428Z",
+ "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T22:18:07.6416428Z"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fd1b5c1c-584d-4ce0-9710-3307649aab80?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:18: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": "8eb6a681-e3a9-4f7d-90ec-45e9a223f7e7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11852",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221839Z:8eb6a681-e3a9-4f7d-90ec-45e9a223f7e7",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fd1b5c1c-584d-4ce0-9710-3307649aab80",
+ "name": "fd1b5c1c-584d-4ce0-9710-3307649aab80",
+ "status": "Creating",
+ "startTime": "2022-07-27T22:18:07.8771513Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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/fd1b5c1c-584d-4ce0-9710-3307649aab80?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:19: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": "d38ec087-c25c-4c48-8c51-e0e971c6df4a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11851",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221909Z:d38ec087-c25c-4c48-8c51-e0e971c6df4a",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fd1b5c1c-584d-4ce0-9710-3307649aab80",
+ "name": "fd1b5c1c-584d-4ce0-9710-3307649aab80",
+ "status": "Creating",
+ "startTime": "2022-07-27T22:18:07.8771513Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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/fd1b5c1c-584d-4ce0-9710-3307649aab80?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:19: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": "af18b895-b334-4fda-9410-fa49a2725c2c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11850",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T221939Z:af18b895-b334-4fda-9410-fa49a2725c2c",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fd1b5c1c-584d-4ce0-9710-3307649aab80",
+ "name": "fd1b5c1c-584d-4ce0-9710-3307649aab80",
+ "status": "Creating",
+ "startTime": "2022-07-27T22:18:07.8771513Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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/fd1b5c1c-584d-4ce0-9710-3307649aab80?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:20: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": "0b055ecc-79ad-419e-b619-bb165b41625e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11849",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222010Z:0b055ecc-79ad-419e-b619-bb165b41625e",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fd1b5c1c-584d-4ce0-9710-3307649aab80",
+ "name": "fd1b5c1c-584d-4ce0-9710-3307649aab80",
+ "status": "Creating",
+ "startTime": "2022-07-27T22:18:07.8771513Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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/fd1b5c1c-584d-4ce0-9710-3307649aab80?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:20: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": "cd4d6270-b2aa-47ff-b43a-fd131cf8b564",
+ "x-ms-ratelimit-remaining-subscription-reads": "11848",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222040Z:cd4d6270-b2aa-47ff-b43a-fd131cf8b564",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fd1b5c1c-584d-4ce0-9710-3307649aab80",
+ "name": "fd1b5c1c-584d-4ce0-9710-3307649aab80",
+ "status": "Creating",
+ "startTime": "2022-07-27T22:18:07.8771513Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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/fd1b5c1c-584d-4ce0-9710-3307649aab80?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:21: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": "76ebead0-cde8-4d3d-8096-c6c1ff0ee363",
+ "x-ms-ratelimit-remaining-subscription-reads": "11847",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222110Z:76ebead0-cde8-4d3d-8096-c6c1ff0ee363",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fd1b5c1c-584d-4ce0-9710-3307649aab80",
+ "name": "fd1b5c1c-584d-4ce0-9710-3307649aab80",
+ "status": "Creating",
+ "startTime": "2022-07-27T22:18:07.8771513Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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/fd1b5c1c-584d-4ce0-9710-3307649aab80?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:21: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": "d6be564b-180a-4dd6-aee2-1b480d3880f8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11846",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222140Z:d6be564b-180a-4dd6-aee2-1b480d3880f8",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fd1b5c1c-584d-4ce0-9710-3307649aab80",
+ "name": "fd1b5c1c-584d-4ce0-9710-3307649aab80",
+ "status": "Creating",
+ "startTime": "2022-07-27T22:18:07.8771513Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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/fd1b5c1c-584d-4ce0-9710-3307649aab80?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:22: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": "95ff5866-f754-4445-b403-ae998a966e8e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11845",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222211Z:95ff5866-f754-4445-b403-ae998a966e8e",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fd1b5c1c-584d-4ce0-9710-3307649aab80",
+ "name": "fd1b5c1c-584d-4ce0-9710-3307649aab80",
+ "status": "Creating",
+ "startTime": "2022-07-27T22:18:07.8771513Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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/fd1b5c1c-584d-4ce0-9710-3307649aab80?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:22: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": "8f980b24-a381-46af-b2fd-29edbd33eebc",
+ "x-ms-ratelimit-remaining-subscription-reads": "11844",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222241Z:8f980b24-a381-46af-b2fd-29edbd33eebc",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fd1b5c1c-584d-4ce0-9710-3307649aab80",
+ "name": "fd1b5c1c-584d-4ce0-9710-3307649aab80",
+ "status": "Creating",
+ "startTime": "2022-07-27T22:18:07.8771513Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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/fd1b5c1c-584d-4ce0-9710-3307649aab80?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:23: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": "1fc6fbe0-67ee-40a4-9e2f-e2f0ceaa8aee",
+ "x-ms-ratelimit-remaining-subscription-reads": "11843",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222312Z:1fc6fbe0-67ee-40a4-9e2f-e2f0ceaa8aee",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fd1b5c1c-584d-4ce0-9710-3307649aab80",
+ "name": "fd1b5c1c-584d-4ce0-9710-3307649aab80",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T22:18:07.8771513Z",
+ "endTime": "2022-07-27T22:22:48.0539322Z",
+ "percentComplete": 100.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:23:12 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A22%3A48.0409579Z\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": "708b8005-6148-4c2c-8f6b-e2e16ea7e6f4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11842",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222312Z:708b8005-6148-4c2c-8f6b-e2e16ea7e6f4",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A22%3A48.0409579Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
+ },
+ "properties": {
+ "volumeType": "DataProtection",
+ "dataProtection": {
+ "replication": {
+ "endPointType": "Dst",
+ "replicationSchedule": "_10minutely",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/authorizeReplication?api-version=2022-03-01",
+ "RequestMethod": "POST",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "264",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
+ },
+ "RequestBody": {
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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/d70965fc-d2e4-4609-9af4-8e4a7bce74d6?api-version=2022-03-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "0",
+ "Date": "Wed, 27 Jul 2022 22:23:43 GMT",
+ "Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d70965fc-d2e4-4609-9af4-8e4a7bce74d6?api-version=2022-03-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": "9dd612cd-7977-4426-b6ea-32e912deeff5",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222344Z:9dd612cd-7977-4426-b6ea-32e912deeff5",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": null
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:23:43 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A44.0777811Z\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": "8c4367a2-82a0-407e-9627-d8dbe4fb3a29",
+ "x-ms-ratelimit-remaining-subscription-reads": "11841",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222344Z:8c4367a2-82a0-407e-9627-d8dbe4fb3a29",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T22%3A23%3A44.0777811Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:12:41.7418774Z"
+ },
+ "properties": {
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "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_d673703a",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "AuthorizeReplication"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:23:44 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A22%3A48.0409579Z\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": "9956c01b-8669-44dd-8837-0b908a2e5394",
+ "x-ms-ratelimit-remaining-subscription-reads": "11840",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222345Z:9956c01b-8669-44dd-8837-0b908a2e5394",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A22%3A48.0409579Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
+ },
+ "properties": {
+ "volumeType": "DataProtection",
+ "dataProtection": {
+ "replication": {
+ "endPointType": "Dst",
+ "replicationSchedule": "_10minutely",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:23:45 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A44.0777811Z\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": "01087255-65b4-444e-9afa-3ed50785c44c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11839",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222346Z:01087255-65b4-444e-9afa-3ed50785c44c",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T22%3A23%3A44.0777811Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:12:41.7418774Z"
+ },
+ "properties": {
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "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_d673703a",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "AuthorizeReplication"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:23:46 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A22%3A48.0409579Z\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": "1b1f530e-bb77-4db5-9bd9-b4b350d934e0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11838",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222346Z:1b1f530e-bb77-4db5-9bd9-b4b350d934e0",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A22%3A48.0409579Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
+ },
+ "properties": {
+ "volumeType": "DataProtection",
+ "dataProtection": {
+ "replication": {
+ "endPointType": "Dst",
+ "replicationSchedule": "_10minutely",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:23:47 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A44.0777811Z\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": "55069898-b2e4-409c-ac30-24f89d479de8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11837",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222348Z:55069898-b2e4-409c-ac30-24f89d479de8",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T22%3A23%3A44.0777811Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:12:41.7418774Z"
+ },
+ "properties": {
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "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_d673703a",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "AuthorizeReplication"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:23:47 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A47.80546Z\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": "d998def2-d20f-41e5-92c8-26db1780203f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11836",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222348Z:d998def2-d20f-41e5-92c8-26db1780203f",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A23%3A47.80546Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
+ },
+ "properties": {
+ "volumeType": "DataProtection",
+ "dataProtection": {
+ "replication": {
+ "endPointType": "Dst",
+ "replicationSchedule": "_10minutely",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "ActivateReplication"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:23:49 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A44.0777811Z\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": "dbfa52a4-3122-49f4-9879-ad5bfd515aaa",
+ "x-ms-ratelimit-remaining-subscription-reads": "11835",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222350Z:dbfa52a4-3122-49f4-9879-ad5bfd515aaa",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T22%3A23%3A44.0777811Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:12:41.7418774Z"
+ },
+ "properties": {
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "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_d673703a",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "AuthorizeReplication"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:23:49 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A50.3204153Z\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": "1aeb9730-aaac-495b-ac63-63282139124e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11834",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222350Z:1aeb9730-aaac-495b-ac63-63282139124e",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A23%3A50.3204153Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
+ },
+ "properties": {
+ "volumeType": "DataProtection",
+ "dataProtection": {
+ "replication": {
+ "replicationId": "598692f6-f6f0-b09c-626c-42e1127f1d41",
+ "endPointType": "Dst",
+ "replicationSchedule": "_10minutely",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:23:51 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A44.0777811Z\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": "900b7178-93f7-4236-ad62-7b7f21bd8fb9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11833",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222351Z:900b7178-93f7-4236-ad62-7b7f21bd8fb9",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T22%3A23%3A44.0777811Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:12:41.7418774Z"
+ },
+ "properties": {
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "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_d673703a",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "AuthorizeReplication"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:23:51 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A50.3204153Z\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": "5a274365-cf8b-497b-a3b2-d72621d42f8e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11832",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222352Z:5a274365-cf8b-497b-a3b2-d72621d42f8e",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A23%3A50.3204153Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
+ },
+ "properties": {
+ "volumeType": "DataProtection",
+ "dataProtection": {
+ "replication": {
+ "replicationId": "598692f6-f6f0-b09c-626c-42e1127f1d41",
+ "endPointType": "Dst",
+ "replicationSchedule": "_10minutely",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:23:53 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A44.0777811Z\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": "1e36251e-5cab-45bb-b8ea-29e6dbd470ea",
+ "x-ms-ratelimit-remaining-subscription-reads": "11831",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222353Z:1e36251e-5cab-45bb-b8ea-29e6dbd470ea",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T22%3A23%3A44.0777811Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:12:41.7418774Z"
+ },
+ "properties": {
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "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_d673703a",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "AuthorizeReplication"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:23:54 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A50.3204153Z\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": "2496ed76-0f80-4fc9-8866-31b12398c88a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11830",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222354Z:2496ed76-0f80-4fc9-8866-31b12398c88a",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A23%3A50.3204153Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
+ },
+ "properties": {
+ "volumeType": "DataProtection",
+ "dataProtection": {
+ "replication": {
+ "replicationId": "598692f6-f6f0-b09c-626c-42e1127f1d41",
+ "endPointType": "Dst",
+ "replicationSchedule": "_10minutely",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:23:55 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A44.0777811Z\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": "64d0abd0-6171-42d6-ab13-6238b8a1a342",
+ "x-ms-ratelimit-remaining-subscription-reads": "11829",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222355Z:64d0abd0-6171-42d6-ab13-6238b8a1a342",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T22%3A23%3A44.0777811Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:12:41.7418774Z"
+ },
+ "properties": {
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "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_d673703a",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "AuthorizeReplication"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:23:56 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A50.3204153Z\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": "a646abaa-7add-43c1-ab51-cfdc961e2229",
+ "x-ms-ratelimit-remaining-subscription-reads": "11828",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222356Z:a646abaa-7add-43c1-ab51-cfdc961e2229",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A23%3A50.3204153Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
+ },
+ "properties": {
+ "volumeType": "DataProtection",
+ "dataProtection": {
+ "replication": {
+ "replicationId": "598692f6-f6f0-b09c-626c-42e1127f1d41",
+ "endPointType": "Dst",
+ "replicationSchedule": "_10minutely",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:23:57 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A44.0777811Z\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": "4d7edccd-bbc8-4451-96a6-0b6a43ee4112",
+ "x-ms-ratelimit-remaining-subscription-reads": "11827",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222357Z:4d7edccd-bbc8-4451-96a6-0b6a43ee4112",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T22%3A23%3A44.0777811Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:12:41.7418774Z"
+ },
+ "properties": {
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "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_d673703a",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "AuthorizeReplication"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:23:58 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A50.3204153Z\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": "57f2e8cd-023a-43e7-8a32-b652522b93bc",
+ "x-ms-ratelimit-remaining-subscription-reads": "11826",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222358Z:57f2e8cd-023a-43e7-8a32-b652522b93bc",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A23%3A50.3204153Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
+ },
+ "properties": {
+ "volumeType": "DataProtection",
+ "dataProtection": {
+ "replication": {
+ "replicationId": "598692f6-f6f0-b09c-626c-42e1127f1d41",
+ "endPointType": "Dst",
+ "replicationSchedule": "_10minutely",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:23:59 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A44.0777811Z\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": "f8a3ce4b-c0b1-42bd-9f83-dc56647eec2e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11825",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222359Z:f8a3ce4b-c0b1-42bd-9f83-dc56647eec2e",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T22%3A23%3A44.0777811Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:12:41.7418774Z"
+ },
+ "properties": {
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "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_d673703a",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "AuthorizeReplication"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:23:59 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A50.3204153Z\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": "1fedf81b-1a39-4100-bd9e-1ac865fa33bb",
+ "x-ms-ratelimit-remaining-subscription-reads": "11824",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222359Z:1fedf81b-1a39-4100-bd9e-1ac865fa33bb",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A23%3A50.3204153Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
+ },
+ "properties": {
+ "volumeType": "DataProtection",
+ "dataProtection": {
+ "replication": {
+ "replicationId": "598692f6-f6f0-b09c-626c-42e1127f1d41",
+ "endPointType": "Dst",
+ "replicationSchedule": "_10minutely",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:24:01 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A44.0777811Z\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": "16282c31-2688-43b8-b968-b911af99bbd4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11823",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222401Z:16282c31-2688-43b8-b968-b911af99bbd4",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T22%3A23%3A44.0777811Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:12:41.7418774Z"
+ },
+ "properties": {
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "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_d673703a",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "AuthorizeReplication"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:24:01 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A50.3204153Z\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": "baf3a37a-5300-403f-bf19-56ccd9787f1a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11822",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222401Z:baf3a37a-5300-403f-bf19-56ccd9787f1a",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A23%3A50.3204153Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
+ },
+ "properties": {
+ "volumeType": "DataProtection",
+ "dataProtection": {
+ "replication": {
+ "replicationId": "598692f6-f6f0-b09c-626c-42e1127f1d41",
+ "endPointType": "Dst",
+ "replicationSchedule": "_10minutely",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:24:02 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A44.0777811Z\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": "ef12689d-578a-4937-b9d5-a325f248b43f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11821",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222403Z:ef12689d-578a-4937-b9d5-a325f248b43f",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T22%3A23%3A44.0777811Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:12:41.7418774Z"
+ },
+ "properties": {
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "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_d673703a",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "AuthorizeReplication"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:24:03 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A50.3204153Z\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": "7a86b183-0afa-4a18-930c-eb7c1d2c3d61",
+ "x-ms-ratelimit-remaining-subscription-reads": "11820",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222403Z:7a86b183-0afa-4a18-930c-eb7c1d2c3d61",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A23%3A50.3204153Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
+ },
+ "properties": {
+ "volumeType": "DataProtection",
+ "dataProtection": {
+ "replication": {
+ "replicationId": "598692f6-f6f0-b09c-626c-42e1127f1d41",
+ "endPointType": "Dst",
+ "replicationSchedule": "_10minutely",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:24:04 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A44.0777811Z\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": "46338bdd-6b05-42ba-bc51-e1cad1c600c2",
+ "x-ms-ratelimit-remaining-subscription-reads": "11819",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222405Z:46338bdd-6b05-42ba-bc51-e1cad1c600c2",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T22%3A23%3A44.0777811Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:12:41.7418774Z"
+ },
+ "properties": {
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "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_d673703a",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "AuthorizeReplication"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:24:04 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A50.3204153Z\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": "199d5848-8fec-4fdd-bb18-74a034073e5b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11818",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222405Z:199d5848-8fec-4fdd-bb18-74a034073e5b",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A23%3A50.3204153Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
+ },
+ "properties": {
+ "volumeType": "DataProtection",
+ "dataProtection": {
+ "replication": {
+ "replicationId": "598692f6-f6f0-b09c-626c-42e1127f1d41",
+ "endPointType": "Dst",
+ "replicationSchedule": "_10minutely",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:24:06 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A44.0777811Z\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": "4f17bcaa-2f07-474b-8aa4-21152b0a4814",
+ "x-ms-ratelimit-remaining-subscription-reads": "11817",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222406Z:4f17bcaa-2f07-474b-8aa4-21152b0a4814",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T22%3A23%3A44.0777811Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:12:41.7418774Z"
+ },
+ "properties": {
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "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_d673703a",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "AuthorizeReplication"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:24:06 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A50.3204153Z\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": "4f9d39e0-f5ef-4c4b-b0a0-7e5f7b0549a7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11816",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222407Z:4f9d39e0-f5ef-4c4b-b0a0-7e5f7b0549a7",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A23%3A50.3204153Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
+ },
+ "properties": {
+ "volumeType": "DataProtection",
+ "dataProtection": {
+ "replication": {
+ "replicationId": "598692f6-f6f0-b09c-626c-42e1127f1d41",
+ "endPointType": "Dst",
+ "replicationSchedule": "_10minutely",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:24:08 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A44.0777811Z\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": "48364657-1065-45e2-95c2-8fb4ae1e6887",
+ "x-ms-ratelimit-remaining-subscription-reads": "11815",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222408Z:48364657-1065-45e2-95c2-8fb4ae1e6887",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T22%3A23%3A44.0777811Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:12:41.7418774Z"
+ },
+ "properties": {
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "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_d673703a",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "AuthorizeReplication"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:24:08 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A50.3204153Z\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": "79b86ebf-fee5-4f9a-a9d1-70045a35d8c9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11814",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222409Z:79b86ebf-fee5-4f9a-a9d1-70045a35d8c9",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A23%3A50.3204153Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
+ },
+ "properties": {
+ "volumeType": "DataProtection",
+ "dataProtection": {
+ "replication": {
+ "replicationId": "598692f6-f6f0-b09c-626c-42e1127f1d41",
+ "endPointType": "Dst",
+ "replicationSchedule": "_10minutely",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:24:09 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A44.0777811Z\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": "85effaff-8315-4986-b178-12805e2b8188",
+ "x-ms-ratelimit-remaining-subscription-reads": "11813",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222410Z:85effaff-8315-4986-b178-12805e2b8188",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T22%3A23%3A44.0777811Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:12:41.7418774Z"
+ },
+ "properties": {
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "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_d673703a",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "AuthorizeReplication"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:24:10 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A50.3204153Z\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": "388d8fed-4d17-4dd9-829f-6d3dda66fa52",
+ "x-ms-ratelimit-remaining-subscription-reads": "11812",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222410Z:388d8fed-4d17-4dd9-829f-6d3dda66fa52",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A23%3A50.3204153Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
+ },
+ "properties": {
+ "volumeType": "DataProtection",
+ "dataProtection": {
+ "replication": {
+ "replicationId": "598692f6-f6f0-b09c-626c-42e1127f1d41",
+ "endPointType": "Dst",
+ "replicationSchedule": "_10minutely",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:24:11 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A44.0777811Z\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": "d2f1d734-4394-4790-8178-edea7c3a00b2",
+ "x-ms-ratelimit-remaining-subscription-reads": "11811",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222412Z:d2f1d734-4394-4790-8178-edea7c3a00b2",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T22%3A23%3A44.0777811Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:12:41.7418774Z"
+ },
+ "properties": {
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "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_d673703a",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "AuthorizeReplication"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:24:12 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A50.3204153Z\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": "ab5b4cce-837f-40dc-bd3a-1274d358a4fc",
+ "x-ms-ratelimit-remaining-subscription-reads": "11810",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222412Z:ab5b4cce-837f-40dc-bd3a-1274d358a4fc",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A23%3A50.3204153Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
+ },
+ "properties": {
+ "volumeType": "DataProtection",
+ "dataProtection": {
+ "replication": {
+ "replicationId": "598692f6-f6f0-b09c-626c-42e1127f1d41",
+ "endPointType": "Dst",
+ "replicationSchedule": "_10minutely",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:24:13 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A44.0777811Z\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": "8d0ef905-2e84-4217-8527-0d45f747543e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11809",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222414Z:8d0ef905-2e84-4217-8527-0d45f747543e",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T22%3A23%3A44.0777811Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:12:41.7418774Z"
+ },
+ "properties": {
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "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_d673703a",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "AuthorizeReplication"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d70965fc-d2e4-4609-9af4-8e4a7bce74d6?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:24: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": "9ed3186f-3885-4310-b1bd-a78baf66edfb",
+ "x-ms-ratelimit-remaining-subscription-reads": "11808",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222414Z:9ed3186f-3885-4310-b1bd-a78baf66edfb",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d70965fc-d2e4-4609-9af4-8e4a7bce74d6",
+ "name": "d70965fc-d2e4-4609-9af4-8e4a7bce74d6",
+ "status": "AuthorizeReplication",
+ "startTime": "2022-07-27T22:23:44.0694921Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg-R/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:24:14 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A50.3204153Z\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": "461ba797-7440-4403-8868-774cd3b9da21",
+ "x-ms-ratelimit-remaining-subscription-reads": "11807",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222414Z:461ba797-7440-4403-8868-774cd3b9da21",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A23%3A50.3204153Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
+ },
+ "properties": {
+ "volumeType": "DataProtection",
+ "dataProtection": {
+ "replication": {
+ "replicationId": "598692f6-f6f0-b09c-626c-42e1127f1d41",
+ "endPointType": "Dst",
+ "replicationSchedule": "_10minutely",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:24:18 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A44.0777811Z\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": "c1184979-169e-4e16-8c35-24767b0b6b5e",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084406Z:c1184979-169e-4e16-8c35-24767b0b6b5e",
+ "x-ms-correlation-request-id": "b21318a4-ab4a-479e-a1e2-14322e07b7dd",
+ "x-ms-ratelimit-remaining-subscription-reads": "11999",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222418Z:b21318a4-ab4a-479e-a1e2-14322e07b7dd",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/88e367be-0856-4f27-91d7-ca6becc10143",
- "name": "88e367be-0856-4f27-91d7-ca6becc10143",
- "status": "Creating",
- "startTime": "2022-06-09T08:41:04.7490513Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T22%3A23%3A44.0777811Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:12:41.7418774Z"
+ },
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "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_d673703a",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "AuthorizeReplication"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/88e367be-0856-4f27-91d7-ca6becc10143?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -873,7 +6478,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:44:36 GMT",
+ "Date": "Wed, 27 Jul 2022 22:24:20 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A50.3204153Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -881,31 +6487,92 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "768975bf-b3ae-4ff3-9227-56082ba72dda",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084437Z:768975bf-b3ae-4ff3-9227-56082ba72dda",
+ "x-ms-correlation-request-id": "928bdd8b-80c8-406c-9090-ca67fda63300",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222420Z:928bdd8b-80c8-406c-9090-ca67fda63300",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/88e367be-0856-4f27-91d7-ca6becc10143",
- "name": "88e367be-0856-4f27-91d7-ca6becc10143",
- "status": "Creating",
- "startTime": "2022-06-09T08:41:04.7490513Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A23%3A50.3204153Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
+ },
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "volumeType": "DataProtection",
+ "dataProtection": {
+ "replication": {
+ "replicationId": "598692f6-f6f0-b09c-626c-42e1127f1d41",
+ "endPointType": "Dst",
+ "replicationSchedule": "_10minutely",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/88e367be-0856-4f27-91d7-ca6becc10143?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -913,7 +6580,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:45:06 GMT",
+ "Date": "Wed, 27 Jul 2022 22:24:21 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A44.0777811Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -921,31 +6589,192 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "adde3b03-ee0f-4d1d-9fb7-f45715da9d7d",
- "x-ms-ratelimit-remaining-subscription-reads": "11988",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084507Z:adde3b03-ee0f-4d1d-9fb7-f45715da9d7d",
+ "x-ms-correlation-request-id": "20f56f5a-a490-456e-b956-16902edd77a9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222421Z:20f56f5a-a490-456e-b956-16902edd77a9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/88e367be-0856-4f27-91d7-ca6becc10143",
- "name": "88e367be-0856-4f27-91d7-ca6becc10143",
- "status": "Succeeded",
- "startTime": "2022-06-09T08:41:04.7490513Z",
- "endTime": "2022-06-09T08:45:02.3582475Z",
- "percentComplete": 100.0,
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T22%3A23%3A44.0777811Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:12:41.7418774Z"
+ },
+ "properties": {
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "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_d673703a",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "AuthorizeReplication"
+ }
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:24:21 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A50.3204153Z\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": "e4c3fa67-083a-4659-84f3-4f00bccec953",
+ "x-ms-ratelimit-remaining-subscription-reads": "11996",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222422Z:e4c3fa67-083a-4659-84f3-4f00bccec953",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A23%3A50.3204153Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
+ },
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "volumeType": "DataProtection",
+ "dataProtection": {
+ "replication": {
+ "replicationId": "598692f6-f6f0-b09c-626c-42e1127f1d41",
+ "endPointType": "Dst",
+ "replicationSchedule": "_10minutely",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -953,8 +6782,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:45:07 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A45%3A02.3459073Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:24:23 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A24%3A23.5398834Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -962,24 +6791,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d1c651aa-2542-4a6b-be89-d4c0495e68d3",
- "x-ms-ratelimit-remaining-subscription-reads": "11987",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084507Z:d1c651aa-2542-4a6b-be89-d4c0495e68d3",
+ "x-ms-correlation-request-id": "97e6ca40-3ef1-4e1e-9573-dab665a41482",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222423Z:97e6ca40-3ef1-4e1e-9573-dab665a41482",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-06-09T08%3A45%3A02.3459073Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T22%3A24%3A23.5398834Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
+ "CreatedOnDate": "2022-07-27T22:12:41.7418774Z"
},
"properties": {
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
+ "dataProtection": {
+ "replication": {
+ "endPointType": "Src",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-b2-86eb264b",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -1005,10 +6841,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d673703a",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -1020,12 +6856,12 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "ipAddress": "10.0.0.4"
}
],
- "throughputMibps": 6.4,
+ "throughputMibps": 6.25,
"volumeSpecName": "generic",
"coolAccess": false,
"avsDataStore": "Disabled",
@@ -1039,107 +6875,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2022-01-01",
- "RequestMethod": "PUT",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "22",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
- },
- "RequestBody": {
- "location": "westus"
- },
- "StatusCode": 201,
- "ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/1bb81ba0-ed7e-4393-882a-84571126c27d?api-version=2022-01-01",
- "Cache-Control": "no-cache",
- "Content-Length": "687",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:45:14 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A45%3A14.2545741Z\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": "4bf74acf-6cf4-44ab-a5fd-d85a956c3e64",
- "x-ms-ratelimit-remaining-subscription-writes": "1196",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084515Z:4bf74acf-6cf4-44ab-a5fd-d85a956c3e64",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2",
- "name": "sdk-py-tests-acc-2",
- "type": "Microsoft.NetApp/netAppAccounts",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A45%3A14.2545741Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:45:08.6784363Z"
- },
- "properties": {
- "provisioningState": "Creating"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-06-09T08:45:13.3380366Z",
- "createdByType": "Application",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-06-09T08:45:13.3380366Z",
- "lastModifiedByType": "Application"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/1bb81ba0-ed7e-4393-882a-84571126c27d?api-version=2022-01-01",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08: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": "64b62d6e-8479-4d8f-b75d-1fdb0ca9b9b8",
- "x-ms-ratelimit-remaining-subscription-reads": "11986",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084545Z:64b62d6e-8479-4d8f-b75d-1fdb0ca9b9b8",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/1bb81ba0-ed7e-4393-882a-84571126c27d",
- "name": "1bb81ba0-ed7e-4393-882a-84571126c27d",
- "status": "Succeeded",
- "startTime": "2022-06-09T08:45:14.2597431Z",
- "endTime": "2022-06-09T08:45:14.2909851Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1147,8 +6889,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:45:45 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A45%3A14.2947367Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:24:23 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A23%3A50.3204153Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1156,110 +6898,92 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9c6d2c7b-d967-4b78-be28-00a37beedd7e",
- "x-ms-ratelimit-remaining-subscription-reads": "11985",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084546Z:9c6d2c7b-d967-4b78-be28-00a37beedd7e",
+ "x-ms-correlation-request-id": "e5220288-9ca5-4106-ac42-0bd429e872e5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222424Z:e5220288-9ca5-4106-ac42-0bd429e872e5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2",
- "name": "sdk-py-tests-acc-2",
- "type": "Microsoft.NetApp/netAppAccounts",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A45%3A14.2947367Z\u0027\u0022",
- "location": "westus",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A23%3A50.3204153Z\u0027\u0022",
+ "location": "eastus2",
"tags": {
- "CreatedOnDate": "2022-06-09T08:45:08.6784363Z"
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
},
"properties": {
- "encryption": {
- "keySource": "Microsoft.NetApp"
+ "volumeType": "DataProtection",
+ "dataProtection": {
+ "replication": {
+ "replicationId": "598692f6-f6f0-b09c-626c-42e1127f1d41",
+ "endPointType": "Dst",
+ "replicationSchedule": "_10minutely",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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"
+ }
},
- "provisioningState": "Succeeded"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-06-09T08:45:13.3380366Z",
- "createdByType": "Application",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-06-09T08:45:13.3380366Z",
- "lastModifiedByType": "Application"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2?api-version=2022-01-01",
- "RequestMethod": "PUT",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "137",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
- },
- "RequestBody": {
- "location": "westus",
- "properties": {
- "size": 4398046511104,
- "serviceLevel": "Premium",
- "coolAccess": false,
- "encryptionType": "Single"
- }
- },
- "StatusCode": 201,
- "ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/30cf4bbd-d717-4814-a2fb-eb6de655433f?api-version=2022-01-01",
- "Cache-Control": "no-cache",
- "Content-Length": "905",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:45:49 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A45%3A49.1404774Z\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": "5eeec46b-5636-4c94-a375-6e3c37e1c1ac",
- "x-ms-ratelimit-remaining-subscription-writes": "1195",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084550Z:5eeec46b-5636-4c94-a375-6e3c37e1c1ac",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A45%3A49.1404774Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:45:46.4570107Z"
- },
- "properties": {
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
"serviceLevel": "Premium",
- "size": 4398046511104,
- "totalThroughputMibps": 0.0,
- "utilizedThroughputMibps": 0.0,
- "encryptionType": "Single",
+ "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_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
"coolAccess": false,
- "provisioningState": "Creating"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-06-09T08:45:48.9163906Z",
- "createdByType": "Application",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-06-09T08:45:48.9163906Z",
- "lastModifiedByType": "Application"
+ "avsDataStore": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/30cf4bbd-d717-4814-a2fb-eb6de655433f?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d70965fc-d2e4-4609-9af4-8e4a7bce74d6?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1267,7 +6991,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:46:19 GMT",
+ "Date": "Wed, 27 Jul 2022 22:24:44 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1275,31 +6999,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "24893c0b-7797-479b-8baa-afadf2100f20",
- "x-ms-ratelimit-remaining-subscription-reads": "11984",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084620Z:24893c0b-7797-479b-8baa-afadf2100f20",
+ "x-ms-correlation-request-id": "8ed29de7-9b65-4564-a9d6-fef633b51dae",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222444Z:8ed29de7-9b65-4564-a9d6-fef633b51dae",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/30cf4bbd-d717-4814-a2fb-eb6de655433f",
- "name": "30cf4bbd-d717-4814-a2fb-eb6de655433f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d70965fc-d2e4-4609-9af4-8e4a7bce74d6",
+ "name": "d70965fc-d2e4-4609-9af4-8e4a7bce74d6",
"status": "Succeeded",
- "startTime": "2022-06-09T08:45:49.1432861Z",
- "endTime": "2022-06-09T08:45:49.4089238Z",
+ "startTime": "2022-07-27T22:23:44.0694921Z",
+ "endTime": "2022-07-27T22:24:23.5385259Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d70965fc-d2e4-4609-9af4-8e4a7bce74d6?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1307,167 +7031,122 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:46:20 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A45%3A49.4067557Z\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": "a2f76592-cb61-4c8b-b22f-6884efa0e24a",
- "x-ms-ratelimit-remaining-subscription-reads": "11983",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084621Z:a2f76592-cb61-4c8b-b22f-6884efa0e24a",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A45%3A49.4067557Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:45:46.4570107Z"
- },
- "properties": {
- "poolId": "83a8e743-45f2-80c6-14d9-132fff6e1fb5",
- "serviceLevel": "Premium",
- "size": 4398046511104,
- "qosType": "Auto",
- "totalThroughputMibps": 262.144,
- "utilizedThroughputMibps": 0.0,
- "encryptionType": "Single",
- "coolAccess": false,
- "provisioningState": "Succeeded"
- }
- }
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
- "RequestMethod": "PUT",
- "RequestHeaders": {
- "Accept": "application/json",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "1161",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
- },
- "RequestBody": {
- "location": "westus",
- "properties": {
- "creationToken": "sdk-py-tests-vol-2",
- "serviceLevel": "Premium",
- "usageThreshold": 107374182400,
- "protocolTypes": [
- "NFSv3"
- ],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "endpointType": "dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- },
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "coolAccess": false,
- "unixPermissions": "0770",
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled"
- }
- },
- "StatusCode": 201,
- "ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/e1bf6759-240d-4611-9dec-93d79e93e1a3?api-version=2022-01-01",
- "Cache-Control": "no-cache",
- "Content-Length": "1919",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:46:34 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A46%3A33.3280203Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22: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": "176d492e-459f-4f43-98f0-3828d0822cd9",
- "x-ms-ratelimit-remaining-subscription-writes": "1194",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084634Z:176d492e-459f-4f43-98f0-3828d0822cd9",
+ "x-ms-correlation-request-id": "db255ccd-127c-4a78-b568-4922547a845e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222445Z:db255ccd-127c-4a78-b568-4922547a845e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-06-09T08%3A46%3A33.3280203Z\u0027\u0022",
- "location": "westus",
+ "etag": "W/\u0022datetime\u00272022-07-27T22%3A24%3A23.5398834Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
+ "CreatedOnDate": "2022-07-27T22:12:41.7418774Z"
},
"properties": {
- "volumeType": "DataProtection",
"dataProtection": {
"replication": {
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "endPointType": "Src",
+ "replicationStatus": "",
+ "remotePath": {
+ "externalHostName": "az-bn13-f01c01-bs118-sto",
+ "serverName": "svm_1a1854d05b8211e99e4a3a8c013b5748_3caa7397",
+ "volumeName": "vol_sdk_py_tests_vol_4_b2_86eb264b_53e43d"
+ },
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
+ "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"
],
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d673703a",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
"networkFeatures": "Basic",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
+ "storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "8feaea52-0b7c-d598-c547-8a80256cefae",
+ "mountTargets": [
+ {
+ "provisioningState": "",
+ "mountTargetId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "startIp": "",
+ "endIp": "",
+ "gateway": "",
+ "netmask": "",
+ "subnet": "",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
"kerberosEnabled": false,
- "securityStyle": "unix",
+ "securityStyle": "Unix",
"smbEncryption": false,
"smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
"ldapEnabled": false,
"unixPermissions": "0770",
+ "encryptionKeySource": "Microsoft.NetApp",
+ "volumeSpecName": "generic",
"coolAccess": false,
"avsDataStore": "Disabled",
"isDefaultQuotaEnabled": false,
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Creating"
- },
- "systemData": {
- "createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-06-09T08:46:32.9479303Z",
- "createdByType": "Application",
- "lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-06-09T08:46:32.9479303Z",
- "lastModifiedByType": "Application"
+ "encrypted": true,
+ "provisioningState": "Succeeded"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/e1bf6759-240d-4611-9dec-93d79e93e1a3?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1475,7 +7154,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:47:04 GMT",
+ "Date": "Wed, 27 Jul 2022 22:24:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1483,31 +7162,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4559bcfa-8667-4698-ac26-18598bcf1f80",
- "x-ms-ratelimit-remaining-subscription-reads": "11982",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084704Z:4559bcfa-8667-4698-ac26-18598bcf1f80",
+ "x-ms-correlation-request-id": "5579b525-59cc-4b97-b231-aa1986511dde",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222454Z:5579b525-59cc-4b97-b231-aa1986511dde",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/e1bf6759-240d-4611-9dec-93d79e93e1a3",
- "name": "e1bf6759-240d-4611-9dec-93d79e93e1a3",
- "status": "Creating",
- "startTime": "2022-06-09T08:46:33.3264847Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"
- }
+ "healthy": true,
+ "relationshipStatus": "Idle",
+ "mirrorState": "Uninitialized",
+ "totalProgress": "0",
+ "errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/e1bf6759-240d-4611-9dec-93d79e93e1a3?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1515,7 +7190,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:47:34 GMT",
+ "Date": "Wed, 27 Jul 2022 22:24:56 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1523,31 +7198,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "573db7f0-1bfe-4dd6-9164-ecf74591344a",
- "x-ms-ratelimit-remaining-subscription-reads": "11981",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084734Z:573db7f0-1bfe-4dd6-9164-ecf74591344a",
+ "x-ms-correlation-request-id": "a3731f4a-c937-4ebb-9062-503dcba1684c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222456Z:a3731f4a-c937-4ebb-9062-503dcba1684c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/e1bf6759-240d-4611-9dec-93d79e93e1a3",
- "name": "e1bf6759-240d-4611-9dec-93d79e93e1a3",
- "status": "Creating",
- "startTime": "2022-06-09T08:46:33.3264847Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"
- }
+ "healthy": true,
+ "relationshipStatus": "Idle",
+ "mirrorState": "Uninitialized",
+ "totalProgress": "0",
+ "errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/e1bf6759-240d-4611-9dec-93d79e93e1a3?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1555,7 +7226,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:48:04 GMT",
+ "Date": "Wed, 27 Jul 2022 22:24:57 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1563,31 +7234,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "64aaa5e8-8a21-48e5-a2af-ebacb6b8aa25",
- "x-ms-ratelimit-remaining-subscription-reads": "11980",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084805Z:64aaa5e8-8a21-48e5-a2af-ebacb6b8aa25",
+ "x-ms-correlation-request-id": "d8c1b076-33ee-43d2-a9de-e06577c066b3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222457Z:d8c1b076-33ee-43d2-a9de-e06577c066b3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/e1bf6759-240d-4611-9dec-93d79e93e1a3",
- "name": "e1bf6759-240d-4611-9dec-93d79e93e1a3",
- "status": "Creating",
- "startTime": "2022-06-09T08:46:33.3264847Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"
- }
+ "healthy": true,
+ "relationshipStatus": "Idle",
+ "mirrorState": "Uninitialized",
+ "totalProgress": "0",
+ "errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/e1bf6759-240d-4611-9dec-93d79e93e1a3?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1595,7 +7262,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:48:35 GMT",
+ "Date": "Wed, 27 Jul 2022 22:24:58 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1603,31 +7270,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3e6d8990-420c-40de-be07-096eb5208005",
- "x-ms-ratelimit-remaining-subscription-reads": "11979",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084835Z:3e6d8990-420c-40de-be07-096eb5208005",
+ "x-ms-correlation-request-id": "fb56df55-cb95-4761-9841-02915ce7c48d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222459Z:fb56df55-cb95-4761-9841-02915ce7c48d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/e1bf6759-240d-4611-9dec-93d79e93e1a3",
- "name": "e1bf6759-240d-4611-9dec-93d79e93e1a3",
- "status": "Creating",
- "startTime": "2022-06-09T08:46:33.3264847Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"
- }
+ "healthy": true,
+ "relationshipStatus": "Idle",
+ "mirrorState": "Uninitialized",
+ "totalProgress": "0",
+ "errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/e1bf6759-240d-4611-9dec-93d79e93e1a3?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1635,7 +7298,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:49:05 GMT",
+ "Date": "Wed, 27 Jul 2022 22:25:00 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1643,31 +7306,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "cd994820-2c61-47e2-a996-551fc11bed93",
- "x-ms-ratelimit-remaining-subscription-reads": "11978",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084905Z:cd994820-2c61-47e2-a996-551fc11bed93",
+ "x-ms-correlation-request-id": "8c099520-20f7-4640-9f52-fb2e6ccd5636",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222500Z:8c099520-20f7-4640-9f52-fb2e6ccd5636",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/e1bf6759-240d-4611-9dec-93d79e93e1a3",
- "name": "e1bf6759-240d-4611-9dec-93d79e93e1a3",
- "status": "Creating",
- "startTime": "2022-06-09T08:46:33.3264847Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"
- }
+ "healthy": true,
+ "relationshipStatus": "Idle",
+ "mirrorState": "Uninitialized",
+ "totalProgress": "0",
+ "errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/e1bf6759-240d-4611-9dec-93d79e93e1a3?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1675,7 +7334,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:49:35 GMT",
+ "Date": "Wed, 27 Jul 2022 22:25:01 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1683,31 +7342,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8d52177a-0b35-48a2-824b-717486344636",
- "x-ms-ratelimit-remaining-subscription-reads": "11977",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T084935Z:8d52177a-0b35-48a2-824b-717486344636",
+ "x-ms-correlation-request-id": "1318573e-968c-4f0a-9514-35be93b864b1",
+ "x-ms-ratelimit-remaining-subscription-reads": "11986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222502Z:1318573e-968c-4f0a-9514-35be93b864b1",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/e1bf6759-240d-4611-9dec-93d79e93e1a3",
- "name": "e1bf6759-240d-4611-9dec-93d79e93e1a3",
- "status": "Creating",
- "startTime": "2022-06-09T08:46:33.3264847Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"
- }
+ "healthy": true,
+ "relationshipStatus": "Idle",
+ "mirrorState": "Uninitialized",
+ "totalProgress": "0",
+ "errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/e1bf6759-240d-4611-9dec-93d79e93e1a3?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1715,7 +7370,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:50:05 GMT",
+ "Date": "Wed, 27 Jul 2022 22:25:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1723,31 +7378,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "eb6ff1e6-a5c0-483f-b59b-d60493598802",
- "x-ms-ratelimit-remaining-subscription-reads": "11976",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085006Z:eb6ff1e6-a5c0-483f-b59b-d60493598802",
+ "x-ms-correlation-request-id": "348a7803-359e-4238-ab50-d57b4c79b666",
+ "x-ms-ratelimit-remaining-subscription-reads": "11985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222503Z:348a7803-359e-4238-ab50-d57b4c79b666",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/e1bf6759-240d-4611-9dec-93d79e93e1a3",
- "name": "e1bf6759-240d-4611-9dec-93d79e93e1a3",
- "status": "Creating",
- "startTime": "2022-06-09T08:46:33.3264847Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"
- }
+ "healthy": true,
+ "relationshipStatus": "Idle",
+ "mirrorState": "Uninitialized",
+ "totalProgress": "0",
+ "errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/e1bf6759-240d-4611-9dec-93d79e93e1a3?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1755,7 +7406,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:50:36 GMT",
+ "Date": "Wed, 27 Jul 2022 22:25:04 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1763,31 +7414,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c6b81ae3-8573-41ec-be52-a747a450ff74",
- "x-ms-ratelimit-remaining-subscription-reads": "11975",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085037Z:c6b81ae3-8573-41ec-be52-a747a450ff74",
+ "x-ms-correlation-request-id": "ab46a2ba-5e61-4897-9ada-a964799214c4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11984",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222505Z:ab46a2ba-5e61-4897-9ada-a964799214c4",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/e1bf6759-240d-4611-9dec-93d79e93e1a3",
- "name": "e1bf6759-240d-4611-9dec-93d79e93e1a3",
- "status": "Succeeded",
- "startTime": "2022-06-09T08:46:33.3264847Z",
- "endTime": "2022-06-09T08:50:24.7754638Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1795,8 +7442,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:50:36 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A50%3A24.7751527Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:05 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1804,123 +7450,99 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "443abb93-9e38-4bcc-a096-4752d5ff7236",
- "x-ms-ratelimit-remaining-subscription-reads": "11974",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085037Z:443abb93-9e38-4bcc-a096-4752d5ff7236",
+ "x-ms-correlation-request-id": "dba6fe43-4ecb-47c5-9266-6ad96428f463",
+ "x-ms-ratelimit-remaining-subscription-reads": "11983",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222506Z:dba6fe43-4ecb-47c5-9266-6ad96428f463",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A50%3A24.7751527Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/authorizeReplication?api-version=2022-01-01",
- "RequestMethod": "POST",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
+ "RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "243",
- "Content-Type": "application/json",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
- "RequestBody": {
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Encoding": "gzip",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Wed, 27 Jul 2022 22:25: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": "4535e1fc-ec3a-4406-9de1-7772b1c121de",
+ "x-ms-ratelimit-remaining-subscription-reads": "11982",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222507Z:4535e1fc-ec3a-4406-9de1-7772b1c121de",
+ "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/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/eastus/operationResults/17fbedab-18ed-401e-b490-f6f3d5db65ce?api-version=2022-01-01",
"Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Thu, 09 Jun 2022 08:51:08 GMT",
+ "Content-Encoding": "gzip",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Wed, 27 Jul 2022 22:25:08 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/17fbedab-18ed-401e-b490-f6f3d5db65ce?api-version=2022-01-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": "479c077a-4a7c-40b2-9d9c-23752da59caf",
- "x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085108Z:479c077a-4a7c-40b2-9d9c-23752da59caf",
+ "x-ms-correlation-request-id": "d1ab78d6-da14-4666-93cc-f5063f38d676",
+ "x-ms-ratelimit-remaining-subscription-reads": "11981",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222509Z:d1ab78d6-da14-4666-93cc-f5063f38d676",
"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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -1928,8 +7550,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:08 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -1937,90 +7558,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "49a15085-777d-4353-b12f-951b691504cb",
- "x-ms-ratelimit-remaining-subscription-reads": "11973",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085108Z:49a15085-777d-4353-b12f-951b691504cb",
+ "x-ms-correlation-request-id": "133fd945-4558-4273-ab73-6f2cea1c8c07",
+ "x-ms-ratelimit-remaining-subscription-reads": "11980",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222510Z:133fd945-4558-4273-ab73-6f2cea1c8c07",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "AuthorizeReplication"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2028,8 +7586,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:09 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A50%3A24.7751527Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:11 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2037,90 +7594,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "779d008b-f04f-46f0-9107-40ee6ec4dfac",
- "x-ms-ratelimit-remaining-subscription-reads": "11972",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085109Z:779d008b-f04f-46f0-9107-40ee6ec4dfac",
+ "x-ms-correlation-request-id": "e4bec806-7d10-4001-b105-7511eca5ec51",
+ "x-ms-ratelimit-remaining-subscription-reads": "11979",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222512Z:e4bec806-7d10-4001-b105-7511eca5ec51",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A50%3A24.7751527Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2128,8 +7622,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:10 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:13 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2137,90 +7630,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "03aed1c1-936d-4b08-83f7-15c8a98e2170",
- "x-ms-ratelimit-remaining-subscription-reads": "11971",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085110Z:03aed1c1-936d-4b08-83f7-15c8a98e2170",
+ "x-ms-correlation-request-id": "ecd4c9bd-214b-4f19-a596-caae183c27f7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11978",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222513Z:ecd4c9bd-214b-4f19-a596-caae183c27f7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "AuthorizeReplication"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2228,8 +7658,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:10 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A50%3A24.7751527Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:14 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2237,90 +7666,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "de1d269f-b416-48ea-a238-f3edc01410e5",
- "x-ms-ratelimit-remaining-subscription-reads": "11970",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085111Z:de1d269f-b416-48ea-a238-f3edc01410e5",
+ "x-ms-correlation-request-id": "fadabef5-e048-4e9f-8996-808fa41725de",
+ "x-ms-ratelimit-remaining-subscription-reads": "11977",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222515Z:fadabef5-e048-4e9f-8996-808fa41725de",
"X-Powered-By": "ASP.NET"
},
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A50%3A24.7751527Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2328,8 +7694,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:12 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:16 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2337,90 +7702,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a23f4afa-9d43-4c78-b212-4ebdfeee9115",
- "x-ms-ratelimit-remaining-subscription-reads": "11969",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085112Z:a23f4afa-9d43-4c78-b212-4ebdfeee9115",
+ "x-ms-correlation-request-id": "b39fe289-a146-4398-a4a9-af652ff05160",
+ "x-ms-ratelimit-remaining-subscription-reads": "11976",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222516Z:b39fe289-a146-4398-a4a9-af652ff05160",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "AuthorizeReplication"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2428,8 +7730,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:12 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A12.7139003Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:17 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2437,90 +7738,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8c836d27-6bed-48af-bc46-d9a7d66c2437",
- "x-ms-ratelimit-remaining-subscription-reads": "11968",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085112Z:8c836d27-6bed-48af-bc46-d9a7d66c2437",
+ "x-ms-correlation-request-id": "63cdc11a-f8bb-4e7f-ab8a-29c21b433d70",
+ "x-ms-ratelimit-remaining-subscription-reads": "11975",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222518Z:63cdc11a-f8bb-4e7f-ab8a-29c21b433d70",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A12.7139003Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Accepted"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2528,8 +7766,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:13 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:18 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2537,90 +7774,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f3b7deee-b993-4785-8734-74da312ae3df",
- "x-ms-ratelimit-remaining-subscription-reads": "11967",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085114Z:f3b7deee-b993-4785-8734-74da312ae3df",
+ "x-ms-correlation-request-id": "f152251d-5839-43df-b8cb-5bf791bf34ed",
+ "x-ms-ratelimit-remaining-subscription-reads": "11974",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222519Z:f152251d-5839-43df-b8cb-5bf791bf34ed",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "AuthorizeReplication"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2628,8 +7802,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:14 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A12.726893Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:20 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2637,90 +7810,63 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "98cf6375-fbc6-4767-95bf-2ab8c52ca781",
- "x-ms-ratelimit-remaining-subscription-reads": "11966",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085114Z:98cf6375-fbc6-4767-95bf-2ab8c52ca781",
+ "x-ms-correlation-request-id": "72bc2ad3-3a19-4d3b-85af-ceeb200f108b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11973",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222521Z:72bc2ad3-3a19-4d3b-85af-ceeb200f108b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A12.726893Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "ActivateReplication"
- }
+ "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/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:25: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": "f2a2452b-5e69-49cf-bfd2-d8282e198c7e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11972",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222522Z:f2a2452b-5e69-49cf-bfd2-d8282e198c7e",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2728,8 +7874,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:15 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:23 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2737,90 +7882,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c32cd4b3-bc65-45d2-8837-f067cc0d2e83",
- "x-ms-ratelimit-remaining-subscription-reads": "11965",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085115Z:c32cd4b3-bc65-45d2-8837-f067cc0d2e83",
+ "x-ms-correlation-request-id": "e081abc3-07d5-41f0-8502-1730122188ce",
+ "x-ms-ratelimit-remaining-subscription-reads": "11971",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222524Z:e081abc3-07d5-41f0-8502-1730122188ce",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "AuthorizeReplication"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2828,8 +7910,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:16 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:24 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2837,92 +7918,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7906bcee-26d7-4ca3-9846-be681015e0a1",
- "x-ms-ratelimit-remaining-subscription-reads": "11964",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085116Z:7906bcee-26d7-4ca3-9846-be681015e0a1",
+ "x-ms-correlation-request-id": "e4e89253-3f4e-43ad-abb2-964ea36fa48c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11970",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222525Z:e4e89253-3f4e-43ad-abb2-964ea36fa48c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "replicationId": "daa072fe-2d41-0248-d609-26def5a3c335",
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "remoteVolumeRegion": "eastus"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -2930,8 +7946,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:17 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:26 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -2939,90 +7954,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d4c2a5d4-3161-4bc2-9f4a-98a9c90a31c8",
- "x-ms-ratelimit-remaining-subscription-reads": "11963",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085117Z:d4c2a5d4-3161-4bc2-9f4a-98a9c90a31c8",
+ "x-ms-correlation-request-id": "52032d91-cb34-4fa2-94ea-f127bfa674e2",
+ "x-ms-ratelimit-remaining-subscription-reads": "11969",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222526Z:52032d91-cb34-4fa2-94ea-f127bfa674e2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "AuthorizeReplication"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3030,8 +7982,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:17 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:27 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3039,92 +7990,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3164bad3-065e-4e08-9d3f-2f74c94b3eb2",
- "x-ms-ratelimit-remaining-subscription-reads": "11962",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085117Z:3164bad3-065e-4e08-9d3f-2f74c94b3eb2",
+ "x-ms-correlation-request-id": "d1d93038-279d-4084-bae7-fcd38993e670",
+ "x-ms-ratelimit-remaining-subscription-reads": "11968",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222528Z:d1d93038-279d-4084-bae7-fcd38993e670",
"X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "replicationId": "daa072fe-2d41-0248-d609-26def5a3c335",
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "remoteVolumeRegion": "eastus"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ },
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3132,8 +8018,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:19 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:28 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3141,90 +8026,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3ea83a69-6d2f-4b55-93a2-ac424705d596",
- "x-ms-ratelimit-remaining-subscription-reads": "11961",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085119Z:3ea83a69-6d2f-4b55-93a2-ac424705d596",
+ "x-ms-correlation-request-id": "3a466465-595f-4a24-a39b-455963029fcc",
+ "x-ms-ratelimit-remaining-subscription-reads": "11967",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222529Z:3a466465-595f-4a24-a39b-455963029fcc",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "AuthorizeReplication"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3232,8 +8054,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:19 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3241,92 +8062,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "63752faf-a334-45e1-8f01-c97d81f66ee6",
- "x-ms-ratelimit-remaining-subscription-reads": "11960",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085119Z:63752faf-a334-45e1-8f01-c97d81f66ee6",
+ "x-ms-correlation-request-id": "166d7f54-0470-41f6-b2af-f57ee9bccc1d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11966",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222531Z:166d7f54-0470-41f6-b2af-f57ee9bccc1d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "replicationId": "daa072fe-2d41-0248-d609-26def5a3c335",
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "remoteVolumeRegion": "eastus"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3334,8 +8090,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:20 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:31 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3343,90 +8098,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e5becf53-dec0-4be5-98aa-13b63568da6f",
- "x-ms-ratelimit-remaining-subscription-reads": "11959",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085120Z:e5becf53-dec0-4be5-98aa-13b63568da6f",
+ "x-ms-correlation-request-id": "1d079520-0414-46e8-85a2-723f537444eb",
+ "x-ms-ratelimit-remaining-subscription-reads": "11965",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222532Z:1d079520-0414-46e8-85a2-723f537444eb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "AuthorizeReplication"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3434,8 +8126,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:21 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3443,92 +8134,63 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "96941616-ce6b-4207-9678-761f95aa7d85",
- "x-ms-ratelimit-remaining-subscription-reads": "11958",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085121Z:96941616-ce6b-4207-9678-761f95aa7d85",
+ "x-ms-correlation-request-id": "33808316-db2b-46a3-a3a3-39dca7107e96",
+ "x-ms-ratelimit-remaining-subscription-reads": "11964",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222534Z:33808316-db2b-46a3-a3a3-39dca7107e96",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "replicationId": "daa072fe-2d41-0248-d609-26def5a3c335",
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "remoteVolumeRegion": "eastus"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "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/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:25: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": "10cd0240-54f0-476f-8d55-06c3f4b858fd",
+ "x-ms-ratelimit-remaining-subscription-reads": "11963",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222535Z:10cd0240-54f0-476f-8d55-06c3f4b858fd",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3536,8 +8198,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:22 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:36 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3545,90 +8206,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6de97f5c-a852-4ddf-8a01-49dcf5e4edce",
- "x-ms-ratelimit-remaining-subscription-reads": "11957",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085122Z:6de97f5c-a852-4ddf-8a01-49dcf5e4edce",
+ "x-ms-correlation-request-id": "a72ca43a-36a8-45e1-b122-18dc30093ed9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11962",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222537Z:a72ca43a-36a8-45e1-b122-18dc30093ed9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "AuthorizeReplication"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3636,8 +8234,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:22 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:37 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3645,92 +8242,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "bb64b596-922b-4da9-9df9-152a02ea2c65",
- "x-ms-ratelimit-remaining-subscription-reads": "11956",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085123Z:bb64b596-922b-4da9-9df9-152a02ea2c65",
+ "x-ms-correlation-request-id": "4b85fa63-08e3-4cd1-9f2b-9d8afbb78ae7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11961",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222538Z:4b85fa63-08e3-4cd1-9f2b-9d8afbb78ae7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "replicationId": "daa072fe-2d41-0248-d609-26def5a3c335",
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "remoteVolumeRegion": "eastus"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3738,8 +8270,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:24 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:39 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3747,90 +8278,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "af56932d-f7ce-4734-8bc8-afc5b091139e",
- "x-ms-ratelimit-remaining-subscription-reads": "11955",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085124Z:af56932d-f7ce-4734-8bc8-afc5b091139e",
+ "x-ms-correlation-request-id": "77402f58-a927-4ba7-b04e-9be263478880",
+ "x-ms-ratelimit-remaining-subscription-reads": "11960",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222540Z:77402f58-a927-4ba7-b04e-9be263478880",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "AuthorizeReplication"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3838,8 +8306,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:24 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:40 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3847,92 +8314,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3a616768-6457-4db7-a509-fcff634e3ba9",
- "x-ms-ratelimit-remaining-subscription-reads": "11954",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085124Z:3a616768-6457-4db7-a509-fcff634e3ba9",
+ "x-ms-correlation-request-id": "08c918b6-48a3-4bc5-8d6d-7f9df5aa7b7f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11959",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222541Z:08c918b6-48a3-4bc5-8d6d-7f9df5aa7b7f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "replicationId": "daa072fe-2d41-0248-d609-26def5a3c335",
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "remoteVolumeRegion": "eastus"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -3940,8 +8342,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:25 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:42 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -3949,90 +8350,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "beed4843-79c1-45bc-abd5-79e585f8c211",
- "x-ms-ratelimit-remaining-subscription-reads": "11953",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085126Z:beed4843-79c1-45bc-abd5-79e585f8c211",
+ "x-ms-correlation-request-id": "c46c0356-4605-4b01-9694-0100403bb097",
+ "x-ms-ratelimit-remaining-subscription-reads": "11958",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222543Z:c46c0356-4605-4b01-9694-0100403bb097",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "AuthorizeReplication"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4040,8 +8378,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:26 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:44 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4049,92 +8386,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8451e66f-e77e-4e51-afc9-490da698dd1c",
- "x-ms-ratelimit-remaining-subscription-reads": "11952",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085126Z:8451e66f-e77e-4e51-afc9-490da698dd1c",
+ "x-ms-correlation-request-id": "ece27717-8c27-449e-a14f-3bb6bf61b711",
+ "x-ms-ratelimit-remaining-subscription-reads": "11957",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222544Z:ece27717-8c27-449e-a14f-3bb6bf61b711",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "replicationId": "daa072fe-2d41-0248-d609-26def5a3c335",
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "remoteVolumeRegion": "eastus"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4142,8 +8414,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:27 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:45 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4151,90 +8422,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6bee9b6c-701a-470d-895f-509f0563d1b7",
- "x-ms-ratelimit-remaining-subscription-reads": "11951",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085127Z:6bee9b6c-701a-470d-895f-509f0563d1b7",
+ "x-ms-correlation-request-id": "ff7c89bb-5549-48a4-a3fa-0b9677d62671",
+ "x-ms-ratelimit-remaining-subscription-reads": "11956",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222545Z:ff7c89bb-5549-48a4-a3fa-0b9677d62671",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "AuthorizeReplication"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4242,8 +8450,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:28 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:47 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4251,92 +8458,63 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c5c0447b-83b8-4d01-98ac-34c8293cb55f",
- "x-ms-ratelimit-remaining-subscription-reads": "11950",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085128Z:c5c0447b-83b8-4d01-98ac-34c8293cb55f",
+ "x-ms-correlation-request-id": "c584eb43-c53b-43f6-9c53-d651650e5dbf",
+ "x-ms-ratelimit-remaining-subscription-reads": "11955",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222547Z:c584eb43-c53b-43f6-9c53-d651650e5dbf",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "replicationId": "daa072fe-2d41-0248-d609-26def5a3c335",
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "remoteVolumeRegion": "eastus"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "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/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:25: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": "03d23e0a-25a0-4e18-bc6c-fa30193d8afc",
+ "x-ms-ratelimit-remaining-subscription-reads": "11954",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222548Z:03d23e0a-25a0-4e18-bc6c-fa30193d8afc",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4344,8 +8522,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:29 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:50 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4353,90 +8530,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7b17da26-0341-41d8-8e2d-c1c42a0b7626",
- "x-ms-ratelimit-remaining-subscription-reads": "11949",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085129Z:7b17da26-0341-41d8-8e2d-c1c42a0b7626",
+ "x-ms-correlation-request-id": "fe05a66a-c77a-48cc-8b70-6f89e2806ac8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11953",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222550Z:fe05a66a-c77a-48cc-8b70-6f89e2806ac8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "AuthorizeReplication"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4444,8 +8558,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:29 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4453,92 +8566,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1f462080-2d6a-4ca2-94e1-ae0cdb4ad75d",
- "x-ms-ratelimit-remaining-subscription-reads": "11948",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085130Z:1f462080-2d6a-4ca2-94e1-ae0cdb4ad75d",
+ "x-ms-correlation-request-id": "677b102b-c8bf-4f16-9a19-a667f73204ab",
+ "x-ms-ratelimit-remaining-subscription-reads": "11952",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222551Z:677b102b-c8bf-4f16-9a19-a667f73204ab",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "replicationId": "daa072fe-2d41-0248-d609-26def5a3c335",
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "remoteVolumeRegion": "eastus"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4546,8 +8594,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:31 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:53 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4555,90 +8602,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e28f999e-8d0f-4bd7-9241-655a703ba60d",
- "x-ms-ratelimit-remaining-subscription-reads": "11947",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085131Z:e28f999e-8d0f-4bd7-9241-655a703ba60d",
+ "x-ms-correlation-request-id": "31824d4f-61d1-4d68-ba66-82f50f495613",
+ "x-ms-ratelimit-remaining-subscription-reads": "11951",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222553Z:31824d4f-61d1-4d68-ba66-82f50f495613",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "AuthorizeReplication"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4646,8 +8630,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:31 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4655,92 +8638,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d71745b1-d1e6-42d5-8351-af14774bba64",
- "x-ms-ratelimit-remaining-subscription-reads": "11946",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085131Z:d71745b1-d1e6-42d5-8351-af14774bba64",
+ "x-ms-correlation-request-id": "c634f4fc-c294-4f7b-a63b-4b198e23bc6e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11950",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222554Z:c634f4fc-c294-4f7b-a63b-4b198e23bc6e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "replicationId": "daa072fe-2d41-0248-d609-26def5a3c335",
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "remoteVolumeRegion": "eastus"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4748,8 +8666,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:32 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:55 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4757,90 +8674,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b977e4f5-76cf-45a6-9f62-f4b00c2292ab",
- "x-ms-ratelimit-remaining-subscription-reads": "11945",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085133Z:b977e4f5-76cf-45a6-9f62-f4b00c2292ab",
+ "x-ms-correlation-request-id": "74a4344c-f2ee-472e-aa6e-f4aaadbab707",
+ "x-ms-ratelimit-remaining-subscription-reads": "11949",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222556Z:74a4344c-f2ee-472e-aa6e-f4aaadbab707",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "AuthorizeReplication"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4848,8 +8702,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:33 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:57 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4857,92 +8710,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fab833d9-6172-48ff-bd45-232f3431ac46",
- "x-ms-ratelimit-remaining-subscription-reads": "11944",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085133Z:fab833d9-6172-48ff-bd45-232f3431ac46",
+ "x-ms-correlation-request-id": "bc20f0e1-868b-4d7e-bd8e-6f74272926f8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11948",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222557Z:bc20f0e1-868b-4d7e-bd8e-6f74272926f8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "replicationId": "daa072fe-2d41-0248-d609-26def5a3c335",
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "remoteVolumeRegion": "eastus"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -4950,8 +8738,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:34 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:25:58 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -4959,90 +8746,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "eee40b42-b56b-4566-b54a-feaffbce5530",
- "x-ms-ratelimit-remaining-subscription-reads": "11943",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085134Z:eee40b42-b56b-4566-b54a-feaffbce5530",
+ "x-ms-correlation-request-id": "26957ef7-18e4-4c9a-a3a1-41c2385737d9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11947",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222559Z:26957ef7-18e4-4c9a-a3a1-41c2385737d9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "AuthorizeReplication"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5050,8 +8774,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:34 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:26:00 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5059,92 +8782,63 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "cc02fb82-4635-46d5-98d7-9d821b80c012",
- "x-ms-ratelimit-remaining-subscription-reads": "11942",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085135Z:cc02fb82-4635-46d5-98d7-9d821b80c012",
+ "x-ms-correlation-request-id": "493746f2-141d-4fa1-9925-dd254f8326a1",
+ "x-ms-ratelimit-remaining-subscription-reads": "11946",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222600Z:493746f2-141d-4fa1-9925-dd254f8326a1",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "replicationId": "daa072fe-2d41-0248-d609-26def5a3c335",
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "remoteVolumeRegion": "eastus"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "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/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:26: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": "137f9583-ae29-498b-82e4-f9ede59a2b76",
+ "x-ms-ratelimit-remaining-subscription-reads": "11945",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222601Z:137f9583-ae29-498b-82e4-f9ede59a2b76",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5152,8 +8846,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:36 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:26:02 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5161,90 +8854,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "71fd1ed9-16f0-4439-a3d5-0b0f40608ecc",
- "x-ms-ratelimit-remaining-subscription-reads": "11941",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085136Z:71fd1ed9-16f0-4439-a3d5-0b0f40608ecc",
+ "x-ms-correlation-request-id": "08a519ab-6f28-4cee-b293-b3af6510eddf",
+ "x-ms-ratelimit-remaining-subscription-reads": "11944",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222603Z:08a519ab-6f28-4cee-b293-b3af6510eddf",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "AuthorizeReplication"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5252,8 +8882,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:36 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:26:04 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5261,92 +8890,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d88de07c-4cfe-46c4-bbc6-5db25f879c54",
- "x-ms-ratelimit-remaining-subscription-reads": "11940",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085136Z:d88de07c-4cfe-46c4-bbc6-5db25f879c54",
+ "x-ms-correlation-request-id": "efd64b4c-9cff-4a1a-b556-745cf9cb8473",
+ "x-ms-ratelimit-remaining-subscription-reads": "11943",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222604Z:efd64b4c-9cff-4a1a-b556-745cf9cb8473",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "replicationId": "daa072fe-2d41-0248-d609-26def5a3c335",
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "remoteVolumeRegion": "eastus"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5354,8 +8918,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:37 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:26:05 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5363,90 +8926,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "54312ca6-855d-4bcd-b4c9-7cf0ce0d777e",
- "x-ms-ratelimit-remaining-subscription-reads": "11939",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085138Z:54312ca6-855d-4bcd-b4c9-7cf0ce0d777e",
+ "x-ms-correlation-request-id": "c1e31b10-38cd-41e3-b560-01a0a4148495",
+ "x-ms-ratelimit-remaining-subscription-reads": "11942",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222606Z:c1e31b10-38cd-41e3-b560-01a0a4148495",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "AuthorizeReplication"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5454,8 +8954,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:38 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:26:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5463,92 +8962,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9d488a3c-ab55-4fed-885a-c5954ac80165",
- "x-ms-ratelimit-remaining-subscription-reads": "11938",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085138Z:9d488a3c-ab55-4fed-885a-c5954ac80165",
+ "x-ms-correlation-request-id": "63012fa3-5fc4-413c-9761-a8967785cd62",
+ "x-ms-ratelimit-remaining-subscription-reads": "11941",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222607Z:63012fa3-5fc4-413c-9761-a8967785cd62",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "replicationId": "daa072fe-2d41-0248-d609-26def5a3c335",
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "remoteVolumeRegion": "eastus"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "healthy": true,
+ "relationshipStatus": "Idle",
+ "mirrorState": "Uninitialized",
+ "totalProgress": "0",
+ "errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/17fbedab-18ed-401e-b490-f6f3d5db65ce?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5556,7 +8990,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:38 GMT",
+ "Date": "Wed, 27 Jul 2022 22:26:08 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5564,31 +8998,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "06663025-c01b-44a1-9848-73c3464c60a7",
- "x-ms-ratelimit-remaining-subscription-reads": "11937",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085138Z:06663025-c01b-44a1-9848-73c3464c60a7",
+ "x-ms-correlation-request-id": "92c1da3b-c147-4de7-9cc3-5483c11277e8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11940",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222609Z:92c1da3b-c147-4de7-9cc3-5483c11277e8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/17fbedab-18ed-401e-b490-f6f3d5db65ce",
- "name": "17fbedab-18ed-401e-b490-f6f3d5db65ce",
- "status": "AuthorizeReplication",
- "startTime": "2022-06-09T08:51:08.5148134Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5596,8 +9026,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:39 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:26:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5605,90 +9034,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "90b2687d-83ab-417f-b8bd-f4cf12a2e5fa",
- "x-ms-ratelimit-remaining-subscription-reads": "11936",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085139Z:90b2687d-83ab-417f-b8bd-f4cf12a2e5fa",
+ "x-ms-correlation-request-id": "343a1466-8fa4-4bc7-a825-5a8308dc781f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11939",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222610Z:343a1466-8fa4-4bc7-a825-5a8308dc781f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "AuthorizeReplication"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5696,8 +9062,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:39 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:26:11 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5705,92 +9070,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e6405944-7274-4c82-b94f-6212542110f1",
- "x-ms-ratelimit-remaining-subscription-reads": "11935",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085140Z:e6405944-7274-4c82-b94f-6212542110f1",
+ "x-ms-correlation-request-id": "7b09b8e2-1199-48b8-86d9-99483fe8aa94",
+ "x-ms-ratelimit-remaining-subscription-reads": "11938",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222612Z:7b09b8e2-1199-48b8-86d9-99483fe8aa94",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "replicationId": "daa072fe-2d41-0248-d609-26def5a3c335",
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "remoteVolumeRegion": "eastus"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5798,8 +9098,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:41 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:26:13 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -5807,90 +9106,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d52b8e6b-57c2-4078-a127-e633faa41fce",
- "x-ms-ratelimit-remaining-subscription-reads": "11934",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085141Z:d52b8e6b-57c2-4078-a127-e633faa41fce",
+ "x-ms-correlation-request-id": "ae951ab3-439b-43cc-b919-e795f10f9571",
+ "x-ms-ratelimit-remaining-subscription-reads": "11937",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222613Z:ae951ab3-439b-43cc-b919-e795f10f9571",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "AuthorizeReplication"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -5898,101 +9134,35 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:41 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:26: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": "7ce81ae3-1be8-44aa-862a-b530d8553146",
- "x-ms-ratelimit-remaining-subscription-reads": "11933",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085141Z:7ce81ae3-1be8-44aa-862a-b530d8553146",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "replicationId": "daa072fe-2d41-0248-d609-26def5a3c335",
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "remoteVolumeRegion": "eastus"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "Server": "Microsoft-IIS/10.0",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Transfer-Encoding": "chunked",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "6d706f51-b39b-42c5-9899-1a2d8c5cf862",
+ "x-ms-ratelimit-remaining-subscription-reads": "11936",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222615Z:6d706f51-b39b-42c5-9899-1a2d8c5cf862",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6000,8 +9170,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:42 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:26:15 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6009,90 +9178,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4df9a15f-e8e5-4620-aee6-92cc0d24029c",
- "x-ms-ratelimit-remaining-subscription-reads": "11932",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085143Z:4df9a15f-e8e5-4620-aee6-92cc0d24029c",
+ "x-ms-correlation-request-id": "cf31ce8d-d709-4a3b-89b0-3f89bb529cf5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11935",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222616Z:cf31ce8d-d709-4a3b-89b0-3f89bb529cf5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "AuthorizeReplication"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6100,8 +9206,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:43 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:26:17 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6109,92 +9214,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "39123d12-202d-41ac-8530-d63a7f2e5134",
- "x-ms-ratelimit-remaining-subscription-reads": "11931",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085143Z:39123d12-202d-41ac-8530-d63a7f2e5134",
+ "x-ms-correlation-request-id": "eed1e020-fd38-4324-8558-b19255ed3f63",
+ "x-ms-ratelimit-remaining-subscription-reads": "11934",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222618Z:eed1e020-fd38-4324-8558-b19255ed3f63",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "replicationId": "daa072fe-2d41-0248-d609-26def5a3c335",
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "remoteVolumeRegion": "eastus"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6202,8 +9242,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:44 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:26:18 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6211,90 +9250,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6d923af7-26f8-4072-b324-d179dd16db75",
- "x-ms-ratelimit-remaining-subscription-reads": "11930",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085144Z:6d923af7-26f8-4072-b324-d179dd16db75",
+ "x-ms-correlation-request-id": "82033af4-57cd-41f2-8711-983332cf7812",
+ "x-ms-ratelimit-remaining-subscription-reads": "11933",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222619Z:82033af4-57cd-41f2-8711-983332cf7812",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "AuthorizeReplication"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6302,101 +9278,35 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:44 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:26: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": "02740ef4-a426-4455-b1e1-d8bb86d689dc",
- "x-ms-ratelimit-remaining-subscription-reads": "11929",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085145Z:02740ef4-a426-4455-b1e1-d8bb86d689dc",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "replicationId": "daa072fe-2d41-0248-d609-26def5a3c335",
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "remoteVolumeRegion": "eastus"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "Server": "Microsoft-IIS/10.0",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Transfer-Encoding": "chunked",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "d043ea55-7d4a-4aa4-bc61-7f9351abf911",
+ "x-ms-ratelimit-remaining-subscription-reads": "11932",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222620Z:d043ea55-7d4a-4aa4-bc61-7f9351abf911",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6404,8 +9314,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:46 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:26:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6413,90 +9322,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b9e3cbd2-ec48-4842-bb11-d7f5f51552c9",
- "x-ms-ratelimit-remaining-subscription-reads": "11928",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085146Z:b9e3cbd2-ec48-4842-bb11-d7f5f51552c9",
+ "x-ms-correlation-request-id": "127c4bc5-76ce-4d46-acf2-27be0afd0383",
+ "x-ms-ratelimit-remaining-subscription-reads": "11931",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222622Z:127c4bc5-76ce-4d46-acf2-27be0afd0383",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "AuthorizeReplication"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6504,8 +9350,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:46 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:26:23 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6513,92 +9358,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "bfd6d869-0aae-4fb5-bbbf-263f2d2d8fe7",
- "x-ms-ratelimit-remaining-subscription-reads": "11927",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085146Z:bfd6d869-0aae-4fb5-bbbf-263f2d2d8fe7",
+ "x-ms-correlation-request-id": "99427856-193c-4908-8976-5fe4566cf39c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11930",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222623Z:99427856-193c-4908-8976-5fe4566cf39c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "replicationId": "daa072fe-2d41-0248-d609-26def5a3c335",
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "remoteVolumeRegion": "eastus"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6606,8 +9386,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:47 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:26:24 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6615,90 +9394,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "683db4c2-74b6-4ba5-b685-3e1aec9a733a",
- "x-ms-ratelimit-remaining-subscription-reads": "11926",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085148Z:683db4c2-74b6-4ba5-b685-3e1aec9a733a",
+ "x-ms-correlation-request-id": "74c7d43d-0c67-48d7-ac7b-8b7dfa5d1bd6",
+ "x-ms-ratelimit-remaining-subscription-reads": "11929",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222625Z:74c7d43d-0c67-48d7-ac7b-8b7dfa5d1bd6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A08.5213816Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "AuthorizeReplication"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6706,101 +9422,35 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:48 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:26: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": "c72d929c-0836-489b-8391-14023ae623a6",
- "x-ms-ratelimit-remaining-subscription-reads": "11925",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085148Z:c72d929c-0836-489b-8391-14023ae623a6",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "replicationId": "daa072fe-2d41-0248-d609-26def5a3c335",
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "remoteVolumeRegion": "eastus"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "Server": "Microsoft-IIS/10.0",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Transfer-Encoding": "chunked",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "7d2139a7-13d5-4c19-8a45-07096a820b87",
+ "x-ms-ratelimit-remaining-subscription-reads": "11928",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222626Z:7d2139a7-13d5-4c19-8a45-07096a820b87",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6808,8 +9458,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:49 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A49.0637975Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:26:27 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6817,97 +9466,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "097c65e7-88aa-4a1f-a82f-9f9b280e3170",
- "x-ms-ratelimit-remaining-subscription-reads": "11924",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085149Z:097c65e7-88aa-4a1f-a82f-9f9b280e3170",
+ "x-ms-correlation-request-id": "fe4f706c-e3e7-4324-bb92-d19f2dd8ba7a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11927",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222628Z:fe4f706c-e3e7-4324-bb92-d19f2dd8ba7a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A49.0637975Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "dataProtection": {
- "replication": {
- "endPointType": "Src",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "remoteVolumeRegion": "westus"
- }
- },
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -6915,8 +9494,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:51:49 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:26:28 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -6924,92 +9502,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e8586d9e-4e5f-4493-a5c5-77d8218bda89",
- "x-ms-ratelimit-remaining-subscription-reads": "11923",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085150Z:e8586d9e-4e5f-4493-a5c5-77d8218bda89",
+ "x-ms-correlation-request-id": "34a4791c-6970-4e40-99ba-2f1a5b8f06c3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11926",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222629Z:34a4791c-6970-4e40-99ba-2f1a5b8f06c3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A15.6282444Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "replicationId": "daa072fe-2d41-0248-d609-26def5a3c335",
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "remoteVolumeRegion": "eastus"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "healthy": true,
+ "relationshipStatus": "Idle",
+ "mirrorState": "Uninitialized",
+ "totalProgress": "0",
+ "errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/17fbedab-18ed-401e-b490-f6f3d5db65ce?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -7017,7 +9530,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:08 GMT",
+ "Date": "Wed, 27 Jul 2022 22:26:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -7025,31 +9538,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4f1155b8-c23c-4b10-8028-300bd0c4a178",
- "x-ms-ratelimit-remaining-subscription-reads": "11922",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085209Z:4f1155b8-c23c-4b10-8028-300bd0c4a178",
+ "x-ms-correlation-request-id": "f3e4d9be-7362-4fa2-932b-42e7f68ba0c2",
+ "x-ms-ratelimit-remaining-subscription-reads": "11925",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222631Z:f3e4d9be-7362-4fa2-932b-42e7f68ba0c2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/17fbedab-18ed-401e-b490-f6f3d5db65ce",
- "name": "17fbedab-18ed-401e-b490-f6f3d5db65ce",
- "status": "Succeeded",
- "startTime": "2022-06-09T08:51:08.5148134Z",
- "endTime": "2022-06-09T08:51:49.0691604Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
- }
+ "healthy": true,
+ "relationshipStatus": "Idle",
+ "mirrorState": "Uninitialized",
+ "totalProgress": "0",
+ "errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/17fbedab-18ed-401e-b490-f6f3d5db65ce?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -7057,7 +9566,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:08 GMT",
+ "Date": "Wed, 27 Jul 2022 22:26:32 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -7065,113 +9574,63 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "39bda856-ea39-4c8c-a5f9-7609cf225eaa",
- "x-ms-ratelimit-remaining-subscription-reads": "11921",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085209Z:39bda856-ea39-4c8c-a5f9-7609cf225eaa",
+ "x-ms-correlation-request-id": "946eb2c1-2260-4be7-bb53-95d70ae55cea",
+ "x-ms-ratelimit-remaining-subscription-reads": "11924",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222633Z:946eb2c1-2260-4be7-bb53-95d70ae55cea",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A51%3A49.0637975Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "dataProtection": {
- "replication": {
- "endPointType": "Src",
- "replicationStatus": "",
- "remotePath": {
- "externalHostName": "az-sjc21-f04c01-bu417-sto",
- "serverName": "svm_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "volumeName": "vol_sdk_py_tests_vol_21_45bb57"
- },
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "remoteVolumeRegion": "westus"
- }
- },
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "34b26013-f1c9-a827-2cf1-f37459591c16",
- "mountTargets": [
- {
- "provisioningState": "",
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "startIp": "",
- "endIp": "",
- "gateway": "",
- "netmask": "",
- "subnet": "",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "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",
- "provisioningState": "Succeeded"
- }
+ "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/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-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22: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": "9844b3b8-0743-4785-b017-72e4c72a7ee9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11923",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222634Z:9844b3b8-0743-4785-b017-72e4c72a7ee9",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -7179,7 +9638,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:20 GMT",
+ "Date": "Wed, 27 Jul 2022 22:26:35 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -7187,27 +9646,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9fd80eed-eee5-44bc-b152-7f554b60ca2b",
- "x-ms-ratelimit-remaining-subscription-reads": "11920",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085220Z:9fd80eed-eee5-44bc-b152-7f554b60ca2b",
+ "x-ms-correlation-request-id": "290835c2-174f-4d3c-8a0d-4594a44ea540",
+ "x-ms-ratelimit-remaining-subscription-reads": "11922",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222635Z:290835c2-174f-4d3c-8a0d-4594a44ea540",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -7215,7 +9674,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:21 GMT",
+ "Date": "Wed, 27 Jul 2022 22:26:37 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -7223,27 +9682,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "49d8de23-1a0f-4204-bb63-791b93bf2af4",
- "x-ms-ratelimit-remaining-subscription-reads": "11919",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085222Z:49d8de23-1a0f-4204-bb63-791b93bf2af4",
+ "x-ms-correlation-request-id": "04f286f3-d9b8-464a-9219-33094a7c25eb",
+ "x-ms-ratelimit-remaining-subscription-reads": "11921",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222637Z:04f286f3-d9b8-464a-9219-33094a7c25eb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -7251,7 +9710,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:23 GMT",
+ "Date": "Wed, 27 Jul 2022 22:26:38 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -7259,27 +9718,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b294e3ea-c546-46a5-b07a-e8020f689196",
- "x-ms-ratelimit-remaining-subscription-reads": "11918",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085224Z:b294e3ea-c546-46a5-b07a-e8020f689196",
+ "x-ms-correlation-request-id": "e56b3771-4983-4d64-b755-2c14b4cb77b6",
+ "x-ms-ratelimit-remaining-subscription-reads": "11920",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222638Z:e56b3771-4983-4d64-b755-2c14b4cb77b6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -7287,7 +9746,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:24 GMT",
+ "Date": "Wed, 27 Jul 2022 22:26:40 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -7295,27 +9754,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6743ee80-8d63-4785-bbbe-80d7945b27be",
- "x-ms-ratelimit-remaining-subscription-reads": "11917",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085225Z:6743ee80-8d63-4785-bbbe-80d7945b27be",
+ "x-ms-correlation-request-id": "ba38ea22-b807-4f06-bf8e-34f7d3e5443d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11919",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222640Z:ba38ea22-b807-4f06-bf8e-34f7d3e5443d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -7323,7 +9782,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:26 GMT",
+ "Date": "Wed, 27 Jul 2022 22:26:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -7331,27 +9790,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4da46cb6-4894-4848-83eb-fe6c0041de4e",
- "x-ms-ratelimit-remaining-subscription-reads": "11916",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085227Z:4da46cb6-4894-4848-83eb-fe6c0041de4e",
+ "x-ms-correlation-request-id": "56056a0c-108a-4b2c-b4fa-7ba7d4842428",
+ "x-ms-ratelimit-remaining-subscription-reads": "11918",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222641Z:56056a0c-108a-4b2c-b4fa-7ba7d4842428",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -7359,7 +9818,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:27 GMT",
+ "Date": "Wed, 27 Jul 2022 22:26:43 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -7367,27 +9826,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a512f6ce-8e9e-4bba-a981-ed328d60003c",
- "x-ms-ratelimit-remaining-subscription-reads": "11915",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085228Z:a512f6ce-8e9e-4bba-a981-ed328d60003c",
+ "x-ms-correlation-request-id": "26ae26e3-7e91-4bb2-a147-a4dfc3ef1872",
+ "x-ms-ratelimit-remaining-subscription-reads": "11917",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222643Z:26ae26e3-7e91-4bb2-a147-a4dfc3ef1872",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -7395,7 +9854,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:29 GMT",
+ "Date": "Wed, 27 Jul 2022 22:26:44 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -7403,27 +9862,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "775c1a43-526d-4f4b-9247-1af5de39af65",
- "x-ms-ratelimit-remaining-subscription-reads": "11914",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085229Z:775c1a43-526d-4f4b-9247-1af5de39af65",
+ "x-ms-correlation-request-id": "e5b0abaa-2fe3-4d28-a548-92b73cd7fe5b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11916",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222644Z:e5b0abaa-2fe3-4d28-a548-92b73cd7fe5b",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -7431,7 +9890,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:30 GMT",
+ "Date": "Wed, 27 Jul 2022 22:26:45 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -7439,27 +9898,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4899cefa-0b6c-4a95-9659-76a2ad8361dc",
- "x-ms-ratelimit-remaining-subscription-reads": "11913",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085231Z:4899cefa-0b6c-4a95-9659-76a2ad8361dc",
+ "x-ms-correlation-request-id": "2d400683-26fc-4a35-8986-88ae470991ad",
+ "x-ms-ratelimit-remaining-subscription-reads": "11915",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222646Z:2d400683-26fc-4a35-8986-88ae470991ad",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -7467,7 +9926,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:32 GMT",
+ "Date": "Wed, 27 Jul 2022 22:26:47 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -7475,27 +9934,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1c715331-5a44-4522-a2cc-044ffbabec24",
- "x-ms-ratelimit-remaining-subscription-reads": "11912",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085232Z:1c715331-5a44-4522-a2cc-044ffbabec24",
+ "x-ms-correlation-request-id": "65284d24-ac7c-488a-8e53-0c0ec74eb672",
+ "x-ms-ratelimit-remaining-subscription-reads": "11914",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222647Z:65284d24-ac7c-488a-8e53-0c0ec74eb672",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -7503,7 +9962,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:33 GMT",
+ "Date": "Wed, 27 Jul 2022 22:26:48 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -7511,27 +9970,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d5a03b17-47af-4085-bbeb-2fc4355f4dd1",
- "x-ms-ratelimit-remaining-subscription-reads": "11911",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085234Z:d5a03b17-47af-4085-bbeb-2fc4355f4dd1",
+ "x-ms-correlation-request-id": "5d32dbc5-5804-4cc2-8fae-0145c03eb874",
+ "x-ms-ratelimit-remaining-subscription-reads": "11913",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222649Z:5d32dbc5-5804-4cc2-8fae-0145c03eb874",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -7539,7 +9998,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:35 GMT",
+ "Date": "Wed, 27 Jul 2022 22:26:50 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -7547,27 +10006,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "21495e77-7219-488e-a5e1-f5951d920186",
- "x-ms-ratelimit-remaining-subscription-reads": "11910",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085235Z:21495e77-7219-488e-a5e1-f5951d920186",
+ "x-ms-correlation-request-id": "03abb8ef-ad19-463f-bba3-8af1b698fdd9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11912",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222650Z:03abb8ef-ad19-463f-bba3-8af1b698fdd9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -7575,7 +10034,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:36 GMT",
+ "Date": "Wed, 27 Jul 2022 22:26:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -7583,27 +10042,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8e36fb9a-b04c-41f0-a5ad-e0a3bacf27fa",
- "x-ms-ratelimit-remaining-subscription-reads": "11909",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085237Z:8e36fb9a-b04c-41f0-a5ad-e0a3bacf27fa",
+ "x-ms-correlation-request-id": "6318e875-eef1-45f1-aa52-9c3f4383665f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11911",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222652Z:6318e875-eef1-45f1-aa52-9c3f4383665f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -7611,7 +10070,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:38 GMT",
+ "Date": "Wed, 27 Jul 2022 22:26:52 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -7619,27 +10078,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "519c031d-cd6b-4792-9c0e-b9997363ae86",
- "x-ms-ratelimit-remaining-subscription-reads": "11908",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085239Z:519c031d-cd6b-4792-9c0e-b9997363ae86",
+ "x-ms-correlation-request-id": "09629df4-9b88-4494-8197-f970aed589f4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11910",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222653Z:09629df4-9b88-4494-8197-f970aed589f4",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -7647,7 +10106,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:39 GMT",
+ "Date": "Wed, 27 Jul 2022 22:26:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -7655,27 +10114,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b320645c-836e-4e8b-b5ce-31a4e3552f09",
- "x-ms-ratelimit-remaining-subscription-reads": "11907",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085240Z:b320645c-836e-4e8b-b5ce-31a4e3552f09",
+ "x-ms-correlation-request-id": "5fc8fcc4-28ea-4589-91a3-8588762cc1bc",
+ "x-ms-ratelimit-remaining-subscription-reads": "11909",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222655Z:5fc8fcc4-28ea-4589-91a3-8588762cc1bc",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -7683,7 +10142,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:41 GMT",
+ "Date": "Wed, 27 Jul 2022 22:26:55 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -7691,27 +10150,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "98354b6d-4ce1-4b18-8236-1a71429ec680",
- "x-ms-ratelimit-remaining-subscription-reads": "11906",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085242Z:98354b6d-4ce1-4b18-8236-1a71429ec680",
+ "x-ms-correlation-request-id": "1e73e55b-9e9c-496a-87f3-9e47ee39e79c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11908",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222656Z:1e73e55b-9e9c-496a-87f3-9e47ee39e79c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -7719,7 +10178,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:42 GMT",
+ "Date": "Wed, 27 Jul 2022 22:26:57 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -7727,27 +10186,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5dd7fc42-026e-4ee8-8bab-0120e1fa835a",
- "x-ms-ratelimit-remaining-subscription-reads": "11905",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085243Z:5dd7fc42-026e-4ee8-8bab-0120e1fa835a",
+ "x-ms-correlation-request-id": "ddaddb73-352b-414d-b9c8-d39d3055e30d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11907",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222658Z:ddaddb73-352b-414d-b9c8-d39d3055e30d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -7755,7 +10214,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:44 GMT",
+ "Date": "Wed, 27 Jul 2022 22:26:58 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -7763,27 +10222,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f7390a11-3614-4b5a-a79b-83042657dc72",
- "x-ms-ratelimit-remaining-subscription-reads": "11904",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085245Z:f7390a11-3614-4b5a-a79b-83042657dc72",
+ "x-ms-correlation-request-id": "1d934c82-658b-4be8-8d29-8cab2f2ebb0c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11906",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222659Z:1d934c82-658b-4be8-8d29-8cab2f2ebb0c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -7791,7 +10250,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:45 GMT",
+ "Date": "Wed, 27 Jul 2022 22:26:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -7799,27 +10258,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "cae429e5-d6aa-4e6f-a324-de82cfb86969",
- "x-ms-ratelimit-remaining-subscription-reads": "11903",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085246Z:cae429e5-d6aa-4e6f-a324-de82cfb86969",
+ "x-ms-correlation-request-id": "9d8f03cb-51f3-4ab3-bc46-31aee89766ee",
+ "x-ms-ratelimit-remaining-subscription-reads": "11905",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222700Z:9d8f03cb-51f3-4ab3-bc46-31aee89766ee",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -7827,7 +10286,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:47 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:01 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -7835,27 +10294,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "73f9cf9c-f9b3-4b3e-a2ae-0c71d74992b8",
- "x-ms-ratelimit-remaining-subscription-reads": "11902",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085248Z:73f9cf9c-f9b3-4b3e-a2ae-0c71d74992b8",
+ "x-ms-correlation-request-id": "4787f874-d410-44a5-b6ac-31729fbda9c6",
+ "x-ms-ratelimit-remaining-subscription-reads": "11904",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222702Z:4787f874-d410-44a5-b6ac-31729fbda9c6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -7863,7 +10322,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:48 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:02 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -7871,27 +10330,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ed50e8fe-06af-4b32-8eb5-6f6c6483fb0d",
- "x-ms-ratelimit-remaining-subscription-reads": "11901",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085249Z:ed50e8fe-06af-4b32-8eb5-6f6c6483fb0d",
+ "x-ms-correlation-request-id": "ad361154-4940-4cb8-a405-10832c0a99ab",
+ "x-ms-ratelimit-remaining-subscription-reads": "11903",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222703Z:ad361154-4940-4cb8-a405-10832c0a99ab",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -7899,7 +10358,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:50 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:05 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -7907,27 +10366,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d4b03b17-4ec1-4105-963d-9ba7aaf8a494",
- "x-ms-ratelimit-remaining-subscription-reads": "11900",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085251Z:d4b03b17-4ec1-4105-963d-9ba7aaf8a494",
+ "x-ms-correlation-request-id": "19b59fa2-5633-47ab-acda-21ecbbbb50d1",
+ "x-ms-ratelimit-remaining-subscription-reads": "11902",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222705Z:19b59fa2-5633-47ab-acda-21ecbbbb50d1",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -7935,7 +10394,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:51 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:06 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -7943,27 +10402,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3f8ac1f7-b233-47f0-b480-66619001a676",
- "x-ms-ratelimit-remaining-subscription-reads": "11899",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085252Z:3f8ac1f7-b233-47f0-b480-66619001a676",
+ "x-ms-correlation-request-id": "ba33e698-1773-48fc-9046-1c082bc4fedf",
+ "x-ms-ratelimit-remaining-subscription-reads": "11901",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222706Z:ba33e698-1773-48fc-9046-1c082bc4fedf",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -7971,7 +10430,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:53 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:08 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -7979,27 +10438,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8553f734-a381-4b04-8e36-75ec900beb21",
- "x-ms-ratelimit-remaining-subscription-reads": "11898",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085254Z:8553f734-a381-4b04-8e36-75ec900beb21",
+ "x-ms-correlation-request-id": "473ae691-f4d6-46ac-a273-97c52be9a318",
+ "x-ms-ratelimit-remaining-subscription-reads": "11900",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222708Z:473ae691-f4d6-46ac-a273-97c52be9a318",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -8007,7 +10466,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:54 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:09 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -8015,27 +10474,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0be41d11-0d0d-4bc8-adbe-cb0ad16cd808",
- "x-ms-ratelimit-remaining-subscription-reads": "11897",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085255Z:0be41d11-0d0d-4bc8-adbe-cb0ad16cd808",
+ "x-ms-correlation-request-id": "d014eb9f-c6ae-4522-b124-1507ebd89fa7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11899",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222709Z:d014eb9f-c6ae-4522-b124-1507ebd89fa7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -8043,7 +10502,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:56 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -8051,27 +10510,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fe7eeac5-e68e-44c0-ae1a-6229cff5a868",
- "x-ms-ratelimit-remaining-subscription-reads": "11896",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085256Z:fe7eeac5-e68e-44c0-ae1a-6229cff5a868",
+ "x-ms-correlation-request-id": "76675a4d-d1a6-46c5-bc31-ce73a36734f7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11898",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222711Z:76675a4d-d1a6-46c5-bc31-ce73a36734f7",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -8079,7 +10538,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:57 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:12 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -8087,27 +10546,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f37712b6-2225-48c0-8fa0-e61ab8c65410",
- "x-ms-ratelimit-remaining-subscription-reads": "11895",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085258Z:f37712b6-2225-48c0-8fa0-e61ab8c65410",
+ "x-ms-correlation-request-id": "bd777fe7-a391-4719-84b9-e137c7705c43",
+ "x-ms-ratelimit-remaining-subscription-reads": "11897",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222712Z:bd777fe7-a391-4719-84b9-e137c7705c43",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -8115,7 +10574,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:52:59 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:13 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -8123,27 +10582,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2838cbde-3c89-4e16-91c1-2763c7c384a8",
- "x-ms-ratelimit-remaining-subscription-reads": "11894",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085259Z:2838cbde-3c89-4e16-91c1-2763c7c384a8",
+ "x-ms-correlation-request-id": "25602f4e-d84e-4425-b64e-76b438c37ca6",
+ "x-ms-ratelimit-remaining-subscription-reads": "11896",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222714Z:25602f4e-d84e-4425-b64e-76b438c37ca6",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -8151,7 +10610,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:53:00 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:15 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -8159,27 +10618,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "76a8acb1-c078-4302-8605-6867ec926030",
- "x-ms-ratelimit-remaining-subscription-reads": "11893",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085301Z:76a8acb1-c078-4302-8605-6867ec926030",
+ "x-ms-correlation-request-id": "958a8545-4198-46fa-8c7f-6f9173b2824e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11895",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222715Z:958a8545-4198-46fa-8c7f-6f9173b2824e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -8187,7 +10646,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:53:02 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:16 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -8195,27 +10654,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "19521801-1219-4082-9084-e679164a1abf",
- "x-ms-ratelimit-remaining-subscription-reads": "11892",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085302Z:19521801-1219-4082-9084-e679164a1abf",
+ "x-ms-correlation-request-id": "0492d1cc-a789-4992-8526-e50d83313366",
+ "x-ms-ratelimit-remaining-subscription-reads": "11894",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222716Z:0492d1cc-a789-4992-8526-e50d83313366",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -8223,7 +10682,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:53:03 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:18 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -8231,27 +10690,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "901f5c99-0051-4c23-8930-23311f38f03b",
- "x-ms-ratelimit-remaining-subscription-reads": "11891",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085304Z:901f5c99-0051-4c23-8930-23311f38f03b",
+ "x-ms-correlation-request-id": "c2cf2183-26d9-4df5-8b26-a0c91f1026bb",
+ "x-ms-ratelimit-remaining-subscription-reads": "11893",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222718Z:c2cf2183-26d9-4df5-8b26-a0c91f1026bb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -8259,7 +10718,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:53:05 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:19 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -8267,27 +10726,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0eece11e-6c12-494e-8d05-e1e7c27ccaba",
- "x-ms-ratelimit-remaining-subscription-reads": "11890",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085305Z:0eece11e-6c12-494e-8d05-e1e7c27ccaba",
+ "x-ms-correlation-request-id": "0bfa5614-7dfd-4543-b2ec-3ca215f1e2a1",
+ "x-ms-ratelimit-remaining-subscription-reads": "11892",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222719Z:0bfa5614-7dfd-4543-b2ec-3ca215f1e2a1",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -8295,7 +10754,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:53:06 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:20 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -8303,27 +10762,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9aef6b52-c50f-48e1-9665-56772c020406",
- "x-ms-ratelimit-remaining-subscription-reads": "11889",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085307Z:9aef6b52-c50f-48e1-9665-56772c020406",
+ "x-ms-correlation-request-id": "7e2cadc3-9f12-42c3-a7d4-824aee731318",
+ "x-ms-ratelimit-remaining-subscription-reads": "11891",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222721Z:7e2cadc3-9f12-42c3-a7d4-824aee731318",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -8331,7 +10790,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:53:07 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:22 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -8339,27 +10798,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4d17e7f3-5bc8-429c-be75-8a978aad8cec",
- "x-ms-ratelimit-remaining-subscription-reads": "11888",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085308Z:4d17e7f3-5bc8-429c-be75-8a978aad8cec",
+ "x-ms-correlation-request-id": "6eebe468-90c3-4a5a-ad62-3af2a785d68f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11890",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222722Z:6eebe468-90c3-4a5a-ad62-3af2a785d68f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -8367,7 +10826,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:53:09 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:23 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -8375,27 +10834,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3d43109c-b9f0-48cf-85c9-d1323324b95a",
- "x-ms-ratelimit-remaining-subscription-reads": "11887",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085310Z:3d43109c-b9f0-48cf-85c9-d1323324b95a",
+ "x-ms-correlation-request-id": "4d27f31b-62f9-495b-826c-dffa27072d45",
+ "x-ms-ratelimit-remaining-subscription-reads": "11889",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222724Z:4d27f31b-62f9-495b-826c-dffa27072d45",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -8403,7 +10862,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:53:10 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:25 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -8411,27 +10870,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "48de9627-4db6-4af7-a37e-f496ecd876fd",
- "x-ms-ratelimit-remaining-subscription-reads": "11886",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085311Z:48de9627-4db6-4af7-a37e-f496ecd876fd",
+ "x-ms-correlation-request-id": "2ef38a6d-fab0-44a0-9938-82086b5ad298",
+ "x-ms-ratelimit-remaining-subscription-reads": "11888",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222725Z:2ef38a6d-fab0-44a0-9938-82086b5ad298",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -8439,7 +10898,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:53:12 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:26 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -8447,27 +10906,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "39371299-f498-4c6c-b409-f495c8df6894",
- "x-ms-ratelimit-remaining-subscription-reads": "11885",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085313Z:39371299-f498-4c6c-b409-f495c8df6894",
+ "x-ms-correlation-request-id": "004382ee-b4d5-4f04-b711-fa9e59dd2540",
+ "x-ms-ratelimit-remaining-subscription-reads": "11887",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222727Z:004382ee-b4d5-4f04-b711-fa9e59dd2540",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -8475,7 +10934,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:53:13 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:27 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -8483,27 +10942,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c471ad47-5ffb-457b-87e3-7df85cb24ee0",
- "x-ms-ratelimit-remaining-subscription-reads": "11884",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085314Z:c471ad47-5ffb-457b-87e3-7df85cb24ee0",
+ "x-ms-correlation-request-id": "76897b39-49b1-4297-ac92-2679624b51dc",
+ "x-ms-ratelimit-remaining-subscription-reads": "11886",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222728Z:76897b39-49b1-4297-ac92-2679624b51dc",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -8511,7 +10970,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:53:15 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:29 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -8519,27 +10978,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b0532475-8407-41f3-8ba5-edda67ee4833",
- "x-ms-ratelimit-remaining-subscription-reads": "11883",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085316Z:b0532475-8407-41f3-8ba5-edda67ee4833",
+ "x-ms-correlation-request-id": "2ff50227-717b-486b-8c68-edca5bebbf8a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11885",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222730Z:2ff50227-717b-486b-8c68-edca5bebbf8a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -8547,7 +11006,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:53:16 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:30 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -8555,27 +11014,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2dc762f3-7d13-4657-adc8-9fc713bbe8b8",
- "x-ms-ratelimit-remaining-subscription-reads": "11882",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085317Z:2dc762f3-7d13-4657-adc8-9fc713bbe8b8",
+ "x-ms-correlation-request-id": "85305a78-5b17-4508-9b6c-6add5bb58a61",
+ "x-ms-ratelimit-remaining-subscription-reads": "11884",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222731Z:85305a78-5b17-4508-9b6c-6add5bb58a61",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Uninitialized",
- "totalProgress": "",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -8583,7 +11042,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:53:18 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:32 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -8591,28 +11050,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "74e36f42-1aac-4714-9067-93f59842caca",
- "x-ms-ratelimit-remaining-subscription-reads": "11881",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085319Z:74e36f42-1aac-4714-9067-93f59842caca",
+ "x-ms-correlation-request-id": "9e6ab8a7-f924-4223-9ac8-3a5a852dc7f9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11883",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222733Z:9e6ab8a7-f924-4223-9ac8-3a5a852dc7f9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
- "mirrorState": "Mirrored",
- "totalProgress": "17624",
+ "mirrorState": "Uninitialized",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/listReplications?api-version=2022-01-01",
- "RequestMethod": "POST",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
+ "RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -8620,7 +11078,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:53:21 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -8628,62 +11086,63 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6535cd59-7b99-42ad-8409-7e827745d7c7",
- "x-ms-ratelimit-remaining-subscription-writes": "1198",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085321Z:6535cd59-7b99-42ad-8409-7e827745d7c7",
+ "x-ms-correlation-request-id": "5e80df08-1369-4a23-bf33-2632433f68b2",
+ "x-ms-ratelimit-remaining-subscription-reads": "11882",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222734Z:5e80df08-1369-4a23-bf33-2632433f68b2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "value": [
- {
- "replicationId": "2c0db38c-2bfb-8609-ec8b-073775e91403",
- "endPointType": "Src",
- "replicationSchedule": "",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "remoteVolumeRegion": "westus"
- }
- ]
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/breakReplication?api-version=2022-01-01",
- "RequestMethod": "POST",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-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/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/westus/operationResults/07c99dd7-0a9e-4f85-b076-a87b8044de40?api-version=2022-01-01",
"Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Thu, 09 Jun 2022 08:53:21 GMT",
+ "Content-Encoding": "gzip",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Wed, 27 Jul 2022 22:27:35 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/07c99dd7-0a9e-4f85-b076-a87b8044de40?api-version=2022-01-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": "1fdbdccc-2be8-4ff8-82be-43d6a0a70c74",
- "x-ms-ratelimit-remaining-subscription-writes": "1197",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085321Z:1fdbdccc-2be8-4ff8-82be-43d6a0a70c74",
+ "x-ms-correlation-request-id": "404777d2-b73d-4c4d-904c-6736badb049b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11881",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222736Z:404777d2-b73d-4c4d-904c-6736badb049b",
"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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -8691,7 +11150,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:53:22 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:36 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -8699,27 +11158,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b7245a77-38d9-41ef-a32d-8e852712c7cb",
+ "x-ms-correlation-request-id": "1382c7a0-290e-48d1-a267-fb11f5318147",
"x-ms-ratelimit-remaining-subscription-reads": "11880",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085322Z:b7245a77-38d9-41ef-a32d-8e852712c7cb",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222737Z:1382c7a0-290e-48d1-a267-fb11f5318147",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
- "mirrorState": "Mirrored",
- "totalProgress": "17624",
+ "mirrorState": "Uninitialized",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -8727,7 +11186,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:53:23 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:38 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -8735,27 +11194,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "85ddd798-2185-4aad-a87d-0add9aa2b657",
+ "x-ms-correlation-request-id": "03961e5f-2a54-4186-9a5d-73bff094747e",
"x-ms-ratelimit-remaining-subscription-reads": "11879",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085323Z:85ddd798-2185-4aad-a87d-0add9aa2b657",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222739Z:03961e5f-2a54-4186-9a5d-73bff094747e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
- "mirrorState": "Mirrored",
- "totalProgress": "17624",
+ "mirrorState": "Uninitialized",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -8763,7 +11222,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:53:25 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:39 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -8771,27 +11230,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b2a3e664-8684-4f2b-b7a4-51a6cace8dea",
+ "x-ms-correlation-request-id": "5454884a-aa65-4580-bf57-753e71b96a34",
"x-ms-ratelimit-remaining-subscription-reads": "11878",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085325Z:b2a3e664-8684-4f2b-b7a4-51a6cace8dea",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222740Z:5454884a-aa65-4580-bf57-753e71b96a34",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
- "mirrorState": "Mirrored",
- "totalProgress": "17624",
+ "mirrorState": "Uninitialized",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -8799,7 +11258,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:53:26 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:40 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -8807,27 +11266,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "54c25653-52eb-40b3-8fca-dce56b8a2a07",
+ "x-ms-correlation-request-id": "71f6d134-992d-4b85-a29c-e0a0fd6a9871",
"x-ms-ratelimit-remaining-subscription-reads": "11877",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085326Z:54c25653-52eb-40b3-8fca-dce56b8a2a07",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222741Z:71f6d134-992d-4b85-a29c-e0a0fd6a9871",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
- "mirrorState": "Mirrored",
- "totalProgress": "17624",
+ "mirrorState": "Uninitialized",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -8835,7 +11294,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:53:28 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:43 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -8843,27 +11302,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "220b8014-56b6-4ccb-a326-ca78cc7c6e2a",
+ "x-ms-correlation-request-id": "2eaabb3e-b001-41db-89a7-eee207144fc0",
"x-ms-ratelimit-remaining-subscription-reads": "11876",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085328Z:220b8014-56b6-4ccb-a326-ca78cc7c6e2a",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222743Z:2eaabb3e-b001-41db-89a7-eee207144fc0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
- "mirrorState": "Broken",
- "totalProgress": "17624",
+ "mirrorState": "Uninitialized",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/07c99dd7-0a9e-4f85-b076-a87b8044de40?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -8871,7 +11330,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:53:51 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:44 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -8879,31 +11338,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ea21c1bd-a3a9-4670-9922-6fca27537f84",
+ "x-ms-correlation-request-id": "e9e8eaa6-e4e7-4f7e-adcc-d637146e1df5",
"x-ms-ratelimit-remaining-subscription-reads": "11875",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085352Z:ea21c1bd-a3a9-4670-9922-6fca27537f84",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222744Z:e9e8eaa6-e4e7-4f7e-adcc-d637146e1df5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/07c99dd7-0a9e-4f85-b076-a87b8044de40",
- "name": "07c99dd7-0a9e-4f85-b076-a87b8044de40",
- "status": "Succeeded",
- "startTime": "2022-06-09T08:53:21.6458569Z",
- "endTime": "2022-06-09T08:53:29.4297268Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"
- }
+ "healthy": true,
+ "relationshipStatus": "Idle",
+ "mirrorState": "Uninitialized",
+ "totalProgress": "0",
+ "errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/07c99dd7-0a9e-4f85-b076-a87b8044de40?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -8911,7 +11366,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:53:52 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:46 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -8919,109 +11374,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "377dc26a-fd9d-4a9f-a92a-afde421a57cc",
- "x-ms-ratelimit-remaining-subscription-reads": "11874",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085352Z:377dc26a-fd9d-4a9f-a92a-afde421a57cc",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A53%3A29.4311909Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "",
- "dataProtection": {
- "replication": {
- "replicationId": "daa072fe-2d41-0248-d609-26def5a3c335",
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "replicationPolicy": "MirrorAllSnapshots",
- "replicationStatus": "Mirrored",
- "remotePath": {
- "externalHostName": "az-sjc21-f04c01-bu417-sto",
- "serverName": "svm_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "volumeName": "vol_sdk_py_tests_vol_21_45bb57"
- },
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "remoteVolumeRegion": "eastus"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "ownerId": "ff7711ad-cdb3-11ea-9944-ba3bf91f31b5",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "poolId": "83a8e743-45f2-80c6-14d9-132fff6e1fb5",
- "mountTargets": [
- {
- "provisioningState": "",
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "startIp": "",
- "endIp": "",
- "gateway": "",
- "netmask": "",
- "subnet": "",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "provisioningState": "Succeeded"
- }
+ "x-ms-correlation-request-id": "8cf8e75d-91fd-450c-8908-a2b7b1fc146b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11874",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222746Z:8cf8e75d-91fd-450c-8908-a2b7b1fc146b",
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -9029,8 +11402,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:53:58 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A53%3A20.8664174Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:27:47 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -9038,97 +11410,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3a981432-4b6e-4ebd-855e-773c897f9604",
+ "x-ms-correlation-request-id": "3e670c4f-886d-4f6a-94b9-0d282d3f6172",
"x-ms-ratelimit-remaining-subscription-reads": "11873",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085358Z:3a981432-4b6e-4ebd-855e-773c897f9604",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222747Z:3e670c4f-886d-4f6a-94b9-0d282d3f6172",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A53%3A20.8664174Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "dataProtection": {
- "replication": {
- "endPointType": "Src",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "remoteVolumeRegion": "westus"
- }
- },
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -9136,8 +11438,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:53:58 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A53%3A29.4311909Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:27:49 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -9145,122 +11446,63 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "878d9d82-edaf-41fa-9f36-7fde3fe901b1",
+ "x-ms-correlation-request-id": "a4641154-cd2a-4030-a2f5-7660eb73bf38",
"x-ms-ratelimit-remaining-subscription-reads": "11872",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085358Z:878d9d82-edaf-41fa-9f36-7fde3fe901b1",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222749Z:a4641154-cd2a-4030-a2f5-7660eb73bf38",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A53%3A29.4311909Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "",
- "dataProtection": {
- "replication": {
- "replicationId": "daa072fe-2d41-0248-d609-26def5a3c335",
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "remoteVolumeRegion": "eastus"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/resyncReplication?api-version=2022-01-01",
- "RequestMethod": "POST",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
+ "RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/westus/operationResults/6356ef01-5f0a-4136-88e0-50c289964046?api-version=2022-01-01",
"Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Thu, 09 Jun 2022 08:53:59 GMT",
+ "Content-Encoding": "gzip",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Wed, 27 Jul 2022 22:27:51 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/6356ef01-5f0a-4136-88e0-50c289964046?api-version=2022-01-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": "4547c0d6-481f-4b28-a4dc-ea25a9ca461d",
- "x-ms-ratelimit-remaining-subscription-writes": "1196",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085359Z:4547c0d6-481f-4b28-a4dc-ea25a9ca461d",
+ "x-ms-correlation-request-id": "c37406b3-1d98-4fb5-beaa-80c6de27aaa9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11871",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222751Z:c37406b3-1d98-4fb5-beaa-80c6de27aaa9",
"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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -9268,7 +11510,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:53:59 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:52 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -9276,27 +11518,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "34c3bc93-0b8e-4356-a0e4-fdfb302b1065",
- "x-ms-ratelimit-remaining-subscription-reads": "11871",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085400Z:34c3bc93-0b8e-4356-a0e4-fdfb302b1065",
+ "x-ms-correlation-request-id": "538db1ba-aef2-4ce7-a9d6-5a85f71749f0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11870",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222752Z:538db1ba-aef2-4ce7-a9d6-5a85f71749f0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
- "mirrorState": "Broken",
- "totalProgress": "17624",
+ "mirrorState": "Uninitialized",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -9304,7 +11546,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:54:01 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:54 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -9312,27 +11554,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fa5c5dfe-acaf-4b93-b365-c3f98abcd1c5",
- "x-ms-ratelimit-remaining-subscription-reads": "11870",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085401Z:fa5c5dfe-acaf-4b93-b365-c3f98abcd1c5",
+ "x-ms-correlation-request-id": "eabb274b-4306-4712-9da7-2c340653accb",
+ "x-ms-ratelimit-remaining-subscription-reads": "11869",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222754Z:eabb274b-4306-4712-9da7-2c340653accb",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
- "mirrorState": "Broken",
- "totalProgress": "17624",
+ "mirrorState": "Uninitialized",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -9340,7 +11582,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:54:02 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:55 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -9348,27 +11590,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a1bd1e03-aa1c-4853-8d42-80f0208ebf27",
- "x-ms-ratelimit-remaining-subscription-reads": "11869",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085403Z:a1bd1e03-aa1c-4853-8d42-80f0208ebf27",
+ "x-ms-correlation-request-id": "98d04058-3cbf-4415-8383-3aee9b05e19e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11868",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222756Z:98d04058-3cbf-4415-8383-3aee9b05e19e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
- "mirrorState": "Broken",
- "totalProgress": "17624",
+ "mirrorState": "Uninitialized",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -9376,7 +11618,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:54:04 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:57 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -9384,27 +11626,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4abdf1d3-3626-4cf0-9f56-197e6150f248",
- "x-ms-ratelimit-remaining-subscription-reads": "11868",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085404Z:4abdf1d3-3626-4cf0-9f56-197e6150f248",
+ "x-ms-correlation-request-id": "a02ed921-3057-45ee-951f-55606103418a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11867",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222757Z:a02ed921-3057-45ee-951f-55606103418a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
- "mirrorState": "Broken",
- "totalProgress": "17624",
+ "mirrorState": "Uninitialized",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -9412,7 +11654,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:54:05 GMT",
+ "Date": "Wed, 27 Jul 2022 22:27:58 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -9420,27 +11662,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7784efbb-f892-4fda-b263-932fe2816cbb",
- "x-ms-ratelimit-remaining-subscription-reads": "11867",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085406Z:7784efbb-f892-4fda-b263-932fe2816cbb",
+ "x-ms-correlation-request-id": "6e4b657a-5ae9-49a1-83e3-31f5a03ebb0d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11866",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222759Z:6e4b657a-5ae9-49a1-83e3-31f5a03ebb0d",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
- "mirrorState": "Broken",
- "totalProgress": "17624",
+ "mirrorState": "Uninitialized",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -9448,7 +11690,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:54:07 GMT",
+ "Date": "Wed, 27 Jul 2022 22:28:00 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -9456,27 +11698,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "77625866-f4a7-4a2c-bf41-f0ff659c4f7a",
- "x-ms-ratelimit-remaining-subscription-reads": "11866",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085407Z:77625866-f4a7-4a2c-bf41-f0ff659c4f7a",
+ "x-ms-correlation-request-id": "3bacee89-6875-48ea-a39b-f52113597a71",
+ "x-ms-ratelimit-remaining-subscription-reads": "11865",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222800Z:3bacee89-6875-48ea-a39b-f52113597a71",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
- "mirrorState": "Broken",
- "totalProgress": "17624",
+ "mirrorState": "Uninitialized",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -9484,7 +11726,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:54:08 GMT",
+ "Date": "Wed, 27 Jul 2022 22:28:01 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -9492,27 +11734,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d75ec6e3-73ec-482c-8331-242959f72590",
- "x-ms-ratelimit-remaining-subscription-reads": "11865",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085409Z:d75ec6e3-73ec-482c-8331-242959f72590",
+ "x-ms-correlation-request-id": "b48ead12-2b3b-4ba6-8978-4ff081ebde22",
+ "x-ms-ratelimit-remaining-subscription-reads": "11864",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222802Z:b48ead12-2b3b-4ba6-8978-4ff081ebde22",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
- "mirrorState": "Broken",
- "totalProgress": "17624",
+ "mirrorState": "Uninitialized",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -9520,7 +11762,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:54:10 GMT",
+ "Date": "Wed, 27 Jul 2022 22:28:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -9528,63 +11770,135 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c4d181f8-a129-4707-9bfb-40d06b6c5c4c",
- "x-ms-ratelimit-remaining-subscription-reads": "11864",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085410Z:c4d181f8-a129-4707-9bfb-40d06b6c5c4c",
+ "x-ms-correlation-request-id": "433ad801-e27c-44a1-8893-2a617084a31f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11863",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222804Z:433ad801-e27c-44a1-8893-2a617084a31f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
- "mirrorState": "Broken",
- "totalProgress": "17624",
+ "mirrorState": "Uninitialized",
+ "totalProgress": "0",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22:28: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": "e6d5a005-3551-4a03-9395-09b79421728b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11862",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222808Z:e6d5a005-3551-4a03-9395-09b79421728b",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "healthy": true,
+ "relationshipStatus": "Idle",
+ "mirrorState": "Mirrored",
+ "totalProgress": "17624",
+ "errorMessage": ""
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
+ "RequestMethod": "POST",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "0",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Thu, 09 Jun 2022 08:54:11 GMT",
+ "Content-Encoding": "gzip",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Wed, 27 Jul 2022 22:28: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": "9deaf408-0b52-49e6-9321-24e94c8dc339",
+ "x-ms-ratelimit-remaining-subscription-writes": "1199",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222809Z:9deaf408-0b52-49e6-9321-24e94c8dc339",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "value": [
+ {
+ "replicationId": "a24de717-e56a-d70f-1e39-a046b8d38866",
+ "endPointType": "Src",
+ "replicationSchedule": "",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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/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-03-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/5.1.0 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/fa248b35-3c5b-446e-ab16-1e2ca0137a89?api-version=2022-03-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "0",
+ "Date": "Wed, 27 Jul 2022 22:28:10 GMT",
"Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fa248b35-3c5b-446e-ab16-1e2ca0137a89?api-version=2022-03-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": "d5f5b8d7-642e-4f38-b1ba-a8733b5c9e01",
- "x-ms-ratelimit-remaining-subscription-reads": "11863",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085412Z:d5f5b8d7-642e-4f38-b1ba-a8733b5c9e01",
+ "x-ms-correlation-request-id": "ecba7c5d-37e9-4c55-b4fd-544aad1968b7",
+ "x-ms-ratelimit-remaining-subscription-writes": "1198",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222810Z:ecba7c5d-37e9-4c55-b4fd-544aad1968b7",
"X-Powered-By": "ASP.NET"
},
- "ResponseBody": {
- "healthy": true,
- "relationshipStatus": "Idle",
- "mirrorState": "Broken",
- "totalProgress": "17624",
- "errorMessage": ""
- }
+ "ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -9592,7 +11906,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:54:13 GMT",
+ "Date": "Wed, 27 Jul 2022 22:28:10 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -9600,27 +11914,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "92ba814f-64db-456d-9256-bd4568f90a9d",
- "x-ms-ratelimit-remaining-subscription-reads": "11862",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085413Z:92ba814f-64db-456d-9256-bd4568f90a9d",
+ "x-ms-correlation-request-id": "1f947e61-8a6f-48be-a78e-5426e0795750",
+ "x-ms-ratelimit-remaining-subscription-reads": "11861",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222810Z:1f947e61-8a6f-48be-a78e-5426e0795750",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
- "mirrorState": "Broken",
+ "mirrorState": "Mirrored",
"totalProgress": "17624",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fa248b35-3c5b-446e-ab16-1e2ca0137a89?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -9628,7 +11942,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:54:14 GMT",
+ "Date": "Wed, 27 Jul 2022 22:28:40 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -9636,27 +11950,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4b834137-7f3a-461a-9eae-2bdf9920334c",
- "x-ms-ratelimit-remaining-subscription-reads": "11861",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085415Z:4b834137-7f3a-461a-9eae-2bdf9920334c",
+ "x-ms-correlation-request-id": "8ac5342d-7940-48b4-a4f6-ee2c87ddaf2a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11860",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222840Z:8ac5342d-7940-48b4-a4f6-ee2c87ddaf2a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "healthy": true,
- "relationshipStatus": "Idle",
- "mirrorState": "Broken",
- "totalProgress": "17624",
- "errorMessage": ""
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fa248b35-3c5b-446e-ab16-1e2ca0137a89",
+ "name": "fa248b35-3c5b-446e-ab16-1e2ca0137a89",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T22:28:10.1555221Z",
+ "endTime": "2022-07-27T22:28:16.9820149Z",
+ "percentComplete": 100.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fa248b35-3c5b-446e-ab16-1e2ca0137a89?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -9664,7 +11982,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:54:16 GMT",
+ "Date": "Wed, 27 Jul 2022 22:28:41 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -9672,27 +11990,109 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5ca715aa-363b-46f4-839d-d0a0a855e984",
- "x-ms-ratelimit-remaining-subscription-reads": "11860",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085416Z:5ca715aa-363b-46f4-839d-d0a0a855e984",
+ "x-ms-correlation-request-id": "c244691b-817d-4100-a0ff-c1bfd8ba4387",
+ "x-ms-ratelimit-remaining-subscription-reads": "11859",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222841Z:c244691b-817d-4100-a0ff-c1bfd8ba4387",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "healthy": true,
- "relationshipStatus": "Idle",
- "mirrorState": "Broken",
- "totalProgress": "17624",
- "errorMessage": ""
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A28%3A16.9758969Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
+ },
+ "properties": {
+ "volumeType": "",
+ "dataProtection": {
+ "replication": {
+ "replicationId": "598692f6-f6f0-b09c-626c-42e1127f1d41",
+ "endPointType": "Dst",
+ "replicationSchedule": "_10minutely",
+ "replicationPolicy": "MirrorAllSnapshots",
+ "replicationStatus": "Mirrored",
+ "remotePath": {
+ "externalHostName": "az-bn13-f01c01-bs118-sto",
+ "serverName": "svm_1a1854d05b8211e99e4a3a8c013b5748_3caa7397",
+ "volumeName": "vol_sdk_py_tests_vol_4_b2_86eb264b_53e43d"
+ },
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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/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": "baf5f62f-d27a-ee2f-b673-bf029c38ead3",
+ "mountTargets": [
+ {
+ "provisioningState": "",
+ "mountTargetId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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",
+ "provisioningState": "Succeeded"
+ }
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -9700,7 +12100,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:54:17 GMT",
+ "Date": "Wed, 27 Jul 2022 22:28:41 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A24%3A23.5398834Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -9708,27 +12109,97 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a0dc6b7a-585e-4688-a36f-1384d8c3f337",
- "x-ms-ratelimit-remaining-subscription-reads": "11859",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085418Z:a0dc6b7a-585e-4688-a36f-1384d8c3f337",
+ "x-ms-correlation-request-id": "25ce23aa-77f2-463a-bc53-f2f7244a57ac",
+ "x-ms-ratelimit-remaining-subscription-reads": "11858",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222841Z:25ce23aa-77f2-463a-bc53-f2f7244a57ac",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "healthy": true,
- "relationshipStatus": "Idle",
- "mirrorState": "Broken",
- "totalProgress": "17624",
- "errorMessage": ""
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-07-27T22%3A24%3A23.5398834Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:12:41.7418774Z"
+ },
+ "properties": {
+ "dataProtection": {
+ "replication": {
+ "endPointType": "Src",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "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_d673703a",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
+ "networkFeatures": "Basic",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
+ "storageToNetworkProximity": "Default",
+ "snapshotDirectoryVisible": true,
+ "kerberosEnabled": false,
+ "securityStyle": "Unix",
+ "smbEncryption": false,
+ "smbContinuouslyAvailable": false,
+ "encryptionKeySource": "Microsoft.NetApp",
+ "ldapEnabled": false,
+ "unixPermissions": "0770",
+ "mountTargets": [
+ {
+ "mountTargetId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "volumeSpecName": "generic",
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "isDefaultQuotaEnabled": false,
+ "defaultUserQuotaInKiBs": 0,
+ "defaultGroupQuotaInKiBs": 0,
+ "enableSubvolumes": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
+ }
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -9736,7 +12207,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:54:19 GMT",
+ "Date": "Wed, 27 Jul 2022 22:28:41 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A28%3A16.9758969Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -9744,63 +12216,122 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "9020dd7c-6226-4984-9330-e7a9c35e9b2e",
- "x-ms-ratelimit-remaining-subscription-reads": "11858",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085419Z:9020dd7c-6226-4984-9330-e7a9c35e9b2e",
+ "x-ms-correlation-request-id": "960d5566-9e61-49d9-9971-9c529c3df46c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11857",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222842Z:960d5566-9e61-49d9-9971-9c529c3df46c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "healthy": true,
- "relationshipStatus": "Idle",
- "mirrorState": "Broken",
- "totalProgress": "17624",
- "errorMessage": ""
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A28%3A16.9758969Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
+ },
+ "properties": {
+ "volumeType": "",
+ "dataProtection": {
+ "replication": {
+ "replicationId": "598692f6-f6f0-b09c-626c-42e1127f1d41",
+ "endPointType": "Dst",
+ "replicationSchedule": "_10minutely",
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "ipAddress": "10.0.0.4"
+ }
+ ],
+ "throughputMibps": 6.25,
+ "coolAccess": false,
+ "avsDataStore": "Disabled",
+ "maximumNumberOfFiles": 100000000,
+ "provisioningState": "Succeeded"
+ }
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
+ "RequestMethod": "POST",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "Content-Length": "0",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/0ecef2c5-a799-4ed4-96d7-770f93a1e483?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:54:20 GMT",
+ "Content-Length": "0",
+ "Date": "Wed, 27 Jul 2022 22:28:42 GMT",
"Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0ecef2c5-a799-4ed4-96d7-770f93a1e483?api-version=2022-03-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": "0a36130b-efdd-45a3-bb3b-897248de3392",
- "x-ms-ratelimit-remaining-subscription-reads": "11857",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085421Z:0a36130b-efdd-45a3-bb3b-897248de3392",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": {
- "healthy": true,
- "relationshipStatus": "Idle",
- "mirrorState": "Broken",
- "totalProgress": "17624",
- "errorMessage": ""
- }
+ "x-ms-correlation-request-id": "5944ef80-fcfe-4a78-b44e-774965ca4f4e",
+ "x-ms-ratelimit-remaining-subscription-writes": "1197",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222842Z:5944ef80-fcfe-4a78-b44e-774965ca4f4e",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -9808,7 +12339,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:54:22 GMT",
+ "Date": "Wed, 27 Jul 2022 22:28:42 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -9816,9 +12347,9 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5db71a96-903f-4ae6-8570-ef08e0b9eaac",
+ "x-ms-correlation-request-id": "a1cb8be1-2965-466f-a706-7f1c21f485de",
"x-ms-ratelimit-remaining-subscription-reads": "11856",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085422Z:5db71a96-903f-4ae6-8570-ef08e0b9eaac",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222843Z:a1cb8be1-2965-466f-a706-7f1c21f485de",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -9830,13 +12361,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -9844,7 +12375,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:54:23 GMT",
+ "Date": "Wed, 27 Jul 2022 22:28:44 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -9852,9 +12383,9 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7ea92b22-0625-403d-ab42-1bda69d2ed71",
+ "x-ms-correlation-request-id": "e6971d5e-ccc8-4c1b-a8f1-35d315bcc774",
"x-ms-ratelimit-remaining-subscription-reads": "11855",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085424Z:7ea92b22-0625-403d-ab42-1bda69d2ed71",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222844Z:e6971d5e-ccc8-4c1b-a8f1-35d315bcc774",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -9866,13 +12397,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -9880,7 +12411,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:54:25 GMT",
+ "Date": "Wed, 27 Jul 2022 22:28:45 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -9888,9 +12419,9 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "19d298a7-82d4-4648-ad72-4b5fdcaa981e",
+ "x-ms-correlation-request-id": "11977e76-ebfc-4b42-a01c-2f06f7d97cec",
"x-ms-ratelimit-remaining-subscription-reads": "11854",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085425Z:19d298a7-82d4-4648-ad72-4b5fdcaa981e",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222846Z:11977e76-ebfc-4b42-a01c-2f06f7d97cec",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -9902,13 +12433,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -9916,7 +12447,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:54:26 GMT",
+ "Date": "Wed, 27 Jul 2022 22:28:46 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -9924,9 +12455,9 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d14313f9-49cf-43e3-bf99-c3affc8aaf83",
+ "x-ms-correlation-request-id": "4f23a191-f9de-4fab-916e-dac382528109",
"x-ms-ratelimit-remaining-subscription-reads": "11853",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085427Z:d14313f9-49cf-43e3-bf99-c3affc8aaf83",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222847Z:4f23a191-f9de-4fab-916e-dac382528109",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -9938,13 +12469,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -9952,7 +12483,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:54:28 GMT",
+ "Date": "Wed, 27 Jul 2022 22:28:48 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -9960,9 +12491,9 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "25c43b2b-1ab8-446d-94ff-0e413b8661a0",
+ "x-ms-correlation-request-id": "3c52433a-7dbe-4c3d-83a7-450696af5947",
"x-ms-ratelimit-remaining-subscription-reads": "11852",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085428Z:25c43b2b-1ab8-446d-94ff-0e413b8661a0",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222848Z:3c52433a-7dbe-4c3d-83a7-450696af5947",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -9974,13 +12505,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/6356ef01-5f0a-4136-88e0-50c289964046?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -9988,7 +12519,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:54:29 GMT",
+ "Date": "Wed, 27 Jul 2022 22:28:49 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -9996,31 +12527,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "090c73c3-457c-4385-b0d0-36084572571e",
+ "x-ms-correlation-request-id": "777e0f74-2b16-4f54-a18e-4c0d8523e330",
"x-ms-ratelimit-remaining-subscription-reads": "11851",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085429Z:090c73c3-457c-4385-b0d0-36084572571e",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222850Z:777e0f74-2b16-4f54-a18e-4c0d8523e330",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/6356ef01-5f0a-4136-88e0-50c289964046",
- "name": "6356ef01-5f0a-4136-88e0-50c289964046",
- "status": "ResyncReplication",
- "startTime": "2022-06-09T08:53:59.5138986Z",
- "endTime": "0001-01-01T00:00:00Z",
- "percentComplete": 0.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"
- }
+ "healthy": true,
+ "relationshipStatus": "Idle",
+ "mirrorState": "Broken",
+ "totalProgress": "17624",
+ "errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -10028,7 +12555,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:54:29 GMT",
+ "Date": "Wed, 27 Jul 2022 22:28:51 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -10036,27 +12563,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3005294c-6525-4181-b79b-c457e2944164",
+ "x-ms-correlation-request-id": "08a9f4b4-cb3a-4afd-b1c8-085f724bbe22",
"x-ms-ratelimit-remaining-subscription-reads": "11850",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085430Z:3005294c-6525-4181-b79b-c457e2944164",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222851Z:08a9f4b4-cb3a-4afd-b1c8-085f724bbe22",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
- "mirrorState": "Mirrored",
- "totalProgress": "20768",
+ "mirrorState": "Broken",
+ "totalProgress": "17624",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/6356ef01-5f0a-4136-88e0-50c289964046?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -10064,7 +12591,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:55:01 GMT",
+ "Date": "Wed, 27 Jul 2022 22:28:52 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -10072,62 +12599,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "bf0d9acf-bbbb-4d2f-b1d6-742a3c4979a4",
- "x-ms-ratelimit-remaining-subscription-reads": "11999",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085501Z:bf0d9acf-bbbb-4d2f-b1d6-742a3c4979a4",
+ "x-ms-correlation-request-id": "f3eb0a64-8c5e-499e-8eb1-ed2927de2197",
+ "x-ms-ratelimit-remaining-subscription-reads": "11849",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222853Z:f3eb0a64-8c5e-499e-8eb1-ed2927de2197",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/6356ef01-5f0a-4136-88e0-50c289964046",
- "name": "6356ef01-5f0a-4136-88e0-50c289964046",
- "status": "Succeeded",
- "startTime": "2022-06-09T08:53:59.5138986Z",
- "endTime": "2022-06-09T08:54:35.1095555Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"
- }
+ "healthy": true,
+ "relationshipStatus": "Idle",
+ "mirrorState": "Broken",
+ "totalProgress": "17624",
+ "errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/breakReplication?api-version=2022-01-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/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
- },
- "RequestBody": null,
- "StatusCode": 202,
- "ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/b28bbdda-b452-4fbb-8f46-03f197a060d1?api-version=2022-01-01",
- "Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Thu, 09 Jun 2022 08:55:00 GMT",
- "Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/b28bbdda-b452-4fbb-8f46-03f197a060d1?api-version=2022-01-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": "008b200d-e7ea-4968-a451-165596ca1014",
- "x-ms-ratelimit-remaining-subscription-writes": "1195",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085501Z:008b200d-e7ea-4968-a451-165596ca1014",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": null
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/6356ef01-5f0a-4136-88e0-50c289964046?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -10135,7 +12627,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:55:00 GMT",
+ "Date": "Wed, 27 Jul 2022 22:28:53 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -10143,109 +12635,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8b7d492c-3770-473d-b1e1-291cc99c72d0",
- "x-ms-ratelimit-remaining-subscription-reads": "11849",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085501Z:8b7d492c-3770-473d-b1e1-291cc99c72d0",
+ "x-ms-correlation-request-id": "1cbc1e0f-761d-4cf9-be5e-9b454334d057",
+ "x-ms-ratelimit-remaining-subscription-reads": "11848",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222854Z:1cbc1e0f-761d-4cf9-be5e-9b454334d057",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A54%3A35.0998711Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "DataProtection",
- "dataProtection": {
- "replication": {
- "replicationId": "daa072fe-2d41-0248-d609-26def5a3c335",
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "replicationPolicy": "MirrorAllSnapshots",
- "replicationStatus": "Mirrored",
- "remotePath": {
- "externalHostName": "az-sjc21-f04c01-bu417-sto",
- "serverName": "svm_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "volumeName": "vol_sdk_py_tests_vol_21_45bb57"
- },
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "remoteVolumeRegion": "eastus"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "ownerId": "ff7711ad-cdb3-11ea-9944-ba3bf91f31b5",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "poolId": "83a8e743-45f2-80c6-14d9-132fff6e1fb5",
- "mountTargets": [
- {
- "provisioningState": "",
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "startIp": "",
- "endIp": "",
- "gateway": "",
- "netmask": "",
- "subnet": "",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "provisioningState": "Succeeded"
- }
+ "healthy": true,
+ "relationshipStatus": "Idle",
+ "mirrorState": "Broken",
+ "totalProgress": "17624",
+ "errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -10253,7 +12663,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:55:02 GMT",
+ "Date": "Wed, 27 Jul 2022 22:28:55 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -10261,27 +12671,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5e835d9c-593b-4190-aa9f-6acd6f19351a",
- "x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085502Z:5e835d9c-593b-4190-aa9f-6acd6f19351a",
+ "x-ms-correlation-request-id": "133caf56-8ffc-4062-9b57-5fc4cc4476c8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11847",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222856Z:133caf56-8ffc-4062-9b57-5fc4cc4476c8",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
- "mirrorState": "Mirrored",
- "totalProgress": "20768",
+ "mirrorState": "Broken",
+ "totalProgress": "17624",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -10289,7 +12699,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:55:04 GMT",
+ "Date": "Wed, 27 Jul 2022 22:28:57 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -10297,27 +12707,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2f3d6bb3-bd8d-4a40-9336-3eec25fadc53",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085504Z:2f3d6bb3-bd8d-4a40-9336-3eec25fadc53",
+ "x-ms-correlation-request-id": "91392ffe-3d93-4738-ab95-1e57283e0f38",
+ "x-ms-ratelimit-remaining-subscription-reads": "11846",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222857Z:91392ffe-3d93-4738-ab95-1e57283e0f38",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
- "mirrorState": "Mirrored",
- "totalProgress": "20768",
+ "mirrorState": "Broken",
+ "totalProgress": "17624",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -10325,7 +12735,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:55:05 GMT",
+ "Date": "Wed, 27 Jul 2022 22:28:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -10333,27 +12743,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "5454c550-fefc-42c5-b6c8-d135014fd71a",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085505Z:5454c550-fefc-42c5-b6c8-d135014fd71a",
+ "x-ms-correlation-request-id": "54742e05-ad96-4828-8d17-b2513b1d0c96",
+ "x-ms-ratelimit-remaining-subscription-reads": "11845",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222859Z:54742e05-ad96-4828-8d17-b2513b1d0c96",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
- "mirrorState": "Mirrored",
- "totalProgress": "20768",
+ "mirrorState": "Broken",
+ "totalProgress": "17624",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -10361,7 +12771,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:55:07 GMT",
+ "Date": "Wed, 27 Jul 2022 22:29:00 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -10369,27 +12779,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1b73e653-4be1-45c5-92e6-f49e2ce6fae6",
- "x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085507Z:1b73e653-4be1-45c5-92e6-f49e2ce6fae6",
+ "x-ms-correlation-request-id": "3f4e1179-5e56-43f8-a10d-f45617542a68",
+ "x-ms-ratelimit-remaining-subscription-reads": "11844",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222900Z:3f4e1179-5e56-43f8-a10d-f45617542a68",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Broken",
- "totalProgress": "20768",
+ "totalProgress": "17624",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/b28bbdda-b452-4fbb-8f46-03f197a060d1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -10397,7 +12807,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:55:31 GMT",
+ "Date": "Wed, 27 Jul 2022 22:29:01 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -10405,31 +12815,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "505cd658-1aa8-4cfc-ba0c-576f8dd70abe",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085531Z:505cd658-1aa8-4cfc-ba0c-576f8dd70abe",
+ "x-ms-correlation-request-id": "8a08f014-25e5-4265-bcae-fe89bb8ae2b4",
+ "x-ms-ratelimit-remaining-subscription-reads": "11843",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222902Z:8a08f014-25e5-4265-bcae-fe89bb8ae2b4",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/b28bbdda-b452-4fbb-8f46-03f197a060d1",
- "name": "b28bbdda-b452-4fbb-8f46-03f197a060d1",
- "status": "Succeeded",
- "startTime": "2022-06-09T08:55:00.9137726Z",
- "endTime": "2022-06-09T08:55:09.0766618Z",
- "percentComplete": 100.0,
- "properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"
- }
+ "healthy": true,
+ "relationshipStatus": "Idle",
+ "mirrorState": "Broken",
+ "totalProgress": "17624",
+ "errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/b28bbdda-b452-4fbb-8f46-03f197a060d1?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "*/*",
+ "Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -10437,7 +12843,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:55:31 GMT",
+ "Date": "Wed, 27 Jul 2022 22:29:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -10445,139 +12851,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "cc81a097-635a-4e68-b07b-4345e4bd5a8b",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085531Z:cc81a097-635a-4e68-b07b-4345e4bd5a8b",
+ "x-ms-correlation-request-id": "53f81601-a7b7-4740-ad2f-3cbfd9912c12",
+ "x-ms-ratelimit-remaining-subscription-reads": "11842",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222903Z:53f81601-a7b7-4740-ad2f-3cbfd9912c12",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A55%3A09.0765614Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "",
- "dataProtection": {
- "replication": {
- "replicationId": "daa072fe-2d41-0248-d609-26def5a3c335",
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "replicationPolicy": "MirrorAllSnapshots",
- "replicationStatus": "Mirrored",
- "remotePath": {
- "externalHostName": "az-sjc21-f04c01-bu417-sto",
- "serverName": "svm_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "volumeName": "vol_sdk_py_tests_vol_21_45bb57"
- },
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "remoteVolumeRegion": "eastus"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "ownerId": "ff7711ad-cdb3-11ea-9944-ba3bf91f31b5",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "poolId": "83a8e743-45f2-80c6-14d9-132fff6e1fb5",
- "mountTargets": [
- {
- "provisioningState": "",
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "startIp": "",
- "endIp": "",
- "gateway": "",
- "netmask": "",
- "subnet": "",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "provisioningState": "Succeeded"
- }
+ "healthy": true,
+ "relationshipStatus": "Idle",
+ "mirrorState": "Broken",
+ "totalProgress": "17624",
+ "errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/deleteReplication?api-version=2022-01-01",
- "RequestMethod": "POST",
- "RequestHeaders": {
- "Accept": "*/*",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
- },
- "RequestBody": null,
- "StatusCode": 202,
- "ResponseHeaders": {
- "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/cc9dbebe-5464-4276-8abb-b78e07dac6dd?api-version=2022-01-01",
- "Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Thu, 09 Jun 2022 08:55:38 GMT",
- "Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/cc9dbebe-5464-4276-8abb-b78e07dac6dd?api-version=2022-01-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": "a9b423a4-ee90-4552-b808-8a1f8f177d45",
- "x-ms-ratelimit-remaining-subscription-writes": "1199",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085538Z:a9b423a4-ee90-4552-b808-8a1f8f177d45",
- "X-Powered-By": "ASP.NET"
- },
- "ResponseBody": null
- },
- {
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -10585,7 +12879,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:55:38 GMT",
+ "Date": "Wed, 27 Jul 2022 22:29:04 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -10593,27 +12887,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3949aa34-4940-4ee2-9d1f-9f522a1409f4",
- "x-ms-ratelimit-remaining-subscription-reads": "11992",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085538Z:3949aa34-4940-4ee2-9d1f-9f522a1409f4",
+ "x-ms-correlation-request-id": "b7bcbde4-4145-47f2-8f7b-e31ec0c65082",
+ "x-ms-ratelimit-remaining-subscription-reads": "11841",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222905Z:b7bcbde4-4145-47f2-8f7b-e31ec0c65082",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
"healthy": true,
"relationshipStatus": "Idle",
"mirrorState": "Broken",
- "totalProgress": "20768",
+ "totalProgress": "17624",
"errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -10621,7 +12915,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:55:40 GMT",
+ "Date": "Wed, 27 Jul 2022 22:29:06 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -10629,27 +12923,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a64c871f-24ae-431b-adb2-beb769a07ec7",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085540Z:a64c871f-24ae-431b-adb2-beb769a07ec7",
+ "x-ms-correlation-request-id": "0c39a0dd-0de5-4691-8aa4-9e83494b8758",
+ "x-ms-ratelimit-remaining-subscription-reads": "11840",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222906Z:0c39a0dd-0de5-4691-8aa4-9e83494b8758",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "healthy": false,
- "relationshipStatus": "",
- "mirrorState": "",
- "totalProgress": "",
- "errorMessage": "The replication for volume: sdk-py-tests-vol-2 is currently being deleted."
+ "healthy": true,
+ "relationshipStatus": "Idle",
+ "mirrorState": "Mirrored",
+ "totalProgress": "20768",
+ "errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0ecef2c5-a799-4ed4-96d7-770f93a1e483?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -10657,7 +12951,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:55:42 GMT",
+ "Date": "Wed, 27 Jul 2022 22:29:12 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -10665,27 +12959,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7d0e0cb4-20e8-41a3-8dd2-ca1ff152746c",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085542Z:7d0e0cb4-20e8-41a3-8dd2-ca1ff152746c",
+ "x-ms-correlation-request-id": "6e76c91e-908d-418e-8646-d324c2e144e3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11839",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222912Z:6e76c91e-908d-418e-8646-d324c2e144e3",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "healthy": false,
- "relationshipStatus": "",
- "mirrorState": "",
- "totalProgress": "",
- "errorMessage": "The replication for volume: sdk-py-tests-vol-2 is currently being deleted."
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0ecef2c5-a799-4ed4-96d7-770f93a1e483",
+ "name": "0ecef2c5-a799-4ed4-96d7-770f93a1e483",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T22:28:42.5335052Z",
+ "endTime": "2022-07-27T22:29:12.5182537Z",
+ "percentComplete": 100.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0ecef2c5-a799-4ed4-96d7-770f93a1e483?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -10693,7 +12991,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:55:43 GMT",
+ "Date": "Wed, 27 Jul 2022 22:29:12 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -10701,63 +12999,140 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c8d99af8-7a05-4592-bb3f-aaeeecc5fac2",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085543Z:c8d99af8-7a05-4592-bb3f-aaeeecc5fac2",
+ "x-ms-correlation-request-id": "ab3366e6-1e64-4ea9-8fb1-47cec0f09086",
+ "x-ms-ratelimit-remaining-subscription-reads": "11838",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222913Z:ab3366e6-1e64-4ea9-8fb1-47cec0f09086",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "healthy": false,
- "relationshipStatus": "",
- "mirrorState": "",
- "totalProgress": "",
- "errorMessage": "The replication for volume: sdk-py-tests-vol-2 is currently being deleted."
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A29%3A12.5073705Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
+ },
+ "properties": {
+ "volumeType": "DataProtection",
+ "dataProtection": {
+ "replication": {
+ "replicationId": "598692f6-f6f0-b09c-626c-42e1127f1d41",
+ "endPointType": "Dst",
+ "replicationSchedule": "_10minutely",
+ "replicationPolicy": "MirrorAllSnapshots",
+ "replicationStatus": "Mirrored",
+ "remotePath": {
+ "externalHostName": "az-bn13-f01c01-bs118-sto",
+ "serverName": "svm_1a1854d05b8211e99e4a3a8c013b5748_3caa7397",
+ "volumeName": "vol_sdk_py_tests_vol_4_b2_86eb264b_53e43d"
+ },
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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/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": "baf5f62f-d27a-ee2f-b673-bf029c38ead3",
+ "mountTargets": [
+ {
+ "provisioningState": "",
+ "mountTargetId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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",
+ "provisioningState": "Succeeded"
+ }
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
+ "RequestMethod": "POST",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "Content-Length": "0",
+ "Content-Type": "application/json",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/5d8f4621-d5eb-4303-bcae-9292bbab4c93?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:55:45 GMT",
+ "Content-Length": "0",
+ "Date": "Wed, 27 Jul 2022 22:29:36 GMT",
"Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/5d8f4621-d5eb-4303-bcae-9292bbab4c93?api-version=2022-03-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": "a0861291-5a94-46f4-8c5f-ec5fa63b1f29",
- "x-ms-ratelimit-remaining-subscription-reads": "11988",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085545Z:a0861291-5a94-46f4-8c5f-ec5fa63b1f29",
+ "x-ms-correlation-request-id": "93dec252-d287-4c51-9762-a5e46b434ad6",
+ "x-ms-ratelimit-remaining-subscription-writes": "1196",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222937Z:93dec252-d287-4c51-9762-a5e46b434ad6",
"X-Powered-By": "ASP.NET"
},
- "ResponseBody": {
- "healthy": false,
- "relationshipStatus": "",
- "mirrorState": "",
- "totalProgress": "",
- "errorMessage": "The replication for volume: sdk-py-tests-vol-2 is currently being deleted."
- }
+ "ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -10765,7 +13140,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:55:46 GMT",
+ "Date": "Wed, 27 Jul 2022 22:29:37 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -10773,27 +13148,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6b4bc8a7-c2f5-4aa4-a317-a82a7652037a",
- "x-ms-ratelimit-remaining-subscription-reads": "11987",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085546Z:6b4bc8a7-c2f5-4aa4-a317-a82a7652037a",
+ "x-ms-correlation-request-id": "755f9cba-4eb9-4046-806d-a9ce001ad58c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11837",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T222937Z:755f9cba-4eb9-4046-806d-a9ce001ad58c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "healthy": false,
- "relationshipStatus": "",
- "mirrorState": "",
- "totalProgress": "",
- "errorMessage": "The replication for volume: sdk-py-tests-vol-2 is currently being deleted."
+ "healthy": true,
+ "relationshipStatus": "Idle",
+ "mirrorState": "Mirrored",
+ "totalProgress": "20768",
+ "errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/5d8f4621-d5eb-4303-bcae-9292bbab4c93?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -10801,7 +13176,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:55:48 GMT",
+ "Date": "Wed, 27 Jul 2022 22:30:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -10809,27 +13184,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "d682b692-ebf3-47fd-921c-39303450d9c5",
- "x-ms-ratelimit-remaining-subscription-reads": "11986",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085548Z:d682b692-ebf3-47fd-921c-39303450d9c5",
+ "x-ms-correlation-request-id": "23776abd-b50d-4fc0-a16c-d7d950b17f71",
+ "x-ms-ratelimit-remaining-subscription-reads": "11836",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223007Z:23776abd-b50d-4fc0-a16c-d7d950b17f71",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "healthy": false,
- "relationshipStatus": "",
- "mirrorState": "",
- "totalProgress": "",
- "errorMessage": "The replication for volume: sdk-py-tests-vol-2 is currently being deleted."
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/5d8f4621-d5eb-4303-bcae-9292bbab4c93",
+ "name": "5d8f4621-d5eb-4303-bcae-9292bbab4c93",
+ "status": "Succeeded",
+ "startTime": "2022-07-27T22:29:37.1859926Z",
+ "endTime": "2022-07-27T22:29:45.5715239Z",
+ "percentComplete": 100.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/5d8f4621-d5eb-4303-bcae-9292bbab4c93?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -10837,7 +13216,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:55:49 GMT",
+ "Date": "Wed, 27 Jul 2022 22:30:07 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -10845,63 +13224,139 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3b34caff-e14d-4a8c-b3b8-e26ca031869c",
- "x-ms-ratelimit-remaining-subscription-reads": "11985",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085549Z:3b34caff-e14d-4a8c-b3b8-e26ca031869c",
+ "x-ms-correlation-request-id": "6c9035ce-53c6-4090-a53e-98cfda0c9614",
+ "x-ms-ratelimit-remaining-subscription-reads": "11835",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223007Z:6c9035ce-53c6-4090-a53e-98cfda0c9614",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "healthy": false,
- "relationshipStatus": "",
- "mirrorState": "",
- "totalProgress": "",
- "errorMessage": "The replication for volume: sdk-py-tests-vol-2 is currently being deleted."
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-07-27T22%3A29%3A45.5643627Z\u0027\u0022",
+ "location": "eastus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
+ },
+ "properties": {
+ "volumeType": "",
+ "dataProtection": {
+ "replication": {
+ "replicationId": "598692f6-f6f0-b09c-626c-42e1127f1d41",
+ "endPointType": "Dst",
+ "replicationSchedule": "_10minutely",
+ "replicationPolicy": "MirrorAllSnapshots",
+ "replicationStatus": "Mirrored",
+ "remotePath": {
+ "externalHostName": "az-bn13-f01c01-bs118-sto",
+ "serverName": "svm_1a1854d05b8211e99e4a3a8c013b5748_3caa7397",
+ "volumeName": "vol_sdk_py_tests_vol_4_b2_86eb264b_53e43d"
+ },
+ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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/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": "baf5f62f-d27a-ee2f-b673-bf029c38ead3",
+ "mountTargets": [
+ {
+ "provisioningState": "",
+ "mountTargetId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "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",
+ "provisioningState": "Succeeded"
+ }
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
- "RequestMethod": "GET",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
+ "RequestMethod": "POST",
"RequestHeaders": {
- "Accept": "application/json",
+ "Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "Content-Length": "0",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/24e7f07f-7a7c-4c73-b7a3-f5a80c674b98?api-version=2022-03-01",
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
- "Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:55:51 GMT",
+ "Content-Length": "0",
+ "Date": "Wed, 27 Jul 2022 22:30:07 GMT",
"Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/24e7f07f-7a7c-4c73-b7a3-f5a80c674b98?api-version=2022-03-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": "fa99e526-0b59-4e0e-8767-e61f80ad349a",
- "x-ms-ratelimit-remaining-subscription-reads": "11984",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085551Z:fa99e526-0b59-4e0e-8767-e61f80ad349a",
+ "x-ms-correlation-request-id": "d299a8ee-c5e9-4622-863e-a9499e8c4b3a",
+ "x-ms-ratelimit-remaining-subscription-writes": "1195",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223008Z:d299a8ee-c5e9-4622-863e-a9499e8c4b3a",
"X-Powered-By": "ASP.NET"
},
- "ResponseBody": {
- "healthy": false,
- "relationshipStatus": "",
- "mirrorState": "",
- "totalProgress": "",
- "errorMessage": "The replication for volume: sdk-py-tests-vol-2 is currently being deleted."
- }
+ "ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -10909,7 +13364,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:55:52 GMT",
+ "Date": "Wed, 27 Jul 2022 22:30:08 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -10917,27 +13372,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2e40a4de-b452-48c2-ad5e-e9ee697b9419",
- "x-ms-ratelimit-remaining-subscription-reads": "11983",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085552Z:2e40a4de-b452-48c2-ad5e-e9ee697b9419",
+ "x-ms-correlation-request-id": "23019df4-c43e-496f-9054-88050673da49",
+ "x-ms-ratelimit-remaining-subscription-reads": "11834",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223008Z:23019df4-c43e-496f-9054-88050673da49",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "healthy": false,
- "relationshipStatus": "",
- "mirrorState": "",
- "totalProgress": "",
- "errorMessage": "The replication for volume: sdk-py-tests-vol-2 is currently being deleted."
+ "healthy": true,
+ "relationshipStatus": "Idle",
+ "mirrorState": "Broken",
+ "totalProgress": "20768",
+ "errorMessage": ""
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -10945,7 +13400,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:55:54 GMT",
+ "Date": "Wed, 27 Jul 2022 22:30:11 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -10953,9 +13408,9 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b393b1ea-a421-4b78-828e-5450afac4613",
- "x-ms-ratelimit-remaining-subscription-reads": "11982",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085554Z:b393b1ea-a421-4b78-828e-5450afac4613",
+ "x-ms-correlation-request-id": "d4864823-0135-4ec9-915e-5d32cbe32e38",
+ "x-ms-ratelimit-remaining-subscription-reads": "11999",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223012Z:d4864823-0135-4ec9-915e-5d32cbe32e38",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -10963,17 +13418,17 @@
"relationshipStatus": "",
"mirrorState": "",
"totalProgress": "",
- "errorMessage": "The replication for volume: sdk-py-tests-vol-2 is currently being deleted."
+ "errorMessage": "The replication for volume: sdk-py-tests-vol-4-b2-86eb264b is currently being deleted."
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -10981,7 +13436,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:55:55 GMT",
+ "Date": "Wed, 27 Jul 2022 22:30:14 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -10989,9 +13444,9 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "26d72bfe-2be7-4405-8bac-1f90d81cfbc1",
- "x-ms-ratelimit-remaining-subscription-reads": "11981",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085555Z:26d72bfe-2be7-4405-8bac-1f90d81cfbc1",
+ "x-ms-correlation-request-id": "ce3cd3d5-d3a1-40ba-a104-3e81ff72be54",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223015Z:ce3cd3d5-d3a1-40ba-a104-3e81ff72be54",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -10999,17 +13454,17 @@
"relationshipStatus": "",
"mirrorState": "",
"totalProgress": "",
- "errorMessage": "The replication for volume: sdk-py-tests-vol-2 is currently being deleted."
+ "errorMessage": "The replication for volume: sdk-py-tests-vol-4-b2-86eb264b is currently being deleted."
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -11017,7 +13472,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:55:57 GMT",
+ "Date": "Wed, 27 Jul 2022 22:30:15 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -11025,9 +13480,9 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "b1aa157d-fbbe-4c70-901f-9144816f9981",
- "x-ms-ratelimit-remaining-subscription-reads": "11980",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085557Z:b1aa157d-fbbe-4c70-901f-9144816f9981",
+ "x-ms-correlation-request-id": "6af02756-a7d2-4b6d-b11f-0ea85de04728",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223016Z:6af02756-a7d2-4b6d-b11f-0ea85de04728",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -11035,17 +13490,17 @@
"relationshipStatus": "",
"mirrorState": "",
"totalProgress": "",
- "errorMessage": "The replication for volume: sdk-py-tests-vol-2 is currently being deleted."
+ "errorMessage": "The replication for volume: sdk-py-tests-vol-4-b2-86eb264b is currently being deleted."
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -11053,7 +13508,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:55:58 GMT",
+ "Date": "Wed, 27 Jul 2022 22:30:17 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -11061,9 +13516,9 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "58407257-a948-4e94-ae1e-492529bcaff4",
- "x-ms-ratelimit-remaining-subscription-reads": "11979",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085558Z:58407257-a948-4e94-ae1e-492529bcaff4",
+ "x-ms-correlation-request-id": "5692008b-f07d-4a3f-abd7-14b5e155c3e9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11996",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223018Z:5692008b-f07d-4a3f-abd7-14b5e155c3e9",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
@@ -11071,50 +13526,53 @@
"relationshipStatus": "",
"mirrorState": "",
"totalProgress": "",
- "errorMessage": "The replication for volume: sdk-py-tests-vol-2 is currently being deleted."
+ "errorMessage": "The replication for volume: sdk-py-tests-vol-4-b2-86eb264b is currently being deleted."
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
- "StatusCode": 400,
+ "StatusCode": 200,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "105",
+ "Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:56:00 GMT",
+ "Date": "Wed, 27 Jul 2022 22:30: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": "e45775a6-3ef6-434d-bfbe-2cf23b10a846",
- "x-ms-ratelimit-remaining-subscription-reads": "11978",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085600Z:e45775a6-3ef6-434d-bfbe-2cf23b10a846",
+ "x-ms-correlation-request-id": "9f784717-8937-4ff6-a145-d4fe2ea08f69",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223019Z:9f784717-8937-4ff6-a145-d4fe2ea08f69",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "error": {
- "code": "VolumeReplicationGetStatusFailure",
- "message": "Volume replication missing or deleted."
- }
+ "healthy": false,
+ "relationshipStatus": "",
+ "mirrorState": "",
+ "totalProgress": "",
+ "errorMessage": "The replication for volume: sdk-py-tests-vol-4-b2-86eb264b is currently being deleted."
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -11122,8 +13580,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:56:02 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A55%3A45.4563843Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:30:20 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -11131,194 +13588,60 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4161ceba-a5e3-42f9-8680-254f6dd9c861",
- "x-ms-ratelimit-remaining-subscription-reads": "11977",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085602Z:4161ceba-a5e3-42f9-8680-254f6dd9c861",
+ "x-ms-correlation-request-id": "1dd9a940-2ccd-4a10-b7d2-d032528162c1",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223021Z:1dd9a940-2ccd-4a10-b7d2-d032528162c1",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A55%3A45.4563843Z\u0027\u0022",
- "location": "eastus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
- },
- "properties": {
- "volumeType": "",
- "dataProtection": {},
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "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_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
- "networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
- "storageToNetworkProximity": "Default",
- "snapshotDirectoryVisible": true,
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "encryptionKeySource": "Microsoft.NetApp",
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "volumeSpecName": "generic",
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "isDefaultQuotaEnabled": false,
- "defaultUserQuotaInKiBs": 0,
- "defaultGroupQuotaInKiBs": 0,
- "enableSubvolumes": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "Succeeded"
- }
+ "healthy": false,
+ "relationshipStatus": "",
+ "mirrorState": "",
+ "totalProgress": "",
+ "errorMessage": "The replication for volume: sdk-py-tests-vol-4-b2-86eb264b is currently being deleted."
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
- "StatusCode": 200,
+ "StatusCode": 400,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Encoding": "gzip",
+ "Content-Length": "105",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:56:03 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A55%3A38.2509816Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:30: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": "6de95ae9-7866-4331-a1be-59f80987a434",
- "x-ms-ratelimit-remaining-subscription-reads": "11976",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085603Z:6de95ae9-7866-4331-a1be-59f80987a434",
+ "x-ms-correlation-request-id": "be5c436a-0185-4404-a1a7-56aff7326e96",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223022Z:be5c436a-0185-4404-a1a7-56aff7326e96",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
- "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes",
- "etag": "W/\u0022datetime\u00272022-06-09T08%3A55%3A38.2509816Z\u0027\u0022",
- "location": "westus",
- "tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
- },
- "properties": {
- "volumeType": "",
- "dataProtection": {
- "replication": {
- "replicationId": "daa072fe-2d41-0248-d609-26def5a3c335",
- "endPointType": "Dst",
- "replicationSchedule": "_10minutely",
- "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "remoteVolumeRegion": "eastus"
- }
- },
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "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_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
- "networkFeatures": "Basic",
- "storageToNetworkProximity": "Default",
- "kerberosEnabled": false,
- "securityStyle": "Unix",
- "smbEncryption": false,
- "smbContinuouslyAvailable": false,
- "ldapEnabled": false,
- "unixPermissions": "0770",
- "mountTargets": [
- {
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
- }
- ],
- "throughputMibps": 6.4,
- "coolAccess": false,
- "avsDataStore": "Disabled",
- "maximumNumberOfFiles": 100000000,
- "provisioningState": "DeleteReplication"
+ "error": {
+ "code": "VolumeReplicationGetStatusFailure",
+ "message": "Volume replication missing or deleted."
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -11326,8 +13649,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:56:04 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A55%3A45.4563843Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:30:23 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A30%3A14.2827798Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -11335,26 +13658,26 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "765161dd-efe5-4924-b3e3-742a0adbae4f",
- "x-ms-ratelimit-remaining-subscription-reads": "11975",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085605Z:765161dd-efe5-4924-b3e3-742a0adbae4f",
+ "x-ms-correlation-request-id": "b3f01fff-2e2c-4e2e-b369-4b9c626b6778",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223024Z:b3f01fff-2e2c-4e2e-b369-4b9c626b6778",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-06-09T08%3A55%3A45.4563843Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T22%3A30%3A14.2827798Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
+ "CreatedOnDate": "2022-07-27T22:12:41.7418774Z"
},
"properties": {
"volumeType": "",
"dataProtection": {},
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
+ "creationToken": "sdk-py-tests-vol-3-b2-86eb264b",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -11380,10 +13703,10 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d673703a",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
"kerberosEnabled": false,
@@ -11395,12 +13718,12 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "ipAddress": "10.0.0.4"
}
],
- "throughputMibps": 6.4,
+ "throughputMibps": 6.25,
"volumeSpecName": "generic",
"coolAccess": false,
"avsDataStore": "Disabled",
@@ -11414,13 +13737,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -11428,8 +13751,8 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:56:05 GMT",
- "ETag": "W/\u0022datetime\u00272022-06-09T08%3A56%3A03.310741Z\u0027\u0022",
+ "Date": "Wed, 27 Jul 2022 22:30:24 GMT",
+ "ETag": "W/\u0022datetime\u00272022-07-27T22%3A30%3A24.3820548Z\u0027\u0022",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -11437,26 +13760,26 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3b1da55c-b843-4d18-b765-cfe91ef42508",
- "x-ms-ratelimit-remaining-subscription-reads": "11974",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085605Z:3b1da55c-b843-4d18-b765-cfe91ef42508",
+ "x-ms-correlation-request-id": "774c908f-7207-44cd-ac34-cd373d8de98f",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223025Z:774c908f-7207-44cd-ac34-cd373d8de98f",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-06-09T08%3A56%3A03.310741Z\u0027\u0022",
- "location": "westus",
+ "etag": "W/\u0022datetime\u00272022-07-27T22%3A30%3A24.3820548Z\u0027\u0022",
+ "location": "eastus2",
"tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
},
"properties": {
"volumeType": "",
"dataProtection": {},
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
+ "creationToken": "sdk-py-tests-vol-4-b2-86eb264b",
"usageThreshold": 107374182400,
"exportPolicy": {
"rules": [
@@ -11482,8 +13805,8 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default",
"networkFeatures": "Basic",
"storageToNetworkProximity": "Default",
"kerberosEnabled": false,
@@ -11494,12 +13817,12 @@
"unixPermissions": "0770",
"mountTargets": [
{
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "ipAddress": "10.7.0.4"
+ "mountTargetId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "ipAddress": "10.0.0.4"
}
],
- "throughputMibps": 6.4,
+ "throughputMibps": 6.25,
"coolAccess": false,
"avsDataStore": "Disabled",
"maximumNumberOfFiles": 100000000,
@@ -11508,43 +13831,43 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/westus/operationResults/53b39d32-c001-4076-a472-4298afb9901e?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/56722126-8713-49e9-8202-a7bb8b370f3a?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Thu, 09 Jun 2022 08:56:06 GMT",
+ "Date": "Wed, 27 Jul 2022 22:30:25 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/53b39d32-c001-4076-a472-4298afb9901e?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/56722126-8713-49e9-8202-a7bb8b370f3a?api-version=2022-03-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": "f9cd31c5-6984-4f98-b2ac-79157ad4809a",
+ "x-ms-correlation-request-id": "5b88f512-2165-4ac8-84cb-88a7ed287b07",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085607Z:f9cd31c5-6984-4f98-b2ac-79157ad4809a",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223026Z:5b88f512-2165-4ac8-84cb-88a7ed287b07",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/cc9dbebe-5464-4276-8abb-b78e07dac6dd?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/24e7f07f-7a7c-4c73-b7a3-f5a80c674b98?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -11552,7 +13875,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:56:08 GMT",
+ "Date": "Wed, 27 Jul 2022 22:30:38 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -11560,31 +13883,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7b7247b3-0ef7-45e7-be57-c4bc404e4dfe",
- "x-ms-ratelimit-remaining-subscription-reads": "11973",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085608Z:7b7247b3-0ef7-45e7-be57-c4bc404e4dfe",
+ "x-ms-correlation-request-id": "535a66d2-b6e0-4208-965e-660027d0b359",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223038Z:535a66d2-b6e0-4208-965e-660027d0b359",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/cc9dbebe-5464-4276-8abb-b78e07dac6dd",
- "name": "cc9dbebe-5464-4276-8abb-b78e07dac6dd",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/24e7f07f-7a7c-4c73-b7a3-f5a80c674b98",
+ "name": "24e7f07f-7a7c-4c73-b7a3-f5a80c674b98",
"status": "Succeeded",
- "startTime": "2022-06-09T08:55:38.2508032Z",
- "endTime": "2022-06-09T08:56:03.3103985Z",
+ "startTime": "2022-07-27T22:30:08.1767544Z",
+ "endTime": "2022-07-27T22:30:24.3845576Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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/westus/operationResults/cc9dbebe-5464-4276-8abb-b78e07dac6dd?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/24e7f07f-7a7c-4c73-b7a3-f5a80c674b98?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -11592,7 +13915,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:56:08 GMT",
+ "Date": "Wed, 27 Jul 2022 22:30:38 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -11600,27 +13923,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ad1afe93-4f1f-49e3-99d1-902c9bc89d2e",
- "x-ms-ratelimit-remaining-subscription-reads": "11972",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085609Z:ad1afe93-4f1f-49e3-99d1-902c9bc89d2e",
+ "x-ms-correlation-request-id": "74adf2db-c035-4823-ac12-c3443b613764",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223038Z:74adf2db-c035-4823-ac12-c3443b613764",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-06-09T08%3A56%3A03.310741Z\u0027\u0022",
- "location": "westus",
+ "etag": "W/\u0022datetime\u00272022-07-27T22%3A30%3A24.3820548Z\u0027\u0022",
+ "location": "eastus2",
"tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
},
"properties": {
"volumeType": "",
"dataProtection": {},
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "ownerId": "ff7711ad-cdb3-11ea-9944-ba3bf91f31b5",
+ "creationToken": "sdk-py-tests-vol-4-b2-86eb264b",
+ "ownerId": "1a1854d0-5b82-11e9-9e4a-3a8c013b5748",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -11648,26 +13971,26 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "poolId": "83a8e743-45f2-80c6-14d9-132fff6e1fb5",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "baf5f62f-d27a-ee2f-b673-bf029c38ead3",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
+ "mountTargetId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
- "throughputMibps": 6.4,
+ "throughputMibps": 6.25,
"kerberosEnabled": false,
"securityStyle": "Unix",
"smbEncryption": false,
@@ -11681,13 +14004,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/53b39d32-c001-4076-a472-4298afb9901e?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/56722126-8713-49e9-8202-a7bb8b370f3a?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -11695,7 +14018,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:56:36 GMT",
+ "Date": "Wed, 27 Jul 2022 22:30:56 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -11703,31 +14026,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8dfe0881-f4b1-4618-a43f-56fd9d07487a",
- "x-ms-ratelimit-remaining-subscription-reads": "11971",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085637Z:8dfe0881-f4b1-4618-a43f-56fd9d07487a",
+ "x-ms-correlation-request-id": "c72228b6-6e3d-4b08-80db-33317ee1eeee",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223056Z:c72228b6-6e3d-4b08-80db-33317ee1eeee",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/53b39d32-c001-4076-a472-4298afb9901e",
- "name": "53b39d32-c001-4076-a472-4298afb9901e",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/56722126-8713-49e9-8202-a7bb8b370f3a",
+ "name": "56722126-8713-49e9-8202-a7bb8b370f3a",
"status": "Deleting",
- "startTime": "2022-06-09T08:56:06.9519314Z",
+ "startTime": "2022-07-27T22:30:26.2423759Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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/westus/operationResults/53b39d32-c001-4076-a472-4298afb9901e?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/56722126-8713-49e9-8202-a7bb8b370f3a?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -11735,7 +14058,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:57:07 GMT",
+ "Date": "Wed, 27 Jul 2022 22:31:26 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -11743,31 +14066,71 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "1bf0f005-2774-4469-be5a-3bab7e7c9893",
- "x-ms-ratelimit-remaining-subscription-reads": "11970",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085707Z:1bf0f005-2774-4469-be5a-3bab7e7c9893",
+ "x-ms-correlation-request-id": "67a64e9b-58ad-49b7-a3dd-5a1a94bf6373",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223126Z:67a64e9b-58ad-49b7-a3dd-5a1a94bf6373",
+ "X-Powered-By": "ASP.NET"
+ },
+ "ResponseBody": {
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/56722126-8713-49e9-8202-a7bb8b370f3a",
+ "name": "56722126-8713-49e9-8202-a7bb8b370f3a",
+ "status": "Deleting",
+ "startTime": "2022-07-27T22:30:26.2423759Z",
+ "endTime": "0001-01-01T00:00:00Z",
+ "percentComplete": 0.0,
+ "properties": {
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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/56722126-8713-49e9-8202-a7bb8b370f3a?api-version=2022-03-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "*/*",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.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": "Wed, 27 Jul 2022 22: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": "50ae037e-cc2a-4309-9464-0a44d7c48114",
+ "x-ms-ratelimit-remaining-subscription-reads": "11986",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223157Z:50ae037e-cc2a-4309-9464-0a44d7c48114",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/53b39d32-c001-4076-a472-4298afb9901e",
- "name": "53b39d32-c001-4076-a472-4298afb9901e",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/56722126-8713-49e9-8202-a7bb8b370f3a",
+ "name": "56722126-8713-49e9-8202-a7bb8b370f3a",
"status": "Succeeded",
- "startTime": "2022-06-09T08:56:06.9519314Z",
- "endTime": "2022-06-09T08:56:51.2129562Z",
+ "startTime": "2022-07-27T22:30:26.2423759Z",
+ "endTime": "2022-07-27T22:31:40.5161661Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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/westus/operationResults/53b39d32-c001-4076-a472-4298afb9901e?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/56722126-8713-49e9-8202-a7bb8b370f3a?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -11775,7 +14138,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 08:57:07 GMT",
+ "Date": "Wed, 27 Jul 2022 22:31:57 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -11783,27 +14146,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "71557f2a-0d7c-443d-bafb-baf4a3c4d650",
- "x-ms-ratelimit-remaining-subscription-reads": "11969",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T085707Z:71557f2a-0d7c-443d-bafb-baf4a3c4d650",
+ "x-ms-correlation-request-id": "7e7c980d-dde1-4e92-992f-4a6b535eed05",
+ "x-ms-ratelimit-remaining-subscription-reads": "11985",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223157Z:7e7c980d-dde1-4e92-992f-4a6b535eed05",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-06-09T08%3A56%3A06.9406775Z\u0027\u0022",
- "location": "westus",
+ "etag": "W/\u0022datetime\u00272022-07-27T22%3A30%3A26.2170032Z\u0027\u0022",
+ "location": "eastus2",
"tags": {
- "CreatedOnDate": "2022-06-09T08:46:31.3951756Z"
+ "CreatedOnDate": "2022-07-27T22:18:06.5493701Z"
},
"properties": {
"volumeType": "",
"dataProtection": {},
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-2",
- "ownerId": "ff7711ad-cdb3-11ea-9944-ba3bf91f31b5",
+ "creationToken": "sdk-py-tests-vol-4-b2-86eb264b",
+ "ownerId": "1a1854d0-5b82-11e9-9e4a-3a8c013b5748",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -11831,26 +14194,26 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_ff7711adcdb311ea9944ba3bf91f31b5_da14d0b7",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3caa7397",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2",
- "poolId": "83a8e743-45f2-80c6-14d9-132fff6e1fb5",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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": "baf5f62f-d27a-ee2f-b673-bf029c38ead3",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
- "fileSystemId": "25b4a165-c86c-b497-d78c-c3c3aecf3286",
+ "mountTargetId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
+ "fileSystemId": "fa82a9c9-895a-92cf-05be-36cd17e0ca31",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
- "throughputMibps": 6.4,
+ "throughputMibps": 6.25,
"kerberosEnabled": false,
"securityStyle": "Unix",
"smbEncryption": false,
@@ -11864,74 +14227,74 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "307",
+ "Content-Length": "328",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 09:00:29 GMT",
+ "Date": "Wed, 27 Jul 2022 22:35:20 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e1158341-d0aa-4e0c-a0cd-06264672333f",
+ "x-ms-correlation-request-id": "c824cb05-fff0-48f0-b923-9eedd39173f0",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090029Z:e1158341-d0aa-4e0c-a0cd-06264672333f"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223520Z:c824cb05-fff0-48f0-b923-9eedd39173f0"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2\u0027 under resource group \u0027sdk-python-tests-rg-R\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b\u0027 under resource group \u0027sdk-python-tests-rg-R\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-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/westus/operationResults/0ae9bcde-eaea-4426-b49f-10fdce7ab5c5?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/a6d60489-a066-4e7e-a2c5-d56fde846b7b?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Thu, 09 Jun 2022 09:00:42 GMT",
+ "Date": "Wed, 27 Jul 2022 22:35:32 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/0ae9bcde-eaea-4426-b49f-10fdce7ab5c5?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/a6d60489-a066-4e7e-a2c5-d56fde846b7b?api-version=2022-03-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": "f5c3706a-66e5-4939-a6d6-4bd99754f088",
- "x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090043Z:f5c3706a-66e5-4939-a6d6-4bd99754f088",
+ "x-ms-correlation-request-id": "5fc4de54-d683-4fa0-8fd6-72aca2e24045",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14999",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223533Z:5fc4de54-d683-4fa0-8fd6-72aca2e24045",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/0ae9bcde-eaea-4426-b49f-10fdce7ab5c5?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/a6d60489-a066-4e7e-a2c5-d56fde846b7b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -11939,7 +14302,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 09:01:12 GMT",
+ "Date": "Wed, 27 Jul 2022 22:36:02 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -11947,31 +14310,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0817f49c-9881-443e-af9f-1e417ce51c22",
- "x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090113Z:0817f49c-9881-443e-af9f-1e417ce51c22",
+ "x-ms-correlation-request-id": "7c04e222-61d1-4f8b-9718-6d18b824c0e2",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223603Z:7c04e222-61d1-4f8b-9718-6d18b824c0e2",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/0ae9bcde-eaea-4426-b49f-10fdce7ab5c5",
- "name": "0ae9bcde-eaea-4426-b49f-10fdce7ab5c5",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/a6d60489-a066-4e7e-a2c5-d56fde846b7b",
+ "name": "a6d60489-a066-4e7e-a2c5-d56fde846b7b",
"status": "Succeeded",
- "startTime": "2022-06-09T09:00:43.2053573Z",
- "endTime": "2022-06-09T09:00:43.4866829Z",
+ "startTime": "2022-07-27T22:35:33.0418538Z",
+ "endTime": "2022-07-27T22:35:33.3388429Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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/westus/operationResults/0ae9bcde-eaea-4426-b49f-10fdce7ab5c5?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/a6d60489-a066-4e7e-a2c5-d56fde846b7b?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -11979,7 +14342,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 09:01:13 GMT",
+ "Date": "Wed, 27 Jul 2022 22:36:03 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -11987,27 +14350,28 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "61204cb1-d3f1-45e9-b3a9-bbdc57879e8e",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090114Z:61204cb1-d3f1-45e9-b3a9-bbdc57879e8e",
+ "x-ms-correlation-request-id": "5694587a-7799-4ab2-8ab2-748a14a42314",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223603Z:5694587a-7799-4ab2-8ab2-748a14a42314",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2",
- "name": "sdk-py-tests-acc-2/sdk-py-tests-pool-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-06-09T09%3A00%3A43.199678Z\u0027\u0022",
- "location": "westus",
+ "etag": "W/\u0022datetime\u00272022-07-27T22%3A35%3A33.0400748Z\u0027\u0022",
+ "location": "eastus2",
"tags": {
- "CreatedOnDate": "2022-06-09T08:45:46.4570107Z"
+ "CreatedOnDate": "2022-07-27T22:17:23.0934336Z"
},
"properties": {
- "poolId": "83a8e743-45f2-80c6-14d9-132fff6e1fb5",
+ "poolId": "baf5f62f-d27a-ee2f-b673-bf029c38ead3",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2",
"qosType": "Auto",
- "totalThroughputMibps": 262.144,
+ "totalThroughputMibps": 256.0,
+ "utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
@@ -12015,174 +14379,174 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Thu, 09 Jun 2022 09:01:24 GMT",
+ "Date": "Wed, 27 Jul 2022 22:36:13 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e9431c4e-9306-461e-9f8e-8c21f41c85e0",
- "x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090124Z:e9431c4e-9306-461e-9f8e-8c21f41c85e0"
+ "x-ms-correlation-request-id": "79bf476a-662b-4a5d-8689-3a5e2bfdf242",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14998",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223613Z:79bf476a-662b-4a5d-8689-3a5e2bfdf242"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Thu, 09 Jun 2022 09:01:34 GMT",
+ "Date": "Wed, 27 Jul 2022 22:36:23 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a82d9b52-e008-43bd-9aa9-ca5df0130ff3",
- "x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090134Z:a82d9b52-e008-43bd-9aa9-ca5df0130ff3"
+ "x-ms-correlation-request-id": "69eda99f-48e7-4237-bb29-e8bb94edf477",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14997",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223624Z:69eda99f-48e7-4237-bb29-e8bb94edf477"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Thu, 09 Jun 2022 09:01:44 GMT",
+ "Date": "Wed, 27 Jul 2022 22:36:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e439ac42-bfd3-4a57-91d0-471b8d9a5894",
- "x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090145Z:e439ac42-bfd3-4a57-91d0-471b8d9a5894"
+ "x-ms-correlation-request-id": "a9fc2c65-2211-40e2-b815-1bec13fa001a",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14996",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223634Z:a9fc2c65-2211-40e2-b815-1bec13fa001a"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Thu, 09 Jun 2022 09:01:55 GMT",
+ "Date": "Wed, 27 Jul 2022 22:36:43 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "f960e7e8-9b2b-46d1-b108-6fba9479efd2",
- "x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090155Z:f960e7e8-9b2b-46d1-b108-6fba9479efd2"
+ "x-ms-correlation-request-id": "360f78d5-dc9a-421a-8489-79a48f2b5bb4",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223644Z:360f78d5-dc9a-421a-8489-79a48f2b5bb4"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "279",
+ "Content-Length": "289",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 09:02:05 GMT",
+ "Date": "Wed, 27 Jul 2022 22:36:55 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "bb67d475-8153-4cdf-b4e2-9173f30cc368",
+ "x-ms-correlation-request-id": "5322fd7d-de8f-4c5d-b528-02b8aba5134f",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090205Z:bb67d475-8153-4cdf-b4e2-9173f30cc368"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223655Z:5322fd7d-de8f-4c5d-b528-02b8aba5134f"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2\u0027 under resource group \u0027sdk-python-tests-rg-R\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2\u0027 under resource group \u0027sdk-python-tests-rg-R\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-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/westus/operationResults/12b331c8-53c5-4d99-b62e-b6dee5c9314f?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/5e2ac0d7-0717-4457-98c8-2bb96d77f9fa?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Thu, 09 Jun 2022 09:02:07 GMT",
+ "Date": "Wed, 27 Jul 2022 22:36:56 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/12b331c8-53c5-4d99-b62e-b6dee5c9314f?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/5e2ac0d7-0717-4457-98c8-2bb96d77f9fa?api-version=2022-03-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": "7e500fcf-e095-4b64-987b-e1a317029949",
- "x-ms-ratelimit-remaining-subscription-deletes": "14993",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090207Z:7e500fcf-e095-4b64-987b-e1a317029949",
+ "x-ms-correlation-request-id": "8824823c-c563-4daa-9c04-373995bfe4e5",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223656Z:8824823c-c563-4daa-9c04-373995bfe4e5",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/12b331c8-53c5-4d99-b62e-b6dee5c9314f?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/5e2ac0d7-0717-4457-98c8-2bb96d77f9fa?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -12190,7 +14554,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 09:02:37 GMT",
+ "Date": "Wed, 27 Jul 2022 22:37:26 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -12198,31 +14562,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "fbaaa8b5-5f4f-4877-9f5f-e91ba9391e09",
- "x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090238Z:fbaaa8b5-5f4f-4877-9f5f-e91ba9391e09",
+ "x-ms-correlation-request-id": "4167c41a-dfd7-44c4-ad60-76bf9fedb548",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223726Z:4167c41a-dfd7-44c4-ad60-76bf9fedb548",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/12b331c8-53c5-4d99-b62e-b6dee5c9314f",
- "name": "12b331c8-53c5-4d99-b62e-b6dee5c9314f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/5e2ac0d7-0717-4457-98c8-2bb96d77f9fa",
+ "name": "5e2ac0d7-0717-4457-98c8-2bb96d77f9fa",
"status": "Succeeded",
- "startTime": "2022-06-09T09:02:07.5790198Z",
- "endTime": "2022-06-09T09:02:07.6258694Z",
+ "startTime": "2022-07-27T22:36:56.3186917Z",
+ "endTime": "2022-07-27T22:36:56.3655628Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/12b331c8-53c5-4d99-b62e-b6dee5c9314f?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/5e2ac0d7-0717-4457-98c8-2bb96d77f9fa?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -12230,7 +14594,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 09:02:37 GMT",
+ "Date": "Wed, 27 Jul 2022 22:37:26 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -12238,19 +14602,19 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "37c8219e-f9cd-4725-8502-0d7482833b37",
- "x-ms-ratelimit-remaining-subscription-reads": "11993",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090238Z:37c8219e-f9cd-4725-8502-0d7482833b37",
+ "x-ms-correlation-request-id": "9231f256-4587-4f5a-8f33-f4fffd5de53a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223726Z:9231f256-4587-4f5a-8f33-f4fffd5de53a",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2",
- "name": "sdk-py-tests-acc-2",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/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-06-09T09%3A02%3A07.5807192Z\u0027\u0022",
- "location": "westus",
+ "etag": "W/\u0022datetime\u00272022-07-27T22%3A36%3A56.3183561Z\u0027\u0022",
+ "location": "eastus2",
"tags": {
- "CreatedOnDate": "2022-06-09T08:45:08.6784363Z"
+ "CreatedOnDate": "2022-07-27T22:16:48.1679951Z"
},
"properties": {
"encryption": {
@@ -12260,83 +14624,83 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-06-09T08:45:13.3380366Z",
"createdByType": "Application",
+ "createdAt": "2022-07-27T22:16:50.2303411Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-06-09T08:45:13.3380366Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T22:16:50.2303411Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "244",
+ "Content-Length": "255",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 09:02:40 GMT",
+ "Date": "Wed, 27 Jul 2022 22:37:26 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "2b27d36e-c3e3-4362-a850-f7cbe387eea2",
+ "x-ms-correlation-request-id": "61bf9cfd-2fe3-4289-b8fd-69557963d4ea",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090240Z:2b27d36e-c3e3-4362-a850-f7cbe387eea2"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223727Z:61bf9cfd-2fe3-4289-b8fd-69557963d4ea"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2\u0027 under resource group \u0027sdk-python-tests-rg-R\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b\u0027 under resource group \u0027sdk-python-tests-rg-R\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/eastus/operationResults/ba0020bb-1dbe-47d6-ba15-cd8a15ee315f?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bdb7f0c0-d538-49af-ad4d-c7b5058bca0b?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Thu, 09 Jun 2022 09:02:41 GMT",
+ "Date": "Wed, 27 Jul 2022 22:37:28 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ba0020bb-1dbe-47d6-ba15-cd8a15ee315f?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bdb7f0c0-d538-49af-ad4d-c7b5058bca0b?api-version=2022-03-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": "36a15088-67a2-4d9c-ad7e-a3bcfda98c9a",
- "x-ms-ratelimit-remaining-subscription-deletes": "14992",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090242Z:36a15088-67a2-4d9c-ad7e-a3bcfda98c9a",
+ "x-ms-correlation-request-id": "65ffb99d-f03e-4364-9d12-541d52b5d569",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223728Z:65ffb99d-f03e-4364-9d12-541d52b5d569",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ba0020bb-1dbe-47d6-ba15-cd8a15ee315f?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bdb7f0c0-d538-49af-ad4d-c7b5058bca0b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -12344,7 +14708,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 09:03:11 GMT",
+ "Date": "Wed, 27 Jul 2022 22:37:58 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -12352,31 +14716,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "59eb89ff-fcc4-4004-b949-3eb63c1e0f57",
- "x-ms-ratelimit-remaining-subscription-reads": "11991",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090312Z:59eb89ff-fcc4-4004-b949-3eb63c1e0f57",
+ "x-ms-correlation-request-id": "ed90c696-5458-4bb4-8ee2-0c37ac73b3f0",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223759Z:ed90c696-5458-4bb4-8ee2-0c37ac73b3f0",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ba0020bb-1dbe-47d6-ba15-cd8a15ee315f",
- "name": "ba0020bb-1dbe-47d6-ba15-cd8a15ee315f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bdb7f0c0-d538-49af-ad4d-c7b5058bca0b",
+ "name": "bdb7f0c0-d538-49af-ad4d-c7b5058bca0b",
"status": "Deleting",
- "startTime": "2022-06-09T09:02:41.9998729Z",
+ "startTime": "2022-07-27T22:37:28.5462556Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/ba0020bb-1dbe-47d6-ba15-cd8a15ee315f?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bdb7f0c0-d538-49af-ad4d-c7b5058bca0b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -12384,7 +14748,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 09:03:41 GMT",
+ "Date": "Wed, 27 Jul 2022 22:38:28 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -12392,31 +14756,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "34d959eb-903e-4b54-b856-9c5ca117b591",
- "x-ms-ratelimit-remaining-subscription-reads": "11990",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090342Z:34d959eb-903e-4b54-b856-9c5ca117b591",
+ "x-ms-correlation-request-id": "fa2338ec-3b5c-489e-b85e-c8004e5369dd",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223829Z:fa2338ec-3b5c-489e-b85e-c8004e5369dd",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ba0020bb-1dbe-47d6-ba15-cd8a15ee315f",
- "name": "ba0020bb-1dbe-47d6-ba15-cd8a15ee315f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bdb7f0c0-d538-49af-ad4d-c7b5058bca0b",
+ "name": "bdb7f0c0-d538-49af-ad4d-c7b5058bca0b",
"status": "Deleting",
- "startTime": "2022-06-09T09:02:41.9998729Z",
+ "startTime": "2022-07-27T22:37:28.5462556Z",
"endTime": "0001-01-01T00:00:00Z",
"percentComplete": 0.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/ba0020bb-1dbe-47d6-ba15-cd8a15ee315f?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bdb7f0c0-d538-49af-ad4d-c7b5058bca0b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -12424,7 +14788,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 09:04:12 GMT",
+ "Date": "Wed, 27 Jul 2022 22:38:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -12432,31 +14796,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "4e20741b-3bd4-4633-bd2e-b18f67b7e683",
- "x-ms-ratelimit-remaining-subscription-reads": "11989",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090412Z:4e20741b-3bd4-4633-bd2e-b18f67b7e683",
+ "x-ms-correlation-request-id": "2e0bbfa9-d4ff-45bb-8f93-28295b99a140",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223859Z:2e0bbfa9-d4ff-45bb-8f93-28295b99a140",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ba0020bb-1dbe-47d6-ba15-cd8a15ee315f",
- "name": "ba0020bb-1dbe-47d6-ba15-cd8a15ee315f",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bdb7f0c0-d538-49af-ad4d-c7b5058bca0b",
+ "name": "bdb7f0c0-d538-49af-ad4d-c7b5058bca0b",
"status": "Succeeded",
- "startTime": "2022-06-09T09:02:41.9998729Z",
- "endTime": "2022-06-09T09:03:49.1567776Z",
+ "startTime": "2022-07-27T22:37:28.5462556Z",
+ "endTime": "2022-07-27T22:38:44.9060658Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/ba0020bb-1dbe-47d6-ba15-cd8a15ee315f?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bdb7f0c0-d538-49af-ad4d-c7b5058bca0b?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -12464,7 +14828,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 09:04:12 GMT",
+ "Date": "Wed, 27 Jul 2022 22:38:59 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -12472,27 +14836,27 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "aae4af8f-16f5-4f59-bc77-9e932b48b255",
- "x-ms-ratelimit-remaining-subscription-reads": "11988",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090412Z:aae4af8f-16f5-4f59-bc77-9e932b48b255",
+ "x-ms-correlation-request-id": "135f3067-bdb5-43b3-acef-3054b2fbbf9e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T223900Z:135f3067-bdb5-43b3-acef-3054b2fbbf9e",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-06-09T09%3A02%3A41.9888715Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T22%3A37%3A28.5242029Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-06-09T08:41:03.4480040Z"
+ "CreatedOnDate": "2022-07-27T22:12:41.7418774Z"
},
"properties": {
"volumeType": "",
"dataProtection": {},
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
"serviceLevel": "Premium",
- "creationToken": "sdk-py-tests-vol-1",
- "ownerId": "e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5",
+ "creationToken": "sdk-py-tests-vol-3-b2-86eb264b",
+ "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4",
"usageThreshold": 107374182400,
"usedBytes": 0,
"exportPolicy": {
@@ -12520,28 +14884,28 @@
"protocolTypes": [
"NFSv3"
],
- "baremetalTenantId": "baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_aa22bfa9",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet/subnets/default",
+ "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d673703a",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default",
"networkFeatures": "Basic",
- "networkSiblingSetId": "bccf78af-ad69-4bc2-5aeb-b4a6a9f70250",
+ "networkSiblingSetId": "2de55d56-d634-821e-bf40-6e2fef02f435",
"storageToNetworkProximity": "Default",
"snapshotDirectoryVisible": true,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1",
- "poolId": "34b26013-f1c9-a827-2cf1-f37459591c16",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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": "8feaea52-0b7c-d598-c547-8a80256cefae",
"mountTargets": [
{
"provisioningState": "",
- "mountTargetId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
- "fileSystemId": "3d2652de-8eab-49e3-bd97-c1205bdab870",
+ "mountTargetId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
+ "fileSystemId": "c90b26fc-02a0-ceb1-255a-014ec1cf6909",
"startIp": "",
"endIp": "",
"gateway": "",
"netmask": "",
"subnet": "",
- "ipAddress": "10.7.0.4"
+ "ipAddress": "10.0.0.4"
}
],
- "throughputMibps": 6.4,
+ "throughputMibps": 6.25,
"kerberosEnabled": false,
"securityStyle": "Unix",
"smbEncryption": false,
@@ -12556,79 +14920,80 @@
"defaultUserQuotaInKiBs": 0,
"defaultGroupQuotaInKiBs": 0,
"enableSubvolumes": "Disabled",
+ "encrypted": true,
"provisioningState": "Deleting"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "306",
+ "Content-Length": "326",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 09:07:34 GMT",
+ "Date": "Wed, 27 Jul 2022 22:42:21 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "76e2dbc0-fec7-4166-ab74-07cf70db6d95",
+ "x-ms-correlation-request-id": "0e8b77ae-59f2-41e2-9b51-9962f915e24f",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090735Z:76e2dbc0-fec7-4166-ab74-07cf70db6d95"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T224222Z:0e8b77ae-59f2-41e2-9b51-9962f915e24f"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/eastus/operationResults/d423e9ff-602a-4e63-9ac8-5c60cabbfee4?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c593dd55-9e64-4409-866c-b4381e2ca3e9?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Thu, 09 Jun 2022 09:07:46 GMT",
+ "Date": "Wed, 27 Jul 2022 22:42:34 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d423e9ff-602a-4e63-9ac8-5c60cabbfee4?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c593dd55-9e64-4409-866c-b4381e2ca3e9?api-version=2022-03-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": "6da0fe99-cc28-4759-9e91-3b085edbdc4c",
+ "x-ms-correlation-request-id": "d0708d3d-5733-4733-98ca-20b76cffd7d4",
"x-ms-ratelimit-remaining-subscription-deletes": "14999",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090747Z:6da0fe99-cc28-4759-9e91-3b085edbdc4c",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T224235Z:d0708d3d-5733-4733-98ca-20b76cffd7d4",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d423e9ff-602a-4e63-9ac8-5c60cabbfee4?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c593dd55-9e64-4409-866c-b4381e2ca3e9?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -12636,7 +15001,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 09:08:21 GMT",
+ "Date": "Wed, 27 Jul 2022 22:43:05 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -12644,31 +15009,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "88a20b18-fa40-4639-a8f6-8cb59674b144",
+ "x-ms-correlation-request-id": "4c170a84-37ee-4eeb-9033-af7940bec9ce",
"x-ms-ratelimit-remaining-subscription-reads": "11998",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090821Z:88a20b18-fa40-4639-a8f6-8cb59674b144",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T224305Z:4c170a84-37ee-4eeb-9033-af7940bec9ce",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d423e9ff-602a-4e63-9ac8-5c60cabbfee4",
- "name": "d423e9ff-602a-4e63-9ac8-5c60cabbfee4",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c593dd55-9e64-4409-866c-b4381e2ca3e9",
+ "name": "c593dd55-9e64-4409-866c-b4381e2ca3e9",
"status": "Succeeded",
- "startTime": "2022-06-09T09:07:47.3692921Z",
- "endTime": "2022-06-09T09:07:47.8068083Z",
+ "startTime": "2022-07-27T22:42:34.9283265Z",
+ "endTime": "2022-07-27T22:42:35.3033342Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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/eastus/operationResults/d423e9ff-602a-4e63-9ac8-5c60cabbfee4?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c593dd55-9e64-4409-866c-b4381e2ca3e9?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -12676,7 +15041,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 09:08:21 GMT",
+ "Date": "Wed, 27 Jul 2022 22:43:05 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -12684,27 +15049,28 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8d9abc79-7f4a-45e4-b51b-a1974d9a6391",
+ "x-ms-correlation-request-id": "d84e0301-6ff1-41ca-8110-9b7c79d6e940",
"x-ms-ratelimit-remaining-subscription-reads": "11997",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090821Z:8d9abc79-7f4a-45e4-b51b-a1974d9a6391",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T224305Z:d84e0301-6ff1-41ca-8110-9b7c79d6e940",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
- "name": "sdk-py-tests-acc-1/sdk-py-tests-pool-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-06-09T09%3A07%3A47.3628364Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T22%3A42%3A34.9202295Z\u0027\u0022",
+ "location": "westus2",
"tags": {
- "CreatedOnDate": "2022-06-09T08:40:20.7622365Z"
+ "CreatedOnDate": "2022-07-27T22:11:58.1116055Z"
},
"properties": {
- "poolId": "34b26013-f1c9-a827-2cf1-f37459591c16",
+ "poolId": "8feaea52-0b7c-d598-c547-8a80256cefae",
"serviceLevel": "Premium",
"size": 4398046511104,
- "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1",
+ "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1",
"qosType": "Auto",
- "totalThroughputMibps": 262.144,
+ "totalThroughputMibps": 256.0,
+ "utilizedThroughputMibps": 0.0,
"encryptionType": "Single",
"coolAccess": false,
"provisioningState": "Deleting"
@@ -12712,174 +15078,174 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Thu, 09 Jun 2022 09:08:31 GMT",
+ "Date": "Wed, 27 Jul 2022 22:43:15 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "c8f5dc0a-6d14-4a5b-a0af-8ddd5936235c",
+ "x-ms-correlation-request-id": "a943322c-7679-40cf-b6c6-6eba7358c549",
"x-ms-ratelimit-remaining-subscription-deletes": "14998",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090832Z:c8f5dc0a-6d14-4a5b-a0af-8ddd5936235c"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T224315Z:a943322c-7679-40cf-b6c6-6eba7358c549"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Thu, 09 Jun 2022 09:08:41 GMT",
+ "Date": "Wed, 27 Jul 2022 22:43:25 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "8bbcd5ec-fb10-4432-ba63-6be169b1aa0a",
+ "x-ms-correlation-request-id": "db804938-50b2-48b0-8986-1bc877f62976",
"x-ms-ratelimit-remaining-subscription-deletes": "14997",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090842Z:8bbcd5ec-fb10-4432-ba63-6be169b1aa0a"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T224326Z:db804938-50b2-48b0-8986-1bc877f62976"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Thu, 09 Jun 2022 09:08:51 GMT",
+ "Date": "Wed, 27 Jul 2022 22:43:35 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "769d4006-70ef-41b8-b36c-f613d40ed50e",
+ "x-ms-correlation-request-id": "fbaa1931-a7ff-433f-a088-6eca88ae1ba5",
"x-ms-ratelimit-remaining-subscription-deletes": "14996",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090852Z:769d4006-70ef-41b8-b36c-f613d40ed50e"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T224336Z:fbaa1931-a7ff-433f-a088-6eca88ae1ba5"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Date": "Thu, 09 Jun 2022 09:09:02 GMT",
+ "Date": "Wed, 27 Jul 2022 22:43:47 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6c1539ea-5c65-4852-8ed9-29ffe2e36bb5",
+ "x-ms-correlation-request-id": "19c56b2a-b279-43aa-a2eb-07b5cfff2901",
"x-ms-ratelimit-remaining-subscription-deletes": "14995",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090903Z:6c1539ea-5c65-4852-8ed9-29ffe2e36bb5"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T224347Z:19c56b2a-b279-43aa-a2eb-07b5cfff2901"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "278",
+ "Content-Length": "287",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 09:09:12 GMT",
+ "Date": "Wed, 27 Jul 2022 22:43:57 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "a82c91cf-8c2c-419f-92fc-a47efa18a20b",
+ "x-ms-correlation-request-id": "97be16dc-1907-4d05-9ba9-bf2fbe80b4e4",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090913Z:a82c91cf-8c2c-419f-92fc-a47efa18a20b"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T224357Z:97be16dc-1907-4d05-9ba9-bf2fbe80b4e4"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b?api-version=2022-03-01",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
"Content-Length": "0",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 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/eastus/operationResults/9c44e7a0-42b8-4290-92eb-c2a61702510a?api-version=2022-01-01",
+ "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/541d5641-0a36-456c-98e0-e4d4cabbebc4?api-version=2022-03-01",
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Thu, 09 Jun 2022 09:09:13 GMT",
+ "Date": "Wed, 27 Jul 2022 22:43:58 GMT",
"Expires": "-1",
- "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9c44e7a0-42b8-4290-92eb-c2a61702510a?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/541d5641-0a36-456c-98e0-e4d4cabbebc4?api-version=2022-03-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": "5be6b919-bd68-4b12-81bb-2757f9bddba0",
+ "x-ms-correlation-request-id": "ff8cd987-44a6-48e9-ab51-2feb83e270ac",
"x-ms-ratelimit-remaining-subscription-deletes": "14994",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090914Z:5be6b919-bd68-4b12-81bb-2757f9bddba0",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T224358Z:ff8cd987-44a6-48e9-ab51-2feb83e270ac",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": null
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9c44e7a0-42b8-4290-92eb-c2a61702510a?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/541d5641-0a36-456c-98e0-e4d4cabbebc4?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -12887,7 +15253,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 09:09:44 GMT",
+ "Date": "Wed, 27 Jul 2022 22:44:28 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -12895,31 +15261,31 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "bdb31181-7ad1-4537-a0c6-075830cc4b25",
+ "x-ms-correlation-request-id": "7de1636f-de39-4369-918d-e70a5c94dc1c",
"x-ms-ratelimit-remaining-subscription-reads": "11995",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090944Z:bdb31181-7ad1-4537-a0c6-075830cc4b25",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T224429Z:7de1636f-de39-4369-918d-e70a5c94dc1c",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9c44e7a0-42b8-4290-92eb-c2a61702510a",
- "name": "9c44e7a0-42b8-4290-92eb-c2a61702510a",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/541d5641-0a36-456c-98e0-e4d4cabbebc4",
+ "name": "541d5641-0a36-456c-98e0-e4d4cabbebc4",
"status": "Succeeded",
- "startTime": "2022-06-09T09:09:14.2216588Z",
- "endTime": "2022-06-09T09:09:14.2841602Z",
+ "startTime": "2022-07-27T22:43:58.6946472Z",
+ "endTime": "2022-07-27T22:43:58.7259249Z",
"percentComplete": 100.0,
"properties": {
- "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"
+ "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9c44e7a0-42b8-4290-92eb-c2a61702510a?api-version=2022-01-01\u0026operationResultResponseType=Location",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/541d5641-0a36-456c-98e0-e4d4cabbebc4?api-version=2022-03-01\u0026operationResultResponseType=Location",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 200,
@@ -12927,7 +15293,7 @@
"Cache-Control": "no-cache",
"Content-Encoding": "gzip",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 09:09:44 GMT",
+ "Date": "Wed, 27 Jul 2022 22:44:29 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Server": "Microsoft-IIS/10.0",
@@ -12935,17 +15301,20 @@
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6ab6979d-c7bd-4f1a-af8e-be614cae4dc8",
+ "x-ms-correlation-request-id": "a9ec3045-2984-4933-a572-395c81bc16ab",
"x-ms-ratelimit-remaining-subscription-reads": "11994",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090944Z:6ab6979d-c7bd-4f1a-af8e-be614cae4dc8",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T224429Z:a9ec3045-2984-4933-a572-395c81bc16ab",
"X-Powered-By": "ASP.NET"
},
"ResponseBody": {
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1",
- "name": "sdk-py-tests-acc-1",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/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-06-09T09%3A09%3A14.2103146Z\u0027\u0022",
- "location": "eastus",
+ "etag": "W/\u0022datetime\u00272022-07-27T22%3A43%3A58.6867174Z\u0027\u0022",
+ "location": "westus2",
+ "tags": {
+ "CreatedOnDate": "2022-07-27T22:11:24.1280050Z"
+ },
"properties": {
"encryption": {
"keySource": "Microsoft.NetApp"
@@ -12954,44 +15323,114 @@
},
"systemData": {
"createdBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "createdAt": "2022-06-08T13:30:57.4753284Z",
"createdByType": "Application",
+ "createdAt": "2022-07-27T22:11:25.209172Z",
"lastModifiedBy": "c6c4faba-2b22-44d9-80a4-71ff5b71f811",
- "lastModifiedAt": "2022-06-09T08:39:47.4919499Z",
- "lastModifiedByType": "Application"
+ "lastModifiedByType": "Application",
+ "lastModifiedAt": "2022-07-27T22:11:25.209172Z"
}
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2022-01-01",
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b?api-version=2022-03-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Accept-Encoding": "gzip, deflate",
"Connection": "keep-alive",
- "User-Agent": "azsdk-python-mgmt-netapp/8.0.0 Python/3.8.10 (macOS-12.4-x86_64-i386-64bit)"
+ "User-Agent": "azsdk-python-mgmt-netapp/5.1.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)"
},
"RequestBody": null,
"StatusCode": 404,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "243",
+ "Content-Length": "253",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 09 Jun 2022 09:09:46 GMT",
+ "Date": "Wed, 27 Jul 2022 22:44:29 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "ce6d428e-32d3-44f8-ba20-8e6e56be4daf",
+ "x-ms-correlation-request-id": "eb9a9b4f-c5d0-44dd-8163-8e5ff53657cf",
"x-ms-failure-cause": "gateway",
- "x-ms-routing-request-id": "WESTEUROPE:20220609T090946Z:ce6d428e-32d3-44f8-ba20-8e6e56be4daf"
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T224429Z:eb9a9b4f-c5d0-44dd-8163-8e5ff53657cf"
},
"ResponseBody": {
"error": {
"code": "ResourceNotFound",
- "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1\u0027 under resource group \u0027sdk-python-tests-rg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"
+ "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b\u0027 under resource group \u0027sdk-python-tests-rg\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/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b?api-version=2021-08-01",
+ "RequestMethod": "DELETE",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "0",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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/358f014e-d376-4fd3-bca6-eb645273eadc?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "0",
+ "Date": "Wed, 27 Jul 2022 22:44:30 GMT",
+ "Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/358f014e-d376-4fd3-bca6-eb645273eadc?api-version=2021-08-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": "9dd46438-368b-4e22-b011-0b8245c4cc65",
+ "x-ms-correlation-request-id": "5b512cc4-8b0f-46de-9c64-1d27cb5406cc",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14993",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T224430Z:5b512cc4-8b0f-46de-9c64-1d27cb5406cc"
+ },
+ "ResponseBody": null
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b?api-version=2021-08-01",
+ "RequestMethod": "DELETE",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Accept-Encoding": "gzip, deflate",
+ "Connection": "keep-alive",
+ "Content-Length": "0",
+ "User-Agent": "azsdk-python-azure-mgmt-network/20.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/2b4e7ac5-37af-4c55-ad10-16b249770758?api-version=2021-08-01",
+ "Cache-Control": "no-cache",
+ "Content-Length": "0",
+ "Date": "Wed, 27 Jul 2022 22:44:31 GMT",
+ "Expires": "-1",
+ "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operationResults/2b4e7ac5-37af-4c55-ad10-16b249770758?api-version=2021-08-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": "83e9eec4-5e85-4d1f-a08e-c0b6524ea33d",
+ "x-ms-correlation-request-id": "a2d6500f-d96f-4c8c-a7e9-9b11dada7167",
+ "x-ms-ratelimit-remaining-subscription-deletes": "14992",
+ "x-ms-routing-request-id": "FRANCESOUTH:20220727T224431Z:a2d6500f-d96f-4c8c-a7e9-9b11dada7167"
+ },
+ "ResponseBody": null
}
],
"Variables": {}
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/setup.py b/sdk/netapp/azure-mgmt-netapp/tests/setup.py
index 5e9283e4289d..df4e1c7077c3 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/setup.py
+++ b/sdk/netapp/azure-mgmt-netapp/tests/setup.py
@@ -4,20 +4,20 @@
# - rg must exist
# - vnet must exist
-LOCATION = 'southcentralusstage'
-REMOTE_LOCATION = 'eastus2euap'
+LOCATION = 'westus2'
+REMOTE_LOCATION = 'eastus2'
TEST_RG = 'sdk-python-tests-rg'
TEST_REPL_REMOTE_RG = 'sdk-python-tests-rg-R'
TEST_ACC_1 = 'sdk-py-tests-acc-1'
TEST_ACC_2 = 'sdk-py-tests-acc-2'
TEST_POOL_1 = 'sdk-py-tests-pool-1'
TEST_POOL_2 = 'sdk-py-tests-pool-2'
-TEST_VOL_1 = 'sdk-py-tests-vol-1'
-TEST_VOL_2 = 'sdk-py-tests-vol-2'
+TEST_VOL_1 = 'sdk-py-tests-vol-3'
+TEST_VOL_2 = 'sdk-py-tests-vol-4'
TEST_BACKUP_1 = 'sdk-py-tests-backup-1'
TEST_BACKUP_2 = 'sdk-py-tests-backup-2'
TEST_SUBVOLUME_1 = 'sdk-py-tests-subvolume-1'
TEST_SUBVOLUME_2 = 'sdk-py-tests-subvolume-2'
SERVICE_LEVEL = 'Premium'
-VNET = 'sdk-python-tests-vnet'
+VNET = 'sdk-python-tests-vnet-westus2'
REMOTE_VNET = 'sdk-python-tests-vnet-R'
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/test_account.py b/sdk/netapp/azure-mgmt-netapp/tests/test_account.py
index ea0c2c5ab6bb..682ac127fc93 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/test_account.py
+++ b/sdk/netapp/azure-mgmt-netapp/tests/test_account.py
@@ -8,13 +8,14 @@
def create_account(client, rg, acc_name, location=LOCATION, tags=None, active_directories=None):
account_body = NetAppAccount(location=location, tags=tags, active_directories=active_directories)
-
+
+ print("Creating NetApp Account '{0} '...".format(acc_name))
account = client.accounts.begin_create_or_update(
rg,
acc_name,
account_body
).result()
-
+ print("\tdone")
return account
@@ -24,7 +25,7 @@ def wait_for_no_account(client, rg, acc_name, live=False):
while co < 5:
co += 1
if live:
- time.sleep(2)
+ -(2)
try:
account = client.accounts.get(rg, acc_name)
except:
@@ -34,6 +35,7 @@ def wait_for_no_account(client, rg, acc_name, live=False):
def delete_account(client, rg, acc_name, live=False):
+ print("Deleting NetApp Account '{0} '...".format(acc_name))
client.accounts.begin_delete(rg, acc_name).wait()
wait_for_no_account(client, rg, acc_name, live)
@@ -47,49 +49,62 @@ def setup_method(self, method):
# Note that when tests are run in live mode it is best to run one test at a time.
@recorded_by_proxy
def test_create_delete_account(self):
- account = create_account(self.client, TEST_RG, TEST_ACC_1)
- assert account.name == TEST_ACC_1
+ print("Starting test_create_delete_account...")
+ account_name = self.get_resource_name(TEST_ACC_1+"-")
+ account_list = self.client.accounts.list(TEST_RG)
+ account_list_lenght = len(list(account_list))
+
+ print("create_delete_account {0}...".format(account_name))
+ account = create_account(self.client, TEST_RG, account_name)
+ assert account.name == account_name
account_list = self.client.accounts.list(TEST_RG)
- assert len(list(account_list)) == 1
+ assert len(list(account_list)) == account_list_lenght+1
- delete_account(self.client, TEST_RG, TEST_ACC_1)
+ delete_account(self.client, TEST_RG, account_name)
account_list = self.client.accounts.list(TEST_RG)
- assert len(list(account_list)) == 0
+ assert len(list(account_list)) == account_list_lenght
@recorded_by_proxy
def test_list_accounts(self):
- create_account(self.client, TEST_RG, TEST_ACC_1)
- create_account(self.client, TEST_RG, TEST_ACC_2)
- accounts = [TEST_ACC_1, TEST_ACC_2]
+ account_name1 = self.get_resource_name(TEST_ACC_1+"-")
+ account_name2 = self.get_resource_name(TEST_ACC_2+"-")
+ account_list = self.client.accounts.list(TEST_RG)
+ account_list_lenght = len(list(account_list))
+
+ create_account(self.client, TEST_RG, account_name1)
+ create_account(self.client, TEST_RG, account_name2)
+ accounts = [account_name1, account_name2]
account_list = self.client.accounts.list(TEST_RG)
- assert len(list(account_list)) == 2
+ assert len(list(account_list)) == account_list_lenght+2
idx = 0
for account in account_list:
assert account.name == accounts[idx]
idx += 1
- delete_account(self.client, TEST_RG, TEST_ACC_1)
- delete_account(self.client, TEST_RG, TEST_ACC_2)
+ delete_account(self.client, TEST_RG, account_name1)
+ delete_account(self.client, TEST_RG, account_name2)
@recorded_by_proxy
def test_get_account_by_name(self):
- create_account(self.client, TEST_RG, TEST_ACC_1)
+ account_name1 = self.get_resource_name(TEST_ACC_1+"-")
+ create_account(self.client, TEST_RG, account_name1)
- account = self.client.accounts.get(TEST_RG, TEST_ACC_1)
- assert account.name == TEST_ACC_1
+ account = self.client.accounts.get(TEST_RG, account_name1)
+ assert account.name == account_name1
- delete_account(self.client, TEST_RG, TEST_ACC_1)
+ delete_account(self.client, TEST_RG, account_name1)
@recorded_by_proxy
def test_patch_account(self):
- create_account(self.client, TEST_RG, TEST_ACC_1)
+ account_name1 = self.get_resource_name(TEST_ACC_1+"-")
+ create_account(self.client, TEST_RG, account_name1)
tag = {'Tag1': 'Value2'}
netapp_account_patch = NetAppAccountPatch(tags=tag)
- account = self.client.accounts.begin_update(TEST_RG, TEST_ACC_1, netapp_account_patch).result()
+ account = self.client.accounts.begin_update(TEST_RG, account_name1, netapp_account_patch).result()
assert account.tags['Tag1'] == 'Value2'
- delete_account(self.client, TEST_RG, TEST_ACC_1)
+ delete_account(self.client, TEST_RG, account_name1)
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/test_account_backup.py b/sdk/netapp/azure-mgmt-netapp/tests/test_account_backup.py
index 20321f7e9360..16524404d4b2 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/test_account_backup.py
+++ b/sdk/netapp/azure-mgmt-netapp/tests/test_account_backup.py
@@ -2,7 +2,7 @@
from devtools_testutils import AzureMgmtRecordedTestCase, recorded_by_proxy, set_bodiless_matcher
from azure.mgmt.netapp.models import Backup
from test_account import delete_account
-from test_volume import delete_volume, delete_pool
+from test_volume import delete_volume, delete_pool, create_virtual_network
from test_backup import create_backup, disable_backup
from setup import *
import azure.mgmt.netapp.models
@@ -12,65 +12,93 @@ class TestNetAppAccountBackup(AzureMgmtRecordedTestCase):
def setup_method(self, method):
self.client = self.create_mgmt_client(azure.mgmt.netapp.NetAppManagementClient)
+ if self.is_live:
+ from azure.mgmt.network import NetworkManagementClient
+ self.network_client = self.create_mgmt_client(NetworkManagementClient)
# Before tests are run live a resource group needs to be created along with vnet and subnet
# Note that when tests are run in live mode it is best to run one test at a time.
@recorded_by_proxy
def test_list_account_backups(self):
set_bodiless_matcher()
- create_backup(self.client, backup_name=TEST_BACKUP_1, live=self.is_live)
- create_backup(self.client, backup_name=TEST_BACKUP_2, backup_only=True, live=self.is_live)
-
- account_backup_list = self.client.account_backups.list(TEST_RG, TEST_ACC_1)
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ volumeName1 = self.get_resource_name(TEST_VOL_1+"-")
+ backup1 = self.get_resource_name(TEST_BACKUP_1+"-")
+ backup2 = self.get_resource_name(TEST_BACKUP_2+"-")
+ VNETNAME = self.get_resource_name(VNET+"-")
+ if self.is_live:
+ SUBNET = create_virtual_network(self.network_client, TEST_RG, LOCATION, VNETNAME, 'default')
+
+ create_backup(self.client, account_name=ACCOUNT1, volume_name=volumeName1, vnet=VNETNAME, backup_name=backup1, live=self.is_live)
+ create_backup(self.client, account_name=ACCOUNT1, volume_name=volumeName1, backup_name=backup2, backup_only=True, live=self.is_live)
+
+ account_backup_list = self.client.account_backups.list(TEST_RG, account_name=ACCOUNT1)
backup_count = 0
for backup in account_backup_list:
- if TEST_BACKUP_1 in backup.name or TEST_BACKUP_2 in backup.name:
+ if backup1 in backup.name or backup2 in backup.name:
backup_count += 1
assert backup_count == 2
- disable_backup(self.client, live=self.is_live)
- disable_backup(self.client, backup_name=TEST_BACKUP_2, live=self.is_live)
+ disable_backup(self.client,account_name=ACCOUNT1, volume_name=volumeName1, live=self.is_live)
+ disable_backup(self.client, account_name=ACCOUNT1, volume_name=volumeName1, backup_name=backup2, live=self.is_live)
- account_backup_list = self.client.account_backups.list(TEST_RG, TEST_ACC_1)
+ account_backup_list = self.client.account_backups.list(TEST_RG, ACCOUNT1)
backup_count = 0
for backup in account_backup_list:
- if TEST_BACKUP_1 in backup.name or TEST_BACKUP_2 in backup.name:
+ if backup1 in backup.name or backup2 in backup.name:
backup_count += 1
assert backup_count == 0
-
- delete_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, live=self.is_live)
- delete_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, live=self.is_live)
- delete_account(self.client, TEST_RG, TEST_ACC_1, live=self.is_live)
+ delete_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, live=self.is_live)
+ 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)
@recorded_by_proxy
def test_get_account_backups(self):
set_bodiless_matcher()
- create_backup(self.client, backup_name=TEST_BACKUP_1, live=self.is_live)
-
- account_backup = self.client.account_backups.get(TEST_RG, TEST_ACC_1, TEST_BACKUP_1)
- assert account_backup.name == TEST_ACC_1 + "/" + TEST_BACKUP_1
-
- disable_backup(self.client, TEST_BACKUP_1, live=self.is_live)
- delete_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, live=self.is_live)
- delete_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, live=self.is_live)
- delete_account(self.client, TEST_RG, TEST_ACC_1, live=self.is_live)
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ volumeName1 = self.get_resource_name(TEST_VOL_1+"-")
+ VNETNAME = self.get_resource_name(VNET+"-")
+ backup1 = self.get_resource_name(TEST_BACKUP_1+"-")
+ if self.is_live:
+ SUBNET = create_virtual_network(self.network_client, TEST_RG, LOCATION, VNETNAME, 'default')
+ create_backup(self.client, account_name=ACCOUNT1, volume_name=volumeName1, vnet=VNETNAME, backup_name=backup1, live=self.is_live)
+
+ account_backup = self.client.account_backups.get(TEST_RG, ACCOUNT1, backup1)
+ assert account_backup.name == ACCOUNT1 + "/" + backup1
+
+ disable_backup(self.client, account_name=ACCOUNT1, volume_name=volumeName1, live=self.is_live)
+ delete_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, live=self.is_live)
+ 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)
@recorded_by_proxy
def test_delete_account_backups(self):
set_bodiless_matcher()
- create_backup(self.client, backup_name=TEST_BACKUP_1, live=self.is_live)
-
- account_backup_list = self.client.account_backups.list(TEST_RG, TEST_ACC_1)
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ volumeName1 = self.get_resource_name(TEST_VOL_1+"-")
+ VNETNAME = self.get_resource_name(VNET+"-")
+ backup1 = self.get_resource_name(TEST_BACKUP_1+"-")
+ if self.is_live:
+ SUBNET = create_virtual_network(self.network_client, TEST_RG, LOCATION, VNETNAME, 'default')
+ create_backup(self.client, account_name=ACCOUNT1, volume_name=volumeName1, vnet=VNETNAME, backup_name=backup1, live=self.is_live)
+
+ account_backup_list = self.client.account_backups.list(TEST_RG, ACCOUNT1)
assert len(list(account_backup_list)) >= 1
- delete_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, live=self.is_live)
- self.client.account_backups.begin_delete(TEST_RG, TEST_ACC_1, TEST_BACKUP_1).wait()
+ delete_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, live=self.is_live)
+ self.client.account_backups.begin_delete(TEST_RG, ACCOUNT1, backup1).wait()
- account_backup_list = self.client.account_backups.list(TEST_RG, TEST_ACC_1)
+ account_backup_list = self.client.account_backups.list(TEST_RG, ACCOUNT1)
for backup in account_backup_list:
- assert backup.name != TEST_ACC_1 + "/" + TEST_BACKUP_1
+ assert backup.name != ACCOUNT1 + "/" + backup1
- delete_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, live=self.is_live)
- delete_account(self.client, TEST_RG, TEST_ACC_1, live=self.is_live)
+ 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)
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/test_backup.py b/sdk/netapp/azure-mgmt-netapp/tests/test_backup.py
index 0a2aa498a5f6..4f2e082bc8da 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/test_backup.py
+++ b/sdk/netapp/azure-mgmt-netapp/tests/test_backup.py
@@ -3,7 +3,7 @@
from devtools_testutils import AzureMgmtRecordedTestCase, recorded_by_proxy, set_bodiless_matcher
from azure.mgmt.netapp.models import Backup, BackupPatch, VolumePatch
from test_account import delete_account
-from test_volume import create_volume, wait_for_volume, delete_volume, delete_pool
+from test_volume import create_volume, wait_for_volume, delete_volume, delete_pool, create_virtual_network
from setup import *
import azure.mgmt.netapp.models
@@ -11,9 +11,9 @@
def create_backup(client, backup_name=TEST_BACKUP_1, rg=TEST_RG, account_name=TEST_ACC_1, pool_name=TEST_POOL_1,
- volume_name=TEST_VOL_1, location=LOCATION, backup_only=False, live=False):
+ volume_name=TEST_VOL_1, location=LOCATION, backup_only=False, vnet=VNET, live=False):
if not backup_only:
- create_volume(client, rg, account_name, pool_name, volume_name, location, vnet=VNET, live=live)
+ create_volume(client, rg, account_name, pool_name, volume_name, location, vnet=vnet, live=live)
wait_for_volume(client, rg, account_name, pool_name, volume_name, live)
vaults = client.vaults.list(rg, account_name)
@@ -23,7 +23,7 @@ def create_backup(client, backup_name=TEST_BACKUP_1, rg=TEST_RG, account_name=TE
"backupEnabled": True
}
})
- client.volumes.begin_update(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, volume_patch).result()
+ client.volumes.begin_update(TEST_RG, account_name, TEST_POOL_1, volume_name, volume_patch).result()
backup_body = Backup(location=location)
backup = client.backups.begin_create(rg, account_name, pool_name, volume_name, backup_name, backup_body).result()
wait_for_backup_created(client, rg, account_name, pool_name, volume_name, backup_name, live)
@@ -39,7 +39,7 @@ def disable_backup(client, backup_name=TEST_BACKUP_1, rg=TEST_RG, account_name=T
"backupEnabled": False
}
})
- client.volumes.begin_update(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, volume_patch).wait()
+ client.volumes.begin_update(TEST_RG, account_name, TEST_POOL_1, volume_name, volume_patch).wait()
wait_for_no_backup(client, rg, account_name, pool_name, volume_name, backup_name, live)
@@ -83,95 +83,127 @@ def wait_for_backup_created(client, rg, account_name, pool_name, volume_name, ba
break
-def clean_up(client, disable_bp=True, live=False):
+def clean_up(self, disable_bp=True, account_name=TEST_ACC_1, pool_name=TEST_POOL_1, volume_name=TEST_VOL_1, vnet=VNET, backup_name=TEST_BACKUP_1, live=False):
if disable_bp:
- disable_backup(client, live=live)
-
- delete_volume(client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, live=live)
- delete_pool(client, TEST_RG, TEST_ACC_1, TEST_POOL_1, live=live)
- delete_account(client, TEST_RG, TEST_ACC_1, live=live)
+ disable_backup(self.client, account_name=account_name, pool_name=pool_name, volume_name=volume_name, live=live)
+ delete_volume(self.client, TEST_RG, account_name=account_name, pool_name=pool_name, volume_name=volume_name, live=live)
+ delete_pool(self.client, TEST_RG, acc_name=account_name, pool_name=pool_name, live=live)
+ #client.account_backups.begin_delete(TEST_RG, account_name, backup_name).wait()
+ delete_account(self.client, TEST_RG, acc_name=account_name, live=live)
+ if self.is_live:
+ self.network_client.virtual_networks.begin_delete(TEST_RG, vnet)
class TestNetAppBackup(AzureMgmtRecordedTestCase):
def setup_method(self, method):
self.client = self.create_mgmt_client(azure.mgmt.netapp.NetAppManagementClient)
+ if self.is_live:
+ self.network_client.virtual_networks.begin_delete(TEST_RG, VNETNAME)
# Before tests are run live a resource group needs to be created along with vnet and subnet
# Note that when tests are run in live mode it is best to run one test at a time.
@recorded_by_proxy
def test_create_delete_backup(self):
- set_bodiless_matcher()
+ set_bodiless_matcher()
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ volumeName1 = self.get_resource_name(TEST_VOL_1+"-")
+ VNETNAME = self.get_resource_name(VNET+"-")
+ if self.is_live:
+ SUBNET = create_virtual_network(self.network_client, TEST_RG, LOCATION, VNETNAME, 'default')
+
# Create 2 backups since delete backups can only be used when volume has multiple backups
- create_backup(self.client, live=self.is_live)
- create_backup(self.client, backup_name=TEST_BACKUP_2, backup_only=True, live=self.is_live)
- backup_list = get_backup_list(self.client)
+ create_backup(self.client, account_name=ACCOUNT1, volume_name=volumeName1, vnet=VNETNAME, live=self.is_live)
+ create_backup(self.client, account_name=ACCOUNT1, volume_name=volumeName1, backup_name=TEST_BACKUP_2, backup_only=True, live=self.is_live)
+ backup_list = get_backup_list(self.client, account_name=ACCOUNT1, volume_name=volumeName1)
assert len(list(backup_list)) == 2
# delete the older backup since we are not able to delete the newest one with delete backup service
- delete_backup(self.client, live=self.is_live)
- backup_list = get_backup_list(self.client)
+ delete_backup(self.client, account_name=ACCOUNT1, volume_name=volumeName1, live=self.is_live)
+ backup_list = get_backup_list(self.client, account_name=ACCOUNT1, volume_name=volumeName1)
assert len(list(backup_list)) == 1
# automatically delete the second backup by disable backups on volume
- disable_backup(self.client, live=self.is_live)
- backup_list = get_backup_list(self.client)
+ disable_backup(self.client, account_name=ACCOUNT1, volume_name=volumeName1, live=self.is_live)
+ backup_list = get_backup_list(self.client, account_name=ACCOUNT1, volume_name=volumeName1)
assert len(list(backup_list)) == 0
- clean_up(self.client, disable_bp=False, live=self.is_live)
+ clean_up(self, disable_bp=False, account_name=ACCOUNT1, volume_name=volumeName1, vnet=VNETNAME, backup_name=TEST_BACKUP_1, live=self.is_live)
@recorded_by_proxy
def test_list_backup(self):
set_bodiless_matcher()
- create_backup(self.client, live=self.is_live)
- create_backup(self.client, backup_name=TEST_BACKUP_2, backup_only=True, live=self.is_live)
- backup_list = get_backup_list(self.client)
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ volumeName1 = self.get_resource_name(TEST_VOL_1+"-")
+ VNETNAME = self.get_resource_name(VNET+"-")
+ if self.is_live:
+ SUBNET = create_virtual_network(self.network_client, TEST_RG, LOCATION, VNETNAME, 'default')
+ create_backup(self.client, account_name=ACCOUNT1, volume_name=volumeName1, vnet=VNETNAME,live=self.is_live)
+ create_backup(self.client, account_name=ACCOUNT1, volume_name=volumeName1, vnet=VNETNAME, backup_name=TEST_BACKUP_2, backup_only=True, live=self.is_live)
+ backup_list = get_backup_list(self.client, account_name=ACCOUNT1, volume_name=volumeName1)
assert len(list(backup_list)) == 2
idx = 0
for backup in backup_list:
assert backup.name == backups[idx]
idx += 1
- disable_backup(self.client, live=self.is_live)
- disable_backup(self.client, backup_name=TEST_BACKUP_2, live=self.is_live)
+ disable_backup(self.client, account_name=ACCOUNT1, volume_name=volumeName1, live=self.is_live)
+ disable_backup(self.client, account_name=ACCOUNT1, volume_name=volumeName1, backup_name=TEST_BACKUP_2, live=self.is_live)
- backup_list = get_backup_list(self.client)
+ backup_list = get_backup_list(self.client, account_name=ACCOUNT1, volume_name=volumeName1)
assert len(list(backup_list)) == 0
- clean_up(self.client, disable_bp=False, live=self.is_live)
+ clean_up(self, account_name=ACCOUNT1, volume_name=volumeName1, vnet=VNETNAME, disable_bp=False, live=self.is_live)
@recorded_by_proxy
def test_get_backup_by_name(self):
set_bodiless_matcher()
- create_backup(self.client, live=self.is_live)
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ volumeName1 = self.get_resource_name(TEST_VOL_1+"-")
+ VNETNAME = self.get_resource_name(VNET+"-")
+ if self.is_live:
+ SUBNET = create_virtual_network(self.network_client, TEST_RG, LOCATION, VNETNAME, 'default')
+ create_backup(self.client, account_name=ACCOUNT1, volume_name=volumeName1, vnet=VNETNAME, live=self.is_live)
- backup = get_backup(self.client, TEST_BACKUP_1)
- assert backup.name == TEST_ACC_1 + "/" + TEST_POOL_1 + "/" + TEST_VOL_1 + "/" + TEST_BACKUP_1
+ backup = get_backup(self.client, account_name=ACCOUNT1, volume_name=volumeName1, backup_name=TEST_BACKUP_1)
+ assert backup.name == ACCOUNT1 + "/" + TEST_POOL_1 + "/" + volumeName1 + "/" + TEST_BACKUP_1
- clean_up(self.client, live=self.is_live)
+ clean_up(self, account_name=ACCOUNT1, volume_name=volumeName1, vnet=VNETNAME, live=self.is_live)
@recorded_by_proxy
def test_update_backup(self):
set_bodiless_matcher()
- create_backup(self.client, live=self.is_live)
- backup_body = BackupPatch(location=LOCATION, label="label1")
- self.client.backups.begin_update(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, TEST_BACKUP_1, backup_body).wait()
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ volumeName1 = self.get_resource_name(TEST_VOL_1+"-")
+ VNETNAME = self.get_resource_name(VNET+"-")
+ backup1 = self.get_resource_name(TEST_BACKUP_1+"-")
+ if self.is_live:
+ SUBNET = create_virtual_network(self.network_client, TEST_RG, LOCATION, VNETNAME, 'default')
+ create_backup(self.client, account_name=ACCOUNT1, volume_name=volumeName1, backup_name=backup1, vnet=VNETNAME, live=self.is_live)
+ backup_body = BackupPatch(account_name=ACCOUNT1, volume_name=volumeName1, backup_name=backup1, location=LOCATION, label="label1")
+ self.client.backups.begin_update(TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, backup1, backup_body).wait()
- backup = get_backup(self.client)
+ backup = get_backup(self.client, account_name=ACCOUNT1, volume_name=volumeName1, backup_name=backup1)
assert backup.label == "label1"
- clean_up(self.client, live=self.is_live)
+ clean_up(self, account_name=ACCOUNT1, volume_name=volumeName1, backup_name=backup1, vnet=VNETNAME, live=self.is_live)
@recorded_by_proxy
def test_get_backup_status(self):
set_bodiless_matcher()
- create_backup(self.client, live=self.is_live)
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ volumeName1 = self.get_resource_name(TEST_VOL_1+"-")
+ VNETNAME = self.get_resource_name(VNET+"-")
+ backup1 = self.get_resource_name(TEST_BACKUP_1+"-")
+ if self.is_live:
+ SUBNET = create_virtual_network(self.network_client, TEST_RG, LOCATION, VNETNAME, 'default')
+ create_backup(self.client, account_name=ACCOUNT1, volume_name=volumeName1, backup_name=backup1, vnet=VNETNAME, live=self.is_live)
if self.is_live:
time.sleep(120)
- backup_status = self.client.backups.get_status(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1)
+ backup_status = self.client.backups.get_status(TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1)
assert backup_status.healthy
assert backup_status.mirror_state == "Mirrored"
- clean_up(self.client, live=self.is_live)
+ clean_up(self, account_name=ACCOUNT1, volume_name=volumeName1, backup_name=backup1, vnet=VNETNAME, live=self.is_live)
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 a233b0b08785..4bd918f8baa7 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/test_backup_policies.py
+++ b/sdk/netapp/azure-mgmt-netapp/tests/test_backup_policies.py
@@ -68,51 +68,55 @@ def setup_method(self, method):
# Note that when tests are run in live mode it is best to run one test at a time.
@recorded_by_proxy
def test_create_delete_backup_policy(self):
- create_backup_policy(self.client, TEST_BACKUP_POLICY_1)
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ create_backup_policy(self.client, TEST_BACKUP_POLICY_1, account_name=ACCOUNT1)
- backup_policies_list = self.client.backup_policies.list(TEST_RG, TEST_ACC_1)
+ backup_policies_list = self.client.backup_policies.list(TEST_RG, ACCOUNT1)
assert len(list(backup_policies_list)) == 1
- delete_backup_policy(self.client, TEST_BACKUP_POLICY_1, live=self.is_live)
+ delete_backup_policy(self.client, TEST_BACKUP_POLICY_1, account_name=ACCOUNT1, live=self.is_live)
- backup_policies_list = self.client.backup_policies.list(TEST_RG, TEST_ACC_1)
+ backup_policies_list = self.client.backup_policies.list(TEST_RG, ACCOUNT1)
assert len(list(backup_policies_list)) == 0
- delete_account(self.client, TEST_RG, TEST_ACC_1, live=self.is_live)
+ delete_account(self.client, TEST_RG, ACCOUNT1, live=self.is_live)
@recorded_by_proxy
def test_list_backup_policies(self):
- create_backup_policy(self.client, TEST_BACKUP_POLICY_1)
- create_backup_policy(self.client, TEST_BACKUP_POLICY_2, backup_policy_only=True)
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ create_backup_policy(self.client, TEST_BACKUP_POLICY_1, account_name=ACCOUNT1)
+ create_backup_policy(self.client, TEST_BACKUP_POLICY_2, account_name=ACCOUNT1, backup_policy_only=True)
- backup_policies_list = self.client.backup_policies.list(TEST_RG, TEST_ACC_1)
+ backup_policies_list = self.client.backup_policies.list(TEST_RG, ACCOUNT1)
assert len(list(backup_policies_list)) == 2
idx = 0
for backup_policy in backup_policies_list:
assert backup_policy.name == BACKUP_POLICIES[idx]
idx += 1
- delete_backup_policy(self.client, TEST_BACKUP_POLICY_1, live=self.is_live)
- delete_backup_policy(self.client, TEST_BACKUP_POLICY_2, live=self.is_live)
+ 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)
- backup_policies_list = self.client.backup_policies.list(TEST_RG, TEST_ACC_1)
+ backup_policies_list = self.client.backup_policies.list(TEST_RG, ACCOUNT1)
assert len(list(backup_policies_list)) == 0
- delete_account(self.client, TEST_RG, TEST_ACC_1)
+ delete_account(self.client, TEST_RG, ACCOUNT1)
@recorded_by_proxy
def test_get_backup_policy_by_name(self):
- create_backup_policy(self.client, TEST_BACKUP_POLICY_1)
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ create_backup_policy(self.client, TEST_BACKUP_POLICY_1, account_name=ACCOUNT1)
- backup_policy = self.client.backup_policies.get(TEST_RG, TEST_ACC_1, TEST_BACKUP_POLICY_1)
- assert backup_policy.name == TEST_ACC_1 + "/" + TEST_BACKUP_POLICY_1
+ backup_policy = self.client.backup_policies.get(TEST_RG, ACCOUNT1, TEST_BACKUP_POLICY_1)
+ assert backup_policy.name == ACCOUNT1 + "/" + TEST_BACKUP_POLICY_1
- delete_backup_policy(self.client, TEST_BACKUP_POLICY_1, live=self.is_live)
- delete_account(self.client, TEST_RG, TEST_ACC_1)
+ delete_backup_policy(self.client, TEST_BACKUP_POLICY_1, account_name=ACCOUNT1, live=self.is_live)
+ delete_account(self.client, TEST_RG, ACCOUNT1)
@recorded_by_proxy
def test_update_backup_policies(self):
- create_backup_policy(self.client, TEST_BACKUP_POLICY_1)
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ create_backup_policy(self.client, TEST_BACKUP_POLICY_1, account_name=ACCOUNT1)
backup_policy_body = BackupPolicyPatch(
location=LOCATION,
daily_backups_to_keep=0,
@@ -120,9 +124,9 @@ def test_update_backup_policies(self):
monthly_backups_to_keep=0,
enabled=True
)
- backup_policy = self.client.backup_policies.begin_update(TEST_RG, TEST_ACC_1, TEST_BACKUP_POLICY_1, backup_policy_body).result()
+ backup_policy = self.client.backup_policies.begin_update(TEST_RG, ACCOUNT1, TEST_BACKUP_POLICY_1, backup_policy_body).result()
assert backup_policy.daily_backups_to_keep == 0
assert backup_policy.weekly_backups_to_keep == 1
- delete_backup_policy(self.client, TEST_BACKUP_POLICY_1, live=self.is_live)
- delete_account(self.client, TEST_RG, TEST_ACC_1)
+ delete_backup_policy(self.client, TEST_BACKUP_POLICY_1, account_name=ACCOUNT1, live=self.is_live)
+ delete_account(self.client, TEST_RG, ACCOUNT1)
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/test_pool.py b/sdk/netapp/azure-mgmt-netapp/tests/test_pool.py
index 417449e77dcd..4ace2a466169 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/test_pool.py
+++ b/sdk/netapp/azure-mgmt-netapp/tests/test_pool.py
@@ -9,10 +9,10 @@
DEFAULT_SIZE = 4398046511104
-def create_pool(client, rg=TEST_RG, acc_name=TEST_ACC_1, pool_name=TEST_POOL_1, location=LOCATION, pool_only=False):
+def create_pool(client, rg=TEST_RG, acc_name=TEST_ACC_1, pool_name=TEST_POOL_1, location=LOCATION, pool_only=False):
if not pool_only:
create_account(client, rg, acc_name, location)
-
+ print("Creating pool {0} in NetApp Account '{1} '...".format(pool_name,acc_name))
pool_body = CapacityPool(service_level=SERVICE_LEVEL, size=DEFAULT_SIZE, location=location)
pool = client.pools.begin_create_or_update(
rg,
@@ -20,7 +20,7 @@ def create_pool(client, rg=TEST_RG, acc_name=TEST_ACC_1, pool_name=TEST_POOL_1,
pool_name,
pool_body
).result()
-
+ print("\tdone")
return pool
@@ -42,6 +42,7 @@ def wait_for_no_pool(client, rg, acc_name, pool_name, live=False):
def delete_pool(client, rg, acc_name, pool_name, live=False):
# nest resources seem to hang around for a little while even
# when apparently deleted, therefore give it a chance
+ print("Deleting pool {0} in NetApp Account '{1} '...".format(pool_name,acc_name))
co = 0
while co < 5:
co += 1
@@ -54,6 +55,7 @@ def delete_pool(client, rg, acc_name, pool_name, live=False):
# but should be safe to generalise
break
wait_for_no_pool(client, rg, acc_name, pool_name, live)
+ print("\tdone")
class TestNetAppCapacityPool(AzureMgmtRecordedTestCase):
@@ -65,73 +67,78 @@ def setup_method(self, method):
# Note that when tests are run in live mode it is best to run one test at a time.
@recorded_by_proxy
def test_create_delete_pool(self):
- pool = create_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, LOCATION)
+ account_name1 = self.get_resource_name(TEST_ACC_1+"-")
+ pool = create_pool(self.client, TEST_RG, account_name1, TEST_POOL_1, LOCATION)
assert pool.size == DEFAULT_SIZE
- assert pool.name == TEST_ACC_1 + '/' + TEST_POOL_1
+ assert pool.name == account_name1 + '/' + TEST_POOL_1
- pool_list = self.client.pools.list(TEST_RG, TEST_ACC_1)
+ pool_list = self.client.pools.list(TEST_RG, account_name1)
assert len(list(pool_list)) == 1
- delete_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, live=self.is_live)
- pool_list = self.client.pools.list(TEST_RG, TEST_ACC_1)
+ delete_pool(self.client, TEST_RG, account_name1, TEST_POOL_1, live=self.is_live)
+ pool_list = self.client.pools.list(TEST_RG, account_name1)
assert len(list(pool_list)) == 0
- delete_account(self.client, TEST_RG, TEST_ACC_1, live=self.is_live)
+ delete_account(self.client, TEST_RG, account_name1, live=self.is_live)
@recorded_by_proxy
def test_list_pools(self):
- create_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, LOCATION)
- create_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_2, LOCATION, pool_only=True)
+ account_name1 = self.get_resource_name(TEST_ACC_1+"-")
+ create_pool(self.client, TEST_RG, account_name1, TEST_POOL_1, LOCATION)
+ create_pool(self.client, TEST_RG, account_name1, TEST_POOL_2, LOCATION, pool_only=True)
pools = [TEST_POOL_1, TEST_POOL_2]
- pool_list = self.client.pools.list(TEST_RG, TEST_ACC_1)
+ pool_list = self.client.pools.list(TEST_RG, account_name1)
assert len(list(pool_list)) == 2
idx = 0
for pool in pool_list:
assert pool.name == pools[idx]
idx += 1
- delete_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, live=self.is_live)
- delete_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_2, live=self.is_live)
- delete_account(self.client, TEST_RG, TEST_ACC_1, live=self.is_live)
+ delete_pool(self.client, TEST_RG, account_name1, TEST_POOL_1, live=self.is_live)
+ delete_pool(self.client, TEST_RG, account_name1, TEST_POOL_2, live=self.is_live)
+ delete_account(self.client, TEST_RG, account_name1, live=self.is_live)
@recorded_by_proxy
def test_get_pool_by_name(self):
- create_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, LOCATION)
+ account_name1 = self.get_resource_name(TEST_ACC_1+"-")
+ create_pool(self.client, TEST_RG, account_name1, TEST_POOL_1, LOCATION)
- pool = self.client.pools.get(TEST_RG, TEST_ACC_1, TEST_POOL_1)
- assert pool.name == TEST_ACC_1 + '/' + TEST_POOL_1
+ pool = self.client.pools.get(TEST_RG, account_name1, TEST_POOL_1)
+ assert pool.name == account_name1 + '/' + TEST_POOL_1
- delete_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, live=self.is_live)
- delete_account(self.client, TEST_RG, TEST_ACC_1, live=self.is_live)
+ delete_pool(self.client, TEST_RG, account_name1, TEST_POOL_1, live=self.is_live)
+ delete_account(self.client, TEST_RG, account_name1, live=self.is_live)
@recorded_by_proxy
def test_update_pool(self):
- pool = create_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1)
+ account_name1 = self.get_resource_name(TEST_ACC_1+"-")
+ pool = create_pool(self.client, TEST_RG, account_name1, TEST_POOL_1)
assert pool.qos_type == "Auto"
pool_body = CapacityPoolPatch(qos_type="Manual", size=DEFAULT_SIZE, location=LOCATION)
pool = self.client.pools.begin_create_or_update(
TEST_RG,
- TEST_ACC_1,
+ account_name1,
TEST_POOL_1,
pool_body
).result()
assert pool.qos_type == "Manual"
- delete_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, live=self.is_live)
- delete_account(self.client, TEST_RG, TEST_ACC_1, live=self.is_live)
+ delete_pool(self.client, TEST_RG, account_name1, TEST_POOL_1, live=self.is_live)
+ delete_account(self.client, TEST_RG, account_name1, live=self.is_live)
@recorded_by_proxy
def test_patch_pool(self):
- create_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1)
+ account_name1 = self.get_resource_name(TEST_ACC_1+"-")
+ create_pool(self.client, TEST_RG, account_name1, TEST_POOL_1)
tag = {'Tag2': 'Value1'}
capacity_pool_patch = CapacityPoolPatch(qos_type="Manual", tags=tag)
- pool = self.client.pools.begin_update(TEST_RG, TEST_ACC_1, TEST_POOL_1, capacity_pool_patch).result()
+ pool = self.client.pools.begin_update(TEST_RG, account_name1, TEST_POOL_1, capacity_pool_patch).result()
assert pool.qos_type == "Manual"
assert pool.tags['Tag2'] == 'Value1'
- delete_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, live=self.is_live)
- delete_account(self.client, TEST_RG, TEST_ACC_1, live=self.is_live)
+ delete_pool(self.client, TEST_RG, account_name1, TEST_POOL_1, live=self.is_live)
+ delete_account(self.client, TEST_RG, account_name1, live=self.is_live)
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/test_snapshot.py b/sdk/netapp/azure-mgmt-netapp/tests/test_snapshot.py
index d374b8dc168c..7bd46e8c4a23 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/test_snapshot.py
+++ b/sdk/netapp/azure-mgmt-netapp/tests/test_snapshot.py
@@ -2,7 +2,7 @@
from azure.mgmt.resource import ResourceManagementClient
from devtools_testutils import AzureMgmtRecordedTestCase, recorded_by_proxy, set_bodiless_matcher
from azure.mgmt.netapp.models import Volume, Snapshot
-from test_volume import create_volume, wait_for_volume, delete_volume
+from test_volume import create_volume, wait_for_volume, delete_volume, create_virtual_network
from test_pool import delete_pool
from test_account import delete_account
from setup import *
@@ -13,9 +13,9 @@
def create_snapshot(client, rg=TEST_RG, account_name=TEST_ACC_1, pool_name=TEST_POOL_1, volume_name=TEST_VOL_1,
- snapshot_name=TEST_SNAPSHOT_1, location=LOCATION, snapshot_only=False):
+ snapshot_name=TEST_SNAPSHOT_1, location=LOCATION, vnet=VNET, snapshot_only=False):
if not snapshot_only:
- volume = create_volume(client, rg, account_name, pool_name, volume_name)
+ volume = create_volume(client, rg, account_name, pool_name, volume_name, vnet=vnet)
# be sure the volume is really available
wait_for_volume(client, rg, account_name, pool_name, volume_name)
else:
@@ -47,54 +47,78 @@ class TestNetAppSnapshot(AzureMgmtRecordedTestCase):
def setup_method(self, method):
self.client = self.create_mgmt_client(azure.mgmt.netapp.NetAppManagementClient)
+ if self.is_live:
+ from azure.mgmt.network import NetworkManagementClient
+ self.network_client = self.create_mgmt_client(NetworkManagementClient)
# Before tests are run live a resource group needs to be created along with vnet and subnet
# Note that when tests are run in live mode it is best to run one test at a time.
@recorded_by_proxy
def test_create_delete_snapshot(self):
set_bodiless_matcher()
- create_snapshot(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, TEST_SNAPSHOT_1, LOCATION)
-
- snapshot_list = self.client.snapshots.list(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1)
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ volumeName1 = self.get_resource_name(TEST_VOL_1+"-")
+ VNETNAME = self.get_resource_name(VNET+"-")
+ if self.is_live:
+ SUBNET = create_virtual_network(self.network_client, TEST_RG, LOCATION, VNETNAME, 'default')
+ create_snapshot(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, TEST_SNAPSHOT_1, LOCATION, vnet=VNETNAME)
+
+ snapshot_list = self.client.snapshots.list(TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1)
assert len(list(snapshot_list)) == 1
- delete_snapshot(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, TEST_SNAPSHOT_1, self.is_live)
- snapshot_list = self.client.snapshots.list(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1)
+ delete_snapshot(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, TEST_SNAPSHOT_1, self.is_live)
+ snapshot_list = self.client.snapshots.list(TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1)
assert len(list(snapshot_list)) == 0
- delete_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, self.is_live)
- delete_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, self.is_live)
- delete_account(self.client, TEST_RG, TEST_ACC_1, self.is_live)
+ delete_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, self.is_live)
+ delete_pool(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, self.is_live)
+ delete_account(self.client, TEST_RG, ACCOUNT1, self.is_live)
+ if self.is_live:
+ self.network_client.virtual_networks.begin_delete(TEST_RG, VNETNAME)
@recorded_by_proxy
def test_list_snapshots(self):
set_bodiless_matcher()
- create_snapshot(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, TEST_SNAPSHOT_1, LOCATION)
- create_snapshot(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, TEST_SNAPSHOT_2, LOCATION, snapshot_only=True)
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ volumeName1 = self.get_resource_name(TEST_VOL_1+"-")
+ VNETNAME = self.get_resource_name(VNET+"-")
+ if self.is_live:
+ SUBNET = create_virtual_network(self.network_client, TEST_RG, LOCATION, VNETNAME, 'default')
+ create_snapshot(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, TEST_SNAPSHOT_1, LOCATION, vnet=VNETNAME)
+ create_snapshot(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, TEST_SNAPSHOT_2, LOCATION, snapshot_only=True)
snapshots = [TEST_SNAPSHOT_1, TEST_SNAPSHOT_2]
- snapshot_list = self.client.snapshots.list(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1)
+ snapshot_list = self.client.snapshots.list(TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1)
assert len(list(snapshot_list)) == 2
idx = 0
for snapshot in snapshot_list:
assert snapshot.name == snapshots[idx]
idx += 1
- delete_snapshot(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, TEST_SNAPSHOT_1, self.is_live)
- delete_snapshot(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, TEST_SNAPSHOT_2, self.is_live)
- delete_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, self.is_live)
- delete_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, self.is_live)
- delete_account(self.client, TEST_RG, TEST_ACC_1, self.is_live)
+ delete_snapshot(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, TEST_SNAPSHOT_1, self.is_live)
+ delete_snapshot(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, TEST_SNAPSHOT_2, self.is_live)
+ delete_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, self.is_live)
+ delete_pool(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, self.is_live)
+ delete_account(self.client, TEST_RG, ACCOUNT1, self.is_live)
+ if self.is_live:
+ self.network_client.virtual_networks.begin_delete(TEST_RG, VNETNAME)
@recorded_by_proxy
def test_get_snapshot_by_name(self):
set_bodiless_matcher()
- create_snapshot(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, TEST_SNAPSHOT_1, LOCATION)
-
- snapshot = self.client.snapshots.get(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, TEST_SNAPSHOT_1)
- assert snapshot.name == TEST_ACC_1 + '/' + TEST_POOL_1 + '/' + TEST_VOL_1+ '/' + TEST_SNAPSHOT_1
-
- delete_snapshot(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, TEST_SNAPSHOT_1, self.is_live)
- delete_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, self.is_live)
- delete_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, self.is_live)
- delete_account(self.client, TEST_RG, TEST_ACC_1, self.is_live)
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ volumeName1 = self.get_resource_name(TEST_VOL_1+"-")
+ VNETNAME = self.get_resource_name(VNET+"-")
+ if self.is_live:
+ SUBNET = create_virtual_network(self.network_client, TEST_RG, LOCATION, VNETNAME, 'default')
+ create_snapshot(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, TEST_SNAPSHOT_1, LOCATION, vnet=VNETNAME)
+
+ snapshot = self.client.snapshots.get(TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, TEST_SNAPSHOT_1)
+ assert snapshot.name == ACCOUNT1 + '/' + TEST_POOL_1 + '/' + volumeName1+ '/' + TEST_SNAPSHOT_1
+
+ delete_snapshot(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, TEST_SNAPSHOT_1, self.is_live)
+ delete_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, self.is_live)
+ delete_pool(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, self.is_live)
+ delete_account(self.client, TEST_RG, ACCOUNT1, 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_snapshot_policies.py b/sdk/netapp/azure-mgmt-netapp/tests/test_snapshot_policies.py
index 0d1e0e44c75c..cebbba450512 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/test_snapshot_policies.py
+++ b/sdk/netapp/azure-mgmt-netapp/tests/test_snapshot_policies.py
@@ -4,7 +4,7 @@
from azure.mgmt.netapp.models import SnapshotPolicy, SnapshotPolicyPatch, HourlySchedule, DailySchedule, VolumeSnapshotProperties, VolumePatchPropertiesDataProtection, VolumePatch
from test_account import create_account, delete_account
from test_pool import delete_pool
-from test_volume import create_volume, delete_volume
+from test_volume import create_volume, delete_volume, create_virtual_network
from setup import *
import azure.mgmt.netapp.models
@@ -53,29 +53,34 @@ class TestNetAppSnapshotPolicy(AzureMgmtRecordedTestCase):
def setup_method(self, method):
self.client = self.create_mgmt_client(azure.mgmt.netapp.NetAppManagementClient)
+ if self.is_live:
+ self.network_client.virtual_networks.begin_delete(TEST_RG, VNETNAME)
+
# Before tests are run live a resource group needs to be created along with vnet and subnet
# Note that when tests are run in live mode it is best to run one test at a time.
@recorded_by_proxy
def test_create_delete_snapshot_policy(self):
- create_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_1)
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ create_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_1, account_name=ACCOUNT1)
- snapshot_policies_list = self.client.snapshot_policies.list(TEST_RG, TEST_ACC_1)
+ snapshot_policies_list = self.client.snapshot_policies.list(TEST_RG, account_name=ACCOUNT1)
assert len(list(snapshot_policies_list)) == 1
- delete_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_1, live=self.is_live)
+ delete_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_1, account_name=ACCOUNT1, live=self.is_live)
- snapshot_policies_list = self.client.snapshot_policies.list(TEST_RG, TEST_ACC_1)
+ snapshot_policies_list = self.client.snapshot_policies.list(TEST_RG, ACCOUNT1)
assert len(list(snapshot_policies_list)) == 0
- delete_account(self.client, TEST_RG, TEST_ACC_1, live=self.is_live)
+ delete_account(self.client, TEST_RG, ACCOUNT1, live=self.is_live)
@recorded_by_proxy
def test_list_snapshot_policies(self):
- create_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_1)
- create_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_2, snapshot_policy_only=True)
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ create_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_1, account_name=ACCOUNT1)
+ create_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_2, account_name=ACCOUNT1, snapshot_policy_only=True)
- snapshot_policies_list = self.client.snapshot_policies.list(TEST_RG, TEST_ACC_1)
+ snapshot_policies_list = self.client.snapshot_policies.list(TEST_RG, ACCOUNT1)
assert len(list(snapshot_policies_list)) == 2
snapshot_policies = [TEST_SNAPSHOT_POLICY_1, TEST_SNAPSHOT_POLICY_2]
@@ -84,27 +89,29 @@ def test_list_snapshot_policies(self):
assert snapshot_policy.name == snapshot_policies[idx]
idx += 1
- delete_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_1, live=self.is_live)
- delete_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_2, live=self.is_live)
+ delete_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_1, account_name=ACCOUNT1, live=self.is_live)
+ delete_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_2, account_name=ACCOUNT1, live=self.is_live)
- snapshot_policies_list = self.client.snapshot_policies.list(TEST_RG, TEST_ACC_1)
+ snapshot_policies_list = self.client.snapshot_policies.list(TEST_RG, ACCOUNT1)
assert len(list(snapshot_policies_list)) == 0
- delete_account(self.client, TEST_RG, TEST_ACC_1)
+ delete_account(self.client, TEST_RG, ACCOUNT1)
@recorded_by_proxy
def test_get_snapshot_policy_by_name(self):
- create_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_1)
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ create_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_1, account_name=ACCOUNT1)
- snapshot_policy = self.client.snapshot_policies.get(TEST_RG, TEST_ACC_1, TEST_SNAPSHOT_POLICY_1)
- assert snapshot_policy.name == TEST_ACC_1 + "/" + TEST_SNAPSHOT_POLICY_1
+ snapshot_policy = self.client.snapshot_policies.get(TEST_RG, ACCOUNT1, TEST_SNAPSHOT_POLICY_1)
+ assert snapshot_policy.name == ACCOUNT1 + "/" + TEST_SNAPSHOT_POLICY_1
- delete_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_1, live=self.is_live)
- delete_account(self.client, TEST_RG, TEST_ACC_1)
+ delete_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_1, account_name=ACCOUNT1, live=self.is_live)
+ delete_account(self.client, TEST_RG, ACCOUNT1)
@recorded_by_proxy
def test_update_snapshot_policies(self):
- create_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_1)
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ create_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_1, account_name=ACCOUNT1)
snapshot_policy_body = SnapshotPolicyPatch(
location=LOCATION,
@@ -114,30 +121,39 @@ def test_update_snapshot_policies(self):
monthly_schedule={},
enabled=False
)
- snapshot_policy = self.client.snapshot_policies.begin_update(TEST_RG, TEST_ACC_1, TEST_SNAPSHOT_POLICY_1, snapshot_policy_body).result()
+ snapshot_policy = self.client.snapshot_policies.begin_update(TEST_RG, ACCOUNT1, TEST_SNAPSHOT_POLICY_1, snapshot_policy_body).result()
assert snapshot_policy.daily_schedule.snapshots_to_keep == 1
assert snapshot_policy.daily_schedule.hour == 1
assert snapshot_policy.daily_schedule.minute == 50
- delete_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_1, live=self.is_live)
- delete_account(self.client, TEST_RG, TEST_ACC_1)
+ delete_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_1, account_name=ACCOUNT1, live=self.is_live)
+ delete_account(self.client, TEST_RG, ACCOUNT1)
@recorded_by_proxy
def test_assign_snapshot_policy_to_volume(self):
set_bodiless_matcher()
# create volume and snapshot policy
- create_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1)
- snapshot_policy = create_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_1)
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ volumeName1 = self.get_resource_name(TEST_VOL_1+"-")
+ VNETNAME = self.get_resource_name(VNET+"-")
+ if self.is_live:
+ SUBNET = create_virtual_network(self.network_client, TEST_RG, LOCATION, VNETNAME, 'default')
+ create_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, LOCATION, vnet=VNETNAME)
+
+ snapshot_policy = create_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_1, account_name=ACCOUNT1)
# assign the snapshot policy to the volume
snapshot = VolumeSnapshotProperties(snapshot_policy_id=snapshot_policy.id)
data_protection = VolumePatchPropertiesDataProtection(snapshot=snapshot)
volume_patch = VolumePatch(data_protection=data_protection)
- volume = self.client.volumes.begin_update(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, volume_patch).result()
+ volume = self.client.volumes.begin_update(TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, volume_patch).result()
assert volume.data_protection.snapshot.snapshot_policy_id == snapshot_policy.id
# cleanup
- delete_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, live=self.is_live)
- delete_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_1, live=self.is_live)
- delete_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, live=self.is_live)
- delete_account(self.client, TEST_RG, TEST_ACC_1, live=self.is_live)
+ 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)
+ 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_subvolume.py b/sdk/netapp/azure-mgmt-netapp/tests/test_subvolume.py
index 2fc63c82836b..3733137ec0e4 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/test_subvolume.py
+++ b/sdk/netapp/azure-mgmt-netapp/tests/test_subvolume.py
@@ -1,6 +1,6 @@
from azure.mgmt.netapp.models import SubvolumeInfo, SubvolumePatchRequest
from devtools_testutils import AzureMgmtRecordedTestCase, recorded_by_proxy, set_bodiless_matcher
-from test_volume import create_volume, delete_volume, delete_pool, delete_account
+from test_volume import create_volume, delete_volume, delete_pool, delete_account, create_virtual_network
from setup import *
import azure.mgmt.netapp.models
import time
@@ -20,17 +20,24 @@ class TestNetAppSubvolume(AzureMgmtRecordedTestCase):
def setup_method(self, method):
self.client = self.create_mgmt_client(azure.mgmt.netapp.NetAppManagementClient)
+ if self.is_live:
+ from azure.mgmt.network import NetworkManagementClient
+ self.network_client = self.create_mgmt_client(NetworkManagementClient)
# Before tests are run live a resource group needs to be created along with vnet and subnet
# Note that when tests are run in live mode it is best to run one test at a time.
@recorded_by_proxy
def test_crud_subvolumes(self):
set_bodiless_matcher()
- create_volume(self.client, enable_subvolumes="Enabled")
-
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ volumeName1 = self.get_resource_name(TEST_VOL_1+"-")
+ VNETNAME = self.get_resource_name(VNET+"-")
+ if self.is_live:
+ SUBNET = create_virtual_network(self.network_client, TEST_RG, LOCATION, VNETNAME, 'default')
+ create_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, LOCATION, vnet=VNETNAME, enable_subvolumes="Enabled")
path = "/sub_vol_1.txt"
size = 1000000
- parent_path = "/parent_sub_vol_1.txt"
+ parent_path = "/parent_sub_vol_1.txt"
subvolume_body = SubvolumeInfo(
path=path,
size=size
@@ -38,8 +45,8 @@ def test_crud_subvolumes(self):
# create
subvolume_info = self.client.subvolumes.begin_create(
- TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, TEST_SUBVOLUME_1, subvolume_body).result()
- assert subvolume_info.name == TEST_ACC_1 + "/" + TEST_POOL_1 + "/" + TEST_VOL_1 + "/" + TEST_SUBVOLUME_1
+ TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, TEST_SUBVOLUME_1, subvolume_body).result()
+ assert subvolume_info.name == ACCOUNT1 + "/" + TEST_POOL_1 + "/" + volumeName1 + "/" + TEST_SUBVOLUME_1
assert subvolume_info.path == path
# update
@@ -50,29 +57,37 @@ def test_crud_subvolumes(self):
size=size,
)
subvolume_info = self.client.subvolumes.begin_update(
- TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, TEST_SUBVOLUME_1, subvolume_patch).result()
- assert subvolume_info.name == TEST_ACC_1 + "/" + TEST_POOL_1 + "/" + TEST_VOL_1 + "/" + TEST_SUBVOLUME_1
+ TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, TEST_SUBVOLUME_1, subvolume_patch).result()
+ assert subvolume_info.name == ACCOUNT1 + "/" + TEST_POOL_1 + "/" + volumeName1 + "/" + TEST_SUBVOLUME_1
assert subvolume_info.path, path
# get
- subvolume_info = self.client.subvolumes.get(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, TEST_SUBVOLUME_1)
- assert subvolume_info.name == TEST_ACC_1 + "/" + TEST_POOL_1 + "/" + TEST_VOL_1 + "/" + TEST_SUBVOLUME_1
+ subvolume_info = self.client.subvolumes.get(TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, TEST_SUBVOLUME_1)
+ assert subvolume_info.name == ACCOUNT1 + "/" + TEST_POOL_1 + "/" + volumeName1 + "/" + TEST_SUBVOLUME_1
assert subvolume_info.path == path
# delete
- self.client.subvolumes.begin_delete(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, TEST_SUBVOLUME_1).wait()
- subvolume_list = self.client.subvolumes.list_by_volume(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1)
+ self.client.subvolumes.begin_delete(TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, TEST_SUBVOLUME_1).wait()
+ subvolume_list = self.client.subvolumes.list_by_volume(TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1)
assert len(list(subvolume_list)) == 0
# clean up
- delete_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, live=self.is_live)
- delete_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, live=self.is_live)
- delete_account(self.client, TEST_RG, TEST_ACC_1, live=self.is_live)
+ delete_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, live=self.is_live)
+ 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)
+
@recorded_by_proxy
def test_list_by_volume(self):
set_bodiless_matcher()
- create_volume(self.client, enable_subvolumes="Enabled")
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ volumeName1 = self.get_resource_name(TEST_VOL_1+"-")
+ VNETNAME = self.get_resource_name(VNET+"-")
+ if self.is_live:
+ SUBNET = create_virtual_network(self.network_client, TEST_RG, LOCATION, VNETNAME, 'default')
+ create_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, LOCATION, vnet=VNETNAME, enable_subvolumes="Enabled")
path1 = "/sub_vol_1.txt"
size1 = 1000000
@@ -89,31 +104,38 @@ def test_list_by_volume(self):
)
# create
- self.client.subvolumes.begin_create(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, TEST_SUBVOLUME_1, subvolume_body1)
- wait_for_subvolume_created(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, TEST_SUBVOLUME_1)
- self.client.subvolumes.begin_create(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, TEST_SUBVOLUME_2, subvolume_body2)
+ self.client.subvolumes.begin_create(TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, TEST_SUBVOLUME_1, subvolume_body1)
+ wait_for_subvolume_created(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, TEST_SUBVOLUME_1)
+ self.client.subvolumes.begin_create(TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, TEST_SUBVOLUME_2, subvolume_body2)
# list_by_volume
- subvolume_list = self.client.subvolumes.list_by_volume(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1)
+ subvolume_list = self.client.subvolumes.list_by_volume(TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1)
assert len(list(subvolume_list)) == 2
- self.client.subvolumes.begin_delete(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, TEST_SUBVOLUME_1).wait()
- subvolume_list = self.client.subvolumes.list_by_volume(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1)
+ self.client.subvolumes.begin_delete(TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, TEST_SUBVOLUME_1).wait()
+ subvolume_list = self.client.subvolumes.list_by_volume(TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1)
assert len(list(subvolume_list)) == 1
- self.client.subvolumes.begin_delete(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, TEST_SUBVOLUME_2).wait()
- subvolume_list = self.client.subvolumes.list_by_volume(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1)
+ self.client.subvolumes.begin_delete(TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, TEST_SUBVOLUME_2).wait()
+ subvolume_list = self.client.subvolumes.list_by_volume(TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1)
assert len(list(subvolume_list)) == 0
# clean up
- delete_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, live=self.is_live)
- delete_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, live=self.is_live)
- delete_account(self.client, TEST_RG, TEST_ACC_1, live=self.is_live)
+ delete_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, live=self.is_live)
+ 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)
@recorded_by_proxy
def test_get_metadata(self):
set_bodiless_matcher()
- create_volume(self.client, enable_subvolumes="Enabled")
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ volumeName1 = self.get_resource_name(TEST_VOL_1+"-")
+ VNETNAME = self.get_resource_name(VNET+"-")
+ if self.is_live:
+ SUBNET = create_virtual_network(self.network_client, TEST_RG, LOCATION, VNETNAME, 'default')
+ create_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, LOCATION, vnet=VNETNAME, enable_subvolumes="Enabled")
path = "/sub_vol_1.txt"
size = 123
@@ -124,17 +146,19 @@ def test_get_metadata(self):
# create
subvolume_info = self.client.subvolumes.begin_create(
- TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, TEST_SUBVOLUME_1, subvolume_body).result()
- assert subvolume_info.name == TEST_ACC_1 + "/" + TEST_POOL_1 + "/" + TEST_VOL_1 + "/" + TEST_SUBVOLUME_1
+ TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, TEST_SUBVOLUME_1, subvolume_body).result()
+ assert subvolume_info.name == ACCOUNT1 + "/" + TEST_POOL_1 + "/" + volumeName1 + "/" + TEST_SUBVOLUME_1
assert subvolume_info.path == path
# get metadata
metadata = self.client.subvolumes.begin_get_metadata(
- TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, TEST_SUBVOLUME_1).result()
+ TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, TEST_SUBVOLUME_1).result()
assert metadata is not None
# clean up
- self.client.subvolumes.begin_delete(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, TEST_SUBVOLUME_1).wait()
- delete_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, live=self.is_live)
- delete_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, live=self.is_live)
- delete_account(self.client, TEST_RG, TEST_ACC_1, live=self.is_live)
+ self.client.subvolumes.begin_delete(TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, TEST_SUBVOLUME_1).wait()
+ delete_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, live=self.is_live)
+ 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)
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/test_vault.py b/sdk/netapp/azure-mgmt-netapp/tests/test_vault.py
index cbcc596ee62f..64c36e481f47 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/test_vault.py
+++ b/sdk/netapp/azure-mgmt-netapp/tests/test_vault.py
@@ -1,5 +1,5 @@
from devtools_testutils import AzureMgmtRecordedTestCase, recorded_by_proxy, set_bodiless_matcher
-from test_volume import create_volume, delete_volume, delete_pool, delete_account
+from test_volume import create_volume, delete_volume, delete_pool, delete_account, create_virtual_network
from setup import *
import azure.mgmt.netapp.models
@@ -8,17 +8,29 @@ class TestNetAppVault(AzureMgmtRecordedTestCase):
def setup_method(self, method):
self.client = self.create_mgmt_client(azure.mgmt.netapp.NetAppManagementClient)
+ if self.is_live:
+ from azure.mgmt.network import NetworkManagementClient
+ self.network_client = self.create_mgmt_client(NetworkManagementClient)
# Before tests are run live a resource group needs to be created along with vnet and subnet
# Note that when tests are run in live mode it is best to run one test at a time.
@recorded_by_proxy
def test_get_vault(self):
set_bodiless_matcher()
- create_volume(self.client)
- vaults = self.client.vaults.list(TEST_RG, TEST_ACC_1)
+ print("Starting test_get_vault...")
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ volumeName1 = self.get_resource_name(TEST_VOL_1+"-")
+ VNETNAME = self.get_resource_name(VNET+"-")
+ if self.is_live:
+ SUBNET = create_virtual_network(self.network_client, TEST_RG, LOCATION, VNETNAME, 'default')
+ volume = create_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, LOCATION, vnet=VNETNAME, live=self.is_live)
+ vaults = self.client.vaults.list(TEST_RG, ACCOUNT1)
assert len(list(vaults)) == 1
# clean up
- delete_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, live=self.is_live)
- delete_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, live=self.is_live)
- delete_account(self.client, TEST_RG, TEST_ACC_1, live=self.is_live)
+ delete_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, live=self.is_live)
+ 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)
+
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/test_volume.py b/sdk/netapp/azure-mgmt-netapp/tests/test_volume.py
index 536e3831276c..378e6b1130e7 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/test_volume.py
+++ b/sdk/netapp/azure-mgmt-netapp/tests/test_volume.py
@@ -10,10 +10,8 @@
GIGABYTE = 1024 * 1024 * 1024
SUBSID = '69a75bda-882e-44d5-8431-63421204132a'
-
def create_volume_body(volume_name, location, rg=TEST_RG, vnet=VNET, enable_subvolumes=None):
- default_protocol_type = ["NFSv3"]
-
+ default_protocol_type = ["NFSv3"]
volume_body = Volume(
location=location,
usage_threshold=100 * GIGABYTE,
@@ -29,7 +27,7 @@ def create_volume_body(volume_name, location, rg=TEST_RG, vnet=VNET, enable_subv
def create_volume(client, rg=TEST_RG, account_name=TEST_ACC_1, pool_name=TEST_POOL_1, volume_name=TEST_VOL_1,
- location=LOCATION, vnet=VNET, volume_only=False, live=False, enable_subvolumes=None):
+ location=LOCATION, vnet=VNET, volume_only=False, live=False, enable_subvolumes=None):
if not volume_only:
create_pool(
client,
@@ -40,7 +38,8 @@ def create_volume(client, rg=TEST_RG, account_name=TEST_ACC_1, pool_name=TEST_PO
False)
if live:
time.sleep(10)
-
+ print("Creating volume {0} in NetApp Account '{1} '...".format(volume_name, account_name))
+ #def create_virtual_network(, group_name, location, network_name, subnet_name):
volume_body = create_volume_body(volume_name, location, rg, vnet, enable_subvolumes)
volume = client.volumes.begin_create_or_update(
rg,
@@ -49,12 +48,12 @@ def create_volume(client, rg=TEST_RG, account_name=TEST_ACC_1, pool_name=TEST_PO
volume_name,
volume_body
).result()
-
+ print("\tdone")
return volume
def create_dp_volume(client, source_volume, rg=TEST_REPL_REMOTE_RG, account_name=TEST_ACC_2, pool_name=TEST_POOL_2,
- volume_name=TEST_VOL_2, location=REMOTE_LOCATION, volume_only=False, live=False):
+ volume_name=TEST_VOL_2, location=REMOTE_LOCATION, vnet=REMOTE_VNET, volume_only=False, live=False):
if not volume_only:
create_pool(
client,
@@ -65,7 +64,7 @@ def create_dp_volume(client, source_volume, rg=TEST_REPL_REMOTE_RG, account_name
False)
if live:
time.sleep(10)
-
+ print("Creating DP volume in NetApp Account '{0} '...".format(account_name))
# data protection and replication object
replication = ReplicationObject(
endpoint_type="dst",
@@ -85,7 +84,7 @@ def create_dp_volume(client, source_volume, rg=TEST_REPL_REMOTE_RG, account_name
protocol_types=default_protocol_type,
creation_token=volume_name,
subnet_id="/subscriptions/" + SUBSID + "/resourceGroups/" + rg + "/providers/Microsoft.Network/virtualNetworks/"
- + REMOTE_VNET + "/subnets/default",
+ + vnet + "/subnets/default",
volume_type="DataProtection",
data_protection=data_protection
)
@@ -97,7 +96,7 @@ def create_dp_volume(client, source_volume, rg=TEST_REPL_REMOTE_RG, account_name
volume_name,
volume_body
).result()
-
+ print("\tdone")
return destination_volume
@@ -138,104 +137,168 @@ def wait_for_volume(client, rg, account_name, pool_name, volume_name, live=False
def delete_volume(client, rg, account_name, pool_name, volume_name, live=False):
+ print("Delete volume '{0} '...".format(volume_name))
client.volumes.begin_delete(rg, account_name, pool_name, volume_name).wait()
wait_for_no_volume(client, rg, account_name, pool_name, volume_name, live)
+ print("\tdone")
-def wait_for_replication_status(client, target_state, live=False):
+def wait_for_replication_status(client, target_state, dp_rg=TEST_REPL_REMOTE_RG, dp_account_name=TEST_ACC_2, dp_pool_name=TEST_POOL_2, dp_volume_name=TEST_VOL_2, live=False):
# python isn't good at do-while loops but loop until we get the target state
while True:
- replication_status = client.volumes.replication_status(TEST_REPL_REMOTE_RG, TEST_ACC_2, TEST_POOL_2, TEST_VOL_2)
+ replication_status = client.volumes.replication_status(dp_rg, dp_account_name, dp_pool_name, dp_volume_name)
if replication_status.mirror_state == target_state:
break
if live:
time.sleep(1)
-def wait_for_succeeded(client, live=False):
+def wait_for_succeeded(client, rg=TEST_RG, account_name=TEST_ACC_1, pool_name=TEST_POOL_1, volume_name=TEST_VOL_1, dp_rg=TEST_REPL_REMOTE_RG, dp_account_name=TEST_ACC_2, dp_pool_name=TEST_POOL_2, dp_volume_name=TEST_VOL_2,live=False):
# python isn't good at do-while loops but loop until we get volumes in succeeded state
while True:
- source_volume = client.volumes.get(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1)
- dp_volume = client.volumes.get(TEST_REPL_REMOTE_RG, TEST_ACC_2, TEST_POOL_2, TEST_VOL_2)
+ source_volume = client.volumes.get(rg, account_name, pool_name, volume_name)
+ dp_volume = client.volumes.get(dp_rg, dp_account_name, dp_pool_name, dp_volume_name)
if (source_volume.provisioning_state == "Succeeded") and (dp_volume.provisioning_state == "Succeeded"):
break
if live:
time.sleep(1)
+def create_virtual_network(network_client, group_name, location, network_name, subnet_name):
+ print("Create vnet '{0} '...".format(network_name))
+ azure_operation_poller = network_client.virtual_networks.begin_create_or_update(
+ group_name,
+ network_name,
+ {
+ 'location': location,
+ 'address_space': {
+ 'address_prefixes': ['10.0.0.0/16']
+ }
+ },
+ )
+ result_create = azure_operation_poller.result()
+ print("Create subnet '{0} '...".format(subnet_name))
+ async_subnet_creation = network_client.subnets.begin_create_or_update(
+ group_name,
+ network_name,
+ subnet_name,
+ {
+ 'address_prefix': '10.0.0.0/24',
+ 'delegations': [
+ {
+ "service_name": "Microsoft.Netapp/volumes",
+ "name": "netAppVolumes"
+ }
+ ]
+ }
+ )
+ subnet_info = async_subnet_creation.result()
+ print("\tdone")
+ return subnet_info
class TestNetAppVolume(AzureMgmtRecordedTestCase):
def setup_method(self, method):
self.client = self.create_mgmt_client(azure.mgmt.netapp.NetAppManagementClient)
+ if self.is_live:
+ from azure.mgmt.network import NetworkManagementClient
+ self.network_client = self.create_mgmt_client(NetworkManagementClient)
# Before tests are run live a resource group needs to be created along with vnet and subnet
# Note that when tests are run in live mode it is best to run one test at a time.
@recorded_by_proxy
def test_create_delete_list_volume(self):
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ VNETNAME = self.get_resource_name(VNET+"-")
+ print("Starting test_create_delete_list_volume...")
+ if self.is_live:
+ SUBNET = create_virtual_network(self.network_client, TEST_RG, LOCATION, VNETNAME, 'default')
set_bodiless_matcher()
volume = create_volume(
self.client,
TEST_RG,
- TEST_ACC_1,
+ ACCOUNT1,
TEST_POOL_1,
TEST_VOL_1,
+ vnet=VNETNAME,
live=self.is_live
)
- assert volume.name == TEST_ACC_1 + '/' + TEST_POOL_1 + '/' + TEST_VOL_1
+ assert volume.name == ACCOUNT1 + '/' + TEST_POOL_1 + '/' + TEST_VOL_1
# check default export policy and protocol
assert volume.export_policy.rules[0].nfsv3
assert not volume.export_policy.rules[0].nfsv41
assert "0.0.0.0/0" == volume.export_policy.rules[0].allowed_clients
assert volume.protocol_types[0] == "NFSv3"
- volume_list = self.client.volumes.list(TEST_RG, TEST_ACC_1, TEST_POOL_1)
+ volume_list = self.client.volumes.list(TEST_RG, ACCOUNT1, TEST_POOL_1)
assert len(list(volume_list)) == 1
- delete_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, live=self.is_live)
- volume_list = self.client.volumes.list(TEST_RG, TEST_ACC_1, TEST_POOL_1)
+ delete_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, TEST_VOL_1, live=self.is_live)
+ volume_list = self.client.volumes.list(TEST_RG, ACCOUNT1, TEST_POOL_1)
assert len(list(volume_list)) == 0
- wait_for_no_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, live=self.is_live)
- delete_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, live=self.is_live)
- delete_account(self.client, TEST_RG, TEST_ACC_1, live=self.is_live)
+ wait_for_no_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, TEST_VOL_1, live=self.is_live)
+ 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)
@recorded_by_proxy
def test_list_volumes(self):
+ print("Starting test_create_delete_list_volume...")
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ volumeName1 = self.get_resource_name(TEST_VOL_1+"-")
+ volumeName2 = self.get_resource_name(TEST_VOL_2+"-")
+ VNETNAME = self.get_resource_name(VNET+"-")
+ if self.is_live:
+ SUBNET = create_virtual_network(self.network_client, TEST_RG, LOCATION, VNETNAME, 'default')
set_bodiless_matcher()
- create_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, LOCATION, live=self.is_live)
- create_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_2, LOCATION, volume_only=True, live=self.is_live)
- volumes = [TEST_VOL_1, TEST_VOL_2]
+ create_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, LOCATION, vnet=VNETNAME, live=self.is_live)
+ create_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName2, LOCATION, vnet=VNETNAME, volume_only=True, live=self.is_live)
+ volumes = [volumeName1, volumeName2]
- volume_list = self.client.volumes.list(TEST_RG, TEST_ACC_1, TEST_POOL_1)
+ volume_list = self.client.volumes.list(TEST_RG, ACCOUNT1, TEST_POOL_1)
assert len(list(volume_list)) == 2
idx = 0
for volume in volume_list:
assert volume.name == volumes[idx]
idx += 1
- delete_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, live=self.is_live)
- delete_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_2, live=self.is_live)
- delete_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, live=self.is_live)
- delete_account(self.client, TEST_RG, TEST_ACC_1, live=self.is_live)
+ delete_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, live=self.is_live)
+ delete_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName2, live=self.is_live)
+ 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)
@recorded_by_proxy
def test_volume_replication(self):
set_bodiless_matcher()
+ print("Starting test_create_delete_list_volume...")
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-b2-")
+ ACCOUNT2 = self.get_resource_name(TEST_ACC_2+"-b2-")
+ volumeName1 = self.get_resource_name(TEST_VOL_1+"-b2-")
+ dbVolumeName = self.get_resource_name(TEST_VOL_2+"-b2-")
+ VNETNAME = self.get_resource_name(VNET+"-b2-")
+ dpVNET_NAME = self.get_resource_name(REMOTE_VNET+"-b2-")
+ if self.is_live:
+ SUBNET = create_virtual_network(self.network_client, TEST_RG, LOCATION, VNETNAME, 'default')
+ SUBNET2 = create_virtual_network(self.network_client, TEST_REPL_REMOTE_RG, REMOTE_LOCATION, dpVNET_NAME, 'default')
source_volume = create_volume(
self.client,
TEST_RG,
- TEST_ACC_1,
+ ACCOUNT1,
TEST_POOL_1,
- TEST_VOL_1,
- vnet=VNET,
+ volumeName1,
+ vnet=VNETNAME,
live=self.is_live)
dp_volume = create_dp_volume(
self.client,
source_volume,
TEST_REPL_REMOTE_RG,
- TEST_ACC_2,
+ ACCOUNT2,
TEST_POOL_2,
- TEST_VOL_2,
+ dbVolumeName,
+ vnet=dpVNET_NAME,
live=self.is_live)
if self.is_live:
@@ -243,43 +306,43 @@ def test_volume_replication(self):
# sync replication
body = AuthorizeRequest(remote_volume_resource_id=dp_volume.id)
- self.client.volumes.begin_authorize_replication(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, body)
- wait_for_succeeded(self.client, self.is_live)
+ self.client.volumes.begin_authorize_replication(TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, body)
+ wait_for_succeeded(self.client, TEST_RG, account_name=ACCOUNT1, pool_name=TEST_POOL_1, volume_name=volumeName1, dp_account_name=ACCOUNT2,dp_pool_name=TEST_POOL_2, dp_volume_name=dbVolumeName ,live=self.is_live)
if self.is_live:
time.sleep(30)
- wait_for_replication_status(self.client, "Mirrored", self.is_live)
+ wait_for_replication_status(self.client, "Mirrored", dp_account_name=ACCOUNT2,dp_pool_name=TEST_POOL_2, dp_volume_name=dbVolumeName, live=self.is_live)
# list replications
- replications = self.client.volumes.list_replications(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1)
+ replications = self.client.volumes.list_replications(TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1)
assert len(list(replications)) == 1
# break replication
- self.client.volumes.begin_break_replication(TEST_REPL_REMOTE_RG, TEST_ACC_2, TEST_POOL_2, TEST_VOL_2)
- wait_for_replication_status(self.client, "Broken", self.is_live)
+ self.client.volumes.begin_break_replication(TEST_REPL_REMOTE_RG, ACCOUNT2, TEST_POOL_2, dbVolumeName)
+ wait_for_replication_status(self.client, "Mirrored", dp_account_name=ACCOUNT2,dp_pool_name=TEST_POOL_2, dp_volume_name=dbVolumeName, live=self.is_live)
if self.is_live:
time.sleep(30)
- wait_for_succeeded(self.client, self.is_live)
+ wait_for_succeeded(self.client, TEST_RG, account_name=ACCOUNT1, pool_name=TEST_POOL_1, volume_name=volumeName1, dp_account_name=ACCOUNT2,dp_pool_name=TEST_POOL_2, dp_volume_name=dbVolumeName, live=self.is_live)
# resync
- self.client.volumes.begin_resync_replication(TEST_REPL_REMOTE_RG, TEST_ACC_2, TEST_POOL_2, TEST_VOL_2)
- wait_for_replication_status(self.client, "Mirrored", self.is_live)
+ self.client.volumes.begin_resync_replication(TEST_REPL_REMOTE_RG, ACCOUNT2, TEST_POOL_2, dbVolumeName)
+ wait_for_replication_status(self.client, "Mirrored", dp_account_name=ACCOUNT2,dp_pool_name=TEST_POOL_2, dp_volume_name=dbVolumeName, live=self.is_live)
if self.is_live:
time.sleep(30)
# break again
- self.client.volumes.begin_break_replication(TEST_REPL_REMOTE_RG, TEST_ACC_2, TEST_POOL_2, TEST_VOL_2)
- wait_for_replication_status(self.client, "Broken", self.is_live)
+ self.client.volumes.begin_break_replication(TEST_REPL_REMOTE_RG, ACCOUNT2, TEST_POOL_2, dbVolumeName)
+ wait_for_replication_status(self.client, "Mirrored", dp_account_name=ACCOUNT2,dp_pool_name=TEST_POOL_2, dp_volume_name=dbVolumeName, live=self.is_live)
if self.is_live:
time.sleep(30)
# delete the data protection object
# - initiate delete replication on destination, this then releases on source, both resulting in object deletion
- self.client.volumes.begin_delete_replication(TEST_REPL_REMOTE_RG, TEST_ACC_2, TEST_POOL_2, TEST_VOL_2)
+ self.client.volumes.begin_delete_replication(TEST_REPL_REMOTE_RG, ACCOUNT2, TEST_POOL_2, dbVolumeName)
replication_found = True # because it was previously present
while replication_found:
try:
- self.client.volumes.replication_status(TEST_REPL_REMOTE_RG, TEST_ACC_2, TEST_POOL_2, TEST_VOL_2)
+ self.client.volumes.replication_status(TEST_REPL_REMOTE_RG, ACCOUNT2, TEST_POOL_2, dbVolumeName)
except:
# an exception means the replication was not found
# i.e. it has been deleted
@@ -294,8 +357,8 @@ def test_volume_replication(self):
# and ensure the replication objects are removed
# python isn't good at do-while loops but loop until we get volumes in succeeded state
while True:
- source_volume = self.client.volumes.get(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1)
- dp_volume = self.client.volumes.get(TEST_REPL_REMOTE_RG, TEST_ACC_2, TEST_POOL_2, TEST_VOL_2)
+ source_volume = self.client.volumes.get(TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1)
+ dp_volume = self.client.volumes.get(TEST_REPL_REMOTE_RG, ACCOUNT2, TEST_POOL_2, dbVolumeName)
if (source_volume.provisioning_state == "Succeeded") and (dp_volume.provisioning_state == "Succeeded") and \
(source_volume.data_protection.replication is None) and \
(dp_volume.data_protection.replication is None):
@@ -306,90 +369,128 @@ def test_volume_replication(self):
# now proceed with the delete of the volumes and tidy up resources
# delete destination volume
- delete_volume(self.client, TEST_REPL_REMOTE_RG, TEST_ACC_2, TEST_POOL_2, TEST_VOL_2, live=self.is_live)
- delete_pool(self.client, TEST_REPL_REMOTE_RG, TEST_ACC_2, TEST_POOL_2, live=self.is_live)
- delete_account(self.client, TEST_REPL_REMOTE_RG, TEST_ACC_2, live=self.is_live)
+ delete_volume(self.client, TEST_REPL_REMOTE_RG, ACCOUNT2, TEST_POOL_2, dbVolumeName, live=self.is_live)
+ delete_pool(self.client, TEST_REPL_REMOTE_RG, ACCOUNT2, TEST_POOL_2, live=self.is_live)
+ delete_account(self.client, TEST_REPL_REMOTE_RG, ACCOUNT2, live=self.is_live)
# delete source volume
- delete_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, live=self.is_live)
- delete_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, live=self.is_live)
- delete_account(self.client, TEST_RG, TEST_ACC_1, live=self.is_live)
+ delete_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, live=self.is_live)
+ 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)
@recorded_by_proxy
def test_get_volume_by_name(self):
set_bodiless_matcher()
- create_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, LOCATION, live=self.is_live)
+ print("Starting test_get_volume_by_name...")
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ volumeName1 = self.get_resource_name(TEST_VOL_1+"-")
+ VNETNAME = self.get_resource_name(VNET+"-")
+ #create remote pool
+ if self.is_live:
+ SUBNET = create_virtual_network(self.network_client, TEST_RG, LOCATION, VNETNAME, 'default')
- volume = self.client.volumes.get(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1)
- assert volume.name == TEST_ACC_1 + '/' + TEST_POOL_1 + '/' + TEST_VOL_1
+ create_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, LOCATION, vnet=VNETNAME, live=self.is_live)
- delete_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, live=self.is_live)
- delete_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, live=self.is_live)
- delete_account(self.client, TEST_RG, TEST_ACC_1, live=self.is_live)
+ volume = self.client.volumes.get(TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1)
+ assert volume.name == ACCOUNT1 + '/' + TEST_POOL_1 + '/' + volumeName1
+
+ delete_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, live=self.is_live)
+ 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)
@recorded_by_proxy
def test_update_volume(self):
set_bodiless_matcher()
- volume = create_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, live=self.is_live)
+ print("Starting test_update_volume...")
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ volumeName1 = self.get_resource_name(TEST_VOL_1+"-")
+ VNETNAME = self.get_resource_name(VNET+"-")
+ #create vnet
+ if self.is_live:
+ SUBNET = create_virtual_network(self.network_client, TEST_RG, LOCATION, VNETNAME, 'default')
+ volume = create_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, LOCATION, vnet=VNETNAME, live=self.is_live)
assert "Premium" == volume.service_level
assert 100 * GIGABYTE == volume.usage_threshold
volume_body = Volume(
usage_threshold=200 * GIGABYTE,
- creation_token=TEST_VOL_1,
+ creation_token=volumeName1,
service_level="Premium", # cannot differ from pool
location=LOCATION,
subnet_id="/subscriptions/" + SUBSID + "/resourceGroups/" + TEST_RG +
- "/providers/Microsoft.Network/virtualNetworks/" + VNET + "/subnets/default"
+ "/providers/Microsoft.Network/virtualNetworks/" + VNETNAME + "/subnets/default"
)
volume = self.client.volumes.begin_create_or_update(
TEST_RG,
- TEST_ACC_1,
+ ACCOUNT1,
TEST_POOL_1,
- TEST_VOL_1,
+ volumeName1,
volume_body
).result()
assert "Premium" == volume.service_level # unchanged
assert 200 * GIGABYTE == volume.usage_threshold
- delete_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, live=self.is_live)
- delete_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, live=self.is_live)
- delete_account(self.client, TEST_RG, TEST_ACC_1, live=self.is_live)
+ delete_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, live=self.is_live)
+ delete_pool(self.client, TEST_RG, volumeName1, TEST_POOL_1, live=self.is_live)
+ delete_account(self.client, TEST_RG, volumeName1, live=self.is_live)
+ if self.is_live:
+ self.network_client.virtual_networks.begin_delete(TEST_RG, VNETNAME)
@recorded_by_proxy
def test_patch_volume(self):
set_bodiless_matcher()
- volume = create_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, live=self.is_live)
+ print("Starting test_patch_volume...")
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ volumeName1 = self.get_resource_name(TEST_VOL_1+"-")
+ VNETNAME = self.get_resource_name(VNET+"-")
+ if self.is_live:
+ SUBNET = create_virtual_network(self.network_client, TEST_RG, LOCATION, VNETNAME, 'default')
+ volume = create_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, LOCATION, vnet=VNETNAME, live=self.is_live)
assert "Premium" == volume.service_level
assert 100 * GIGABYTE == volume.usage_threshold
volume_patch = VolumePatch(usage_threshold=200 * GIGABYTE)
- volume = self.client.volumes.begin_update(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, volume_patch).result()
+ volume = self.client.volumes.begin_update(TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, volume_patch).result()
assert "Premium" == volume.service_level
assert 200 * GIGABYTE == volume.usage_threshold
- delete_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, live=self.is_live)
- delete_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, live=self.is_live)
- delete_account(self.client, TEST_RG, TEST_ACC_1, live=self.is_live)
+ delete_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, live=self.is_live)
+ 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)
@recorded_by_proxy
def test_pool_change(self):
set_bodiless_matcher()
- create_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, live=self.is_live)
- pool2 = create_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_2, LOCATION, True)
+ print("Starting test_pool_change...")
+ ACCOUNT1 = self.get_resource_name(TEST_ACC_1+"-")
+ volumeName1 = self.get_resource_name(TEST_VOL_1+"-")
+ VNETNAME = self.get_resource_name(VNET+"-")
+ if self.is_live:
+ SUBNET = create_virtual_network(self.network_client, TEST_RG, LOCATION, VNETNAME, 'default')
+ volume = create_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, LOCATION, vnet=VNETNAME, live=self.is_live)
+ pool2 = create_pool(self.client, TEST_RG, ACCOUNT1, TEST_POOL_2, LOCATION, True)
if self.is_live:
time.sleep(10)
body = PoolChangeRequest(new_pool_resource_id=pool2.id)
- self.client.volumes.begin_pool_change(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, body).wait()
- volume = self.client.volumes.get(TEST_RG, TEST_ACC_1, TEST_POOL_2, TEST_VOL_1)
- assert volume.name == TEST_ACC_1 + "/" + TEST_POOL_2 + "/" + TEST_VOL_1
+ self.client.volumes.begin_pool_change(TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, body).wait()
+ volume = self.client.volumes.get(TEST_RG, ACCOUNT1, TEST_POOL_2, volumeName1)
+ assert volume.name == ACCOUNT1 + "/" + TEST_POOL_2 + "/" + volumeName1
- volume_list = self.client.volumes.list(TEST_RG, TEST_ACC_1, TEST_POOL_1)
+ volume_list = self.client.volumes.list(TEST_RG, ACCOUNT1, TEST_POOL_1)
assert len(list(volume_list)) == 0
- delete_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_2, TEST_VOL_1, live=self.is_live)
- delete_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, live=self.is_live)
- delete_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_2, live=self.is_live)
- delete_account(self.client, TEST_RG, TEST_ACC_1, live=self.is_live)
+ delete_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_2, volumeName1, live=self.is_live)
+ delete_pool(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, live=self.is_live)
+ delete_pool(self.client, TEST_RG, ACCOUNT1, TEST_POOL_2, 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)
\ No newline at end of file
diff --git a/shared_requirements.txt b/shared_requirements.txt
index 988621495c79..5fc3d898b1aa 100644
--- a/shared_requirements.txt
+++ b/shared_requirements.txt
@@ -384,7 +384,7 @@ opentelemetry-sdk<2.0.0,>=1.5.0,!=1.10a0
#override azure-mgmt-communication azure-mgmt-core>=1.3.0,<2.0.0
#override azure-mgmt-nginx msrest>=0.6.21
#override azure-mgmt-nginx azure-mgmt-core>=1.3.0,<2.0.0
-#override azure-mgmt-netapp azure-mgmt-core>=1.3.0,<2.0.0
+#override azure-mgmt-netapp azure-mgmt-core>=1.3.1,<2.0.0
#override azure-mgmt-consumption azure-mgmt-core>=1.3.1,<2.0.0
#override azure-confidentialledger azure-core<2.0.0,>=1.24.0
#override azure-confidentialledger isodate<1.0.0,>=0.6.1